/* config.h.in. Generated automatically from configure.in by autoheader. */ /* Process this file with autoheader to produce config.h.in */ #ifndef CONFIG_H #define CONFIG_H /* Package and version. */ #define PACKAGE "gifsicle" #define VERSION "97" /* Define when using the debugging malloc library. */ #undef DMALLOC /* Define to a function that returns a random number. */ #undef RANDOM /* Define to the number of arguments to gettimeofday. (gifview only) */ #undef GETTIMEOFDAY_PROTO /* Get the [u_]int*_t typedefs. */ #undef NEED_SYS_TYPES_H #ifdef NEED_SYS_TYPES_H # include #endif #undef u_int16_t #undef u_int32_t #undef int32_t /* Pathname separator character ('/' on Unix). */ #define PATHNAME_SEPARATOR '/' /* Define this to write GIFs to stdout even when stdout is a terminal. */ #undef OUTPUT_GIF_TO_TERMINAL /* Define if GIF LZW compression is off. */ #undef GIF_UNGIF /* Define to empty if the keyword does not work. */ #undef const /* Define as __inline if that's what the C compiler calls it. */ #undef inline /* Define if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING /* Define if you have the strerror function. */ #undef HAVE_STRERROR /* Define if you have the strtoul function. */ #undef HAVE_STRTOUL /* Define if you have the header file. */ #undef HAVE_SYS_SELECT_H /* Name of package */ #undef PACKAGE /* Version number of package */ #undef VERSION #ifdef __cplusplus extern "C" { #endif /* Use either the clean-failing malloc library in fmalloc.c, or the debugging malloc library in dmalloc.c. */ #ifdef DMALLOC # include "dmalloc.h" # define Gif_DeleteFunc (&debug_free) # define Gif_DeleteArrayFunc (&debug_free) #else # include # define xmalloc(s) fail_die_malloc((s),__FILE__,__LINE__) # define xrealloc(p,s) fail_die_realloc((p),(s),__FILE__,__LINE__) # define xfree free void *fail_die_malloc(size_t, const char *, int); void *fail_die_realloc(void *, size_t, const char *, int); #endif /* Prototype strerror if we don't have it. */ #ifndef HAVE_STRERROR char *strerror(int errno); #endif #ifdef __cplusplus } /* Get rid of a possible inline macro under C++. */ # undef inline #endif #endif