* tar xzf utvpn-src-unix-v101-7101-public-2010.06.27.tar.gz
[lab.git] / utvpn / utvpn-unix-v101-7101-public / src / Mayaqua / zlib / zconf.h
diff --git a/utvpn/utvpn-unix-v101-7101-public/src/Mayaqua/zlib/zconf.h b/utvpn/utvpn-unix-v101-7101-public/src/Mayaqua/zlib/zconf.h
new file mode 100644 (file)
index 0000000..e3b0c96
--- /dev/null
@@ -0,0 +1,332 @@
+/* zconf.h -- configuration of the zlib compression library\r
+ * Copyright (C) 1995-2005 Jean-loup Gailly.\r
+ * For conditions of distribution and use, see copyright notice in zlib.h\r
+ */\r
+\r
+/* @(#) $Id$ */\r
+\r
+#ifndef ZCONF_H\r
+#define ZCONF_H\r
+\r
+/*\r
+ * If you *really* need a unique prefix for all types and library functions,\r
+ * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.\r
+ */\r
+#ifdef Z_PREFIX\r
+#  define deflateInit_          z_deflateInit_\r
+#  define deflate               z_deflate\r
+#  define deflateEnd            z_deflateEnd\r
+#  define inflateInit_          z_inflateInit_\r
+#  define inflate               z_inflate\r
+#  define inflateEnd            z_inflateEnd\r
+#  define deflateInit2_         z_deflateInit2_\r
+#  define deflateSetDictionary  z_deflateSetDictionary\r
+#  define deflateCopy           z_deflateCopy\r
+#  define deflateReset          z_deflateReset\r
+#  define deflateParams         z_deflateParams\r
+#  define deflateBound          z_deflateBound\r
+#  define deflatePrime          z_deflatePrime\r
+#  define inflateInit2_         z_inflateInit2_\r
+#  define inflateSetDictionary  z_inflateSetDictionary\r
+#  define inflateSync           z_inflateSync\r
+#  define inflateSyncPoint      z_inflateSyncPoint\r
+#  define inflateCopy           z_inflateCopy\r
+#  define inflateReset          z_inflateReset\r
+#  define inflateBack           z_inflateBack\r
+#  define inflateBackEnd        z_inflateBackEnd\r
+#  define compress              z_compress\r
+#  define compress2             z_compress2\r
+#  define compressBound         z_compressBound\r
+#  define uncompress            z_uncompress\r
+#  define adler32               z_adler32\r
+#  define crc32                 z_crc32\r
+#  define get_crc_table         z_get_crc_table\r
+#  define zError                z_zError\r
+\r
+#  define alloc_func            z_alloc_func\r
+#  define free_func             z_free_func\r
+#  define in_func               z_in_func\r
+#  define out_func              z_out_func\r
+#  define Byte                  z_Byte\r
+#  define uInt                  z_uInt\r
+#  define uLong                 z_uLong\r
+#  define Bytef                 z_Bytef\r
+#  define charf                 z_charf\r
+#  define intf                  z_intf\r
+#  define uIntf                 z_uIntf\r
+#  define uLongf                z_uLongf\r
+#  define voidpf                z_voidpf\r
+#  define voidp                 z_voidp\r
+#endif\r
+\r
+#if defined(__MSDOS__) && !defined(MSDOS)\r
+#  define MSDOS\r
+#endif\r
+#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)\r
+#  define OS2\r
+#endif\r
+#if defined(_WINDOWS) && !defined(WINDOWS)\r
+#  define WINDOWS\r
+#endif\r
+#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)\r
+#  ifndef WIN32\r
+#    define WIN32\r
+#  endif\r
+#endif\r
+#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)\r
+#  if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)\r
+#    ifndef SYS16BIT\r
+#      define SYS16BIT\r
+#    endif\r
+#  endif\r
+#endif\r
+\r
+/*\r
+ * Compile with -DMAXSEG_64K if the alloc function cannot allocate more\r
+ * than 64k bytes at a time (needed on systems with 16-bit int).\r
+ */\r
+#ifdef SYS16BIT\r
+#  define MAXSEG_64K\r
+#endif\r
+#ifdef MSDOS\r
+#  define UNALIGNED_OK\r
+#endif\r
+\r
+#ifdef __STDC_VERSION__\r
+#  ifndef STDC\r
+#    define STDC\r
+#  endif\r
+#  if __STDC_VERSION__ >= 199901L\r
+#    ifndef STDC99\r
+#      define STDC99\r
+#    endif\r
+#  endif\r
+#endif\r
+#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))\r
+#  define STDC\r
+#endif\r
+#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))\r
+#  define STDC\r
+#endif\r
+#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))\r
+#  define STDC\r
+#endif\r
+#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))\r
+#  define STDC\r
+#endif\r
+\r
+#if defined(__OS400__) && !defined(STDC)    /* iSeries (formerly AS/400). */\r
+#  define STDC\r
+#endif\r
+\r
+#ifndef STDC\r
+#  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */\r
+#    define const       /* note: need a more gentle solution here */\r
+#  endif\r
+#endif\r
+\r
+/* Some Mac compilers merge all .h files incorrectly: */\r
+#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)\r
+#  define NO_DUMMY_DECL\r
+#endif\r
+\r
+/* Maximum value for memLevel in deflateInit2 */\r
+#ifndef MAX_MEM_LEVEL\r
+#  ifdef MAXSEG_64K\r
+#    define MAX_MEM_LEVEL 8\r
+#  else\r
+#    define MAX_MEM_LEVEL 9\r
+#  endif\r
+#endif\r
+\r
+/* Maximum value for windowBits in deflateInit2 and inflateInit2.\r
+ * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files\r
+ * created by gzip. (Files created by minigzip can still be extracted by\r
+ * gzip.)\r
+ */\r
+#ifndef MAX_WBITS\r
+#  define MAX_WBITS   15 /* 32K LZ77 window */\r
+#endif\r
+\r
+/* The memory requirements for deflate are (in bytes):\r
+            (1 << (windowBits+2)) +  (1 << (memLevel+9))\r
+ that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)\r
+ plus a few kilobytes for small objects. For example, if you want to reduce\r
+ the default memory requirements from 256K to 128K, compile with\r
+     make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"\r
+ Of course this will generally degrade compression (there's no free lunch).\r
+\r
+   The memory requirements for inflate are (in bytes) 1 << windowBits\r
+ that is, 32K for windowBits=15 (default value) plus a few kilobytes\r
+ for small objects.\r
+*/\r
+\r
+                        /* Type declarations */\r
+\r
+#ifndef OF /* function prototypes */\r
+#  ifdef STDC\r
+#    define OF(args)  args\r
+#  else\r
+#    define OF(args)  ()\r
+#  endif\r
+#endif\r
+\r
+/* The following definitions for FAR are needed only for MSDOS mixed\r
+ * model programming (small or medium model with some far allocations).\r
+ * This was tested only with MSC; for other MSDOS compilers you may have\r
+ * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,\r
+ * just define FAR to be empty.\r
+ */\r
+#ifdef SYS16BIT\r
+#  if defined(M_I86SM) || defined(M_I86MM)\r
+     /* MSC small or medium model */\r
+#    define SMALL_MEDIUM\r
+#    ifdef _MSC_VER\r
+#      define FAR _far\r
+#    else\r
+#      define FAR far\r
+#    endif\r
+#  endif\r
+#  if (defined(__SMALL__) || defined(__MEDIUM__))\r
+     /* Turbo C small or medium model */\r
+#    define SMALL_MEDIUM\r
+#    ifdef __BORLANDC__\r
+#      define FAR _far\r
+#    else\r
+#      define FAR far\r
+#    endif\r
+#  endif\r
+#endif\r
+\r
+#if defined(WINDOWS) || defined(WIN32)\r
+   /* If building or using zlib as a DLL, define ZLIB_DLL.\r
+    * This is not mandatory, but it offers a little performance increase.\r
+    */\r
+#  ifdef ZLIB_DLL\r
+#    if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))\r
+#      ifdef ZLIB_INTERNAL\r
+#        define ZEXTERN extern __declspec(dllexport)\r
+#      else\r
+#        define ZEXTERN extern __declspec(dllimport)\r
+#      endif\r
+#    endif\r
+#  endif  /* ZLIB_DLL */\r
+   /* If building or using zlib with the WINAPI/WINAPIV calling convention,\r
+    * define ZLIB_WINAPI.\r
+    * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.\r
+    */\r
+#  ifdef ZLIB_WINAPI\r
+#    ifdef FAR\r
+#      undef FAR\r
+#    endif\r
+#    include <windows.h>\r
+     /* No need for _export, use ZLIB.DEF instead. */\r
+     /* For complete Windows compatibility, use WINAPI, not __stdcall. */\r
+#    define ZEXPORT WINAPI\r
+#    ifdef WIN32\r
+#      define ZEXPORTVA WINAPIV\r
+#    else\r
+#      define ZEXPORTVA FAR CDECL\r
+#    endif\r
+#  endif\r
+#endif\r
+\r
+#if defined (__BEOS__)\r
+#  ifdef ZLIB_DLL\r
+#    ifdef ZLIB_INTERNAL\r
+#      define ZEXPORT   __declspec(dllexport)\r
+#      define ZEXPORTVA __declspec(dllexport)\r
+#    else\r
+#      define ZEXPORT   __declspec(dllimport)\r
+#      define ZEXPORTVA __declspec(dllimport)\r
+#    endif\r
+#  endif\r
+#endif\r
+\r
+#ifndef ZEXTERN\r
+#  define ZEXTERN extern\r
+#endif\r
+#ifndef ZEXPORT\r
+#  define ZEXPORT\r
+#endif\r
+#ifndef ZEXPORTVA\r
+#  define ZEXPORTVA\r
+#endif\r
+\r
+#ifndef FAR\r
+#  define FAR\r
+#endif\r
+\r
+#if !defined(__MACTYPES__)\r
+typedef unsigned char  Byte;  /* 8 bits */\r
+#endif\r
+typedef unsigned int   uInt;  /* 16 bits or more */\r
+typedef unsigned long  uLong; /* 32 bits or more */\r
+\r
+#ifdef SMALL_MEDIUM\r
+   /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */\r
+#  define Bytef Byte FAR\r
+#else\r
+   typedef Byte  FAR Bytef;\r
+#endif\r
+typedef char  FAR charf;\r
+typedef int   FAR intf;\r
+typedef uInt  FAR uIntf;\r
+typedef uLong FAR uLongf;\r
+\r
+#ifdef STDC\r
+   typedef void const *voidpc;\r
+   typedef void FAR   *voidpf;\r
+   typedef void       *voidp;\r
+#else\r
+   typedef Byte const *voidpc;\r
+   typedef Byte FAR   *voidpf;\r
+   typedef Byte       *voidp;\r
+#endif\r
+\r
+#if 0           /* HAVE_UNISTD_H -- this line is updated by ./configure */\r
+#  include <sys/types.h> /* for off_t */\r
+#  include <unistd.h>    /* for SEEK_* and off_t */\r
+#  ifdef VMS\r
+#    include <unixio.h>   /* for off_t */\r
+#  endif\r
+#  define z_off_t off_t\r
+#endif\r
+#ifndef SEEK_SET\r
+#  define SEEK_SET        0       /* Seek from beginning of file.  */\r
+#  define SEEK_CUR        1       /* Seek from current position.  */\r
+#  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */\r
+#endif\r
+#ifndef z_off_t\r
+#  define z_off_t long\r
+#endif\r
+\r
+#if defined(__OS400__)\r
+#  define NO_vsnprintf\r
+#endif\r
+\r
+#if defined(__MVS__)\r
+#  define NO_vsnprintf\r
+#  ifdef FAR\r
+#    undef FAR\r
+#  endif\r
+#endif\r
+\r
+/* MVS linker does not support external names larger than 8 bytes */\r
+#if defined(__MVS__)\r
+#   pragma map(deflateInit_,"DEIN")\r
+#   pragma map(deflateInit2_,"DEIN2")\r
+#   pragma map(deflateEnd,"DEEND")\r
+#   pragma map(deflateBound,"DEBND")\r
+#   pragma map(inflateInit_,"ININ")\r
+#   pragma map(inflateInit2_,"ININ2")\r
+#   pragma map(inflateEnd,"INEND")\r
+#   pragma map(inflateSync,"INSY")\r
+#   pragma map(inflateSetDictionary,"INSEDI")\r
+#   pragma map(compressBound,"CMBND")\r
+#   pragma map(inflate_table,"INTABL")\r
+#   pragma map(inflate_fast,"INFA")\r
+#   pragma map(inflate_copyright,"INCOPY")\r
+#endif\r
+\r
+#endif /* ZCONF_H */\r