diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:52 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:52 -0700 |
commit | 9c3a5830218c4e7fff23b8fc4386269db77a03a9 (patch) | |
tree | 913542049433ae44de55d22913f6bca921f2dc15 /zutil.c | |
parent | 6b8233bfe00e79134cb1b84fc49d4f750a797f79 (diff) | |
download | zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.tar.gz zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.tar.bz2 zlib-9c3a5830218c4e7fff23b8fc4386269db77a03a9.zip |
zlib 1.2.2.4v1.2.2.4
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* zutil.c -- target dependent utility functions for the compression library | 1 | /* zutil.c -- target dependent utility functions for the compression library |
2 | * Copyright (C) 1995-2004 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2005 Jean-loup Gailly. |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -74,38 +74,38 @@ uLong ZEXPORT zlibCompileFlags() | |||
74 | flags += 1 << 13; | 74 | flags += 1 << 13; |
75 | #endif | 75 | #endif |
76 | #ifdef NO_GZCOMPRESS | 76 | #ifdef NO_GZCOMPRESS |
77 | flags += 1 << 16; | 77 | flags += 1L << 16; |
78 | #endif | 78 | #endif |
79 | #ifdef NO_GZIP | 79 | #ifdef NO_GZIP |
80 | flags += 1 << 17; | 80 | flags += 1L << 17; |
81 | #endif | 81 | #endif |
82 | #ifdef PKZIP_BUG_WORKAROUND | 82 | #ifdef PKZIP_BUG_WORKAROUND |
83 | flags += 1 << 20; | 83 | flags += 1L << 20; |
84 | #endif | 84 | #endif |
85 | #ifdef FASTEST | 85 | #ifdef FASTEST |
86 | flags += 1 << 21; | 86 | flags += 1L << 21; |
87 | #endif | 87 | #endif |
88 | #ifdef STDC | 88 | #ifdef STDC |
89 | # ifdef NO_vsnprintf | 89 | # ifdef NO_vsnprintf |
90 | flags += 1 << 25; | 90 | flags += 1L << 25; |
91 | # ifdef HAS_vsprintf_void | 91 | # ifdef HAS_vsprintf_void |
92 | flags += 1 << 26; | 92 | flags += 1L << 26; |
93 | # endif | 93 | # endif |
94 | # else | 94 | # else |
95 | # ifdef HAS_vsnprintf_void | 95 | # ifdef HAS_vsnprintf_void |
96 | flags += 1 << 26; | 96 | flags += 1L << 26; |
97 | # endif | 97 | # endif |
98 | # endif | 98 | # endif |
99 | #else | 99 | #else |
100 | flags += 1 << 24; | 100 | flags += 1L << 24; |
101 | # ifdef NO_snprintf | 101 | # ifdef NO_snprintf |
102 | flags += 1 << 25; | 102 | flags += 1L << 25; |
103 | # ifdef HAS_sprintf_void | 103 | # ifdef HAS_sprintf_void |
104 | flags += 1 << 26; | 104 | flags += 1L << 26; |
105 | # endif | 105 | # endif |
106 | # else | 106 | # else |
107 | # ifdef HAS_snprintf_void | 107 | # ifdef HAS_snprintf_void |
108 | flags += 1 << 26; | 108 | flags += 1L << 26; |
109 | # endif | 109 | # endif |
110 | # endif | 110 | # endif |
111 | #endif | 111 | #endif |