comparison src/zlib-1.2.7/zconf.h @ 6:35e00f62c407

Further builds
author Chris Cannam
date Wed, 20 Mar 2013 14:58:12 +0000
parents e13257ea84a4
children
comparison
equal deleted inserted replaced
5:e582a1ccd5fe 6:35e00f62c407
386 typedef Byte const *voidpc; 386 typedef Byte const *voidpc;
387 typedef Byte FAR *voidpf; 387 typedef Byte FAR *voidpf;
388 typedef Byte *voidp; 388 typedef Byte *voidp;
389 #endif 389 #endif
390 390
391 /* ./configure may #define Z_U4 here */ 391 #define Z_U4 unsigned
392 /* ./configure put the #define Z_U4 here */
392 393
393 #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) 394 #if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
394 # include <limits.h> 395 # include <limits.h>
395 # if (UINT_MAX == 0xffffffffUL) 396 # if (UINT_MAX == 0xffffffffUL)
396 # define Z_U4 unsigned 397 # define Z_U4 unsigned
409 typedef Z_U4 z_crc_t; 410 typedef Z_U4 z_crc_t;
410 #else 411 #else
411 typedef unsigned long z_crc_t; 412 typedef unsigned long z_crc_t;
412 #endif 413 #endif
413 414
414 #ifdef HAVE_UNISTD_H /* may be set to #if 1 by ./configure */ 415 #if 1 /* was set to #if 1 by ./configure */
415 # define Z_HAVE_UNISTD_H 416 # define Z_HAVE_UNISTD_H
416 #endif 417 #endif
417 418
418 #ifdef HAVE_STDARG_H /* may be set to #if 1 by ./configure */ 419 #if 1 /* was set to #if 1 by ./configure */
419 # define Z_HAVE_STDARG_H 420 # define Z_HAVE_STDARG_H
420 #endif 421 #endif
421 422
422 #ifdef STDC 423 #ifdef STDC
423 # ifndef Z_SOLO 424 # ifndef Z_SOLO