Search packages:      
 

Sourcecode and documentation for gifsicle version 1.44
show bar | Show file versions

win32cfg.h

00001 /* Hand-edited file based on config.h.in */
00002 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
00003 #ifndef GIFSICLE_CONFIG_H
00004 #define GIFSICLE_CONFIG_H
00005 
00006 /* Define when using the debugging malloc library. */
00007 /* #undef DMALLOC */
00008 
00009 /* Define to the number of arguments to gettimeofday (gifview only). */
00010 /* #undef GETTIMEOFDAY_PROTO */
00011 
00012 /* Define if GIF LZW compression is off. */
00013 /* #undef GIF_UNGIF */
00014 
00015 /* Define if intXX_t types are not available. */
00016 #define HAVE_FAKE_INT_TYPES 1
00017 
00018 /* Define to 1 if you have the <inttypes.h> header file. */
00019 /* #undef HAVE_INTTYPES_H */
00020 
00021 /* Define to 1 if you have the <memory.h> header file. */
00022 /* #undef HAVE_MEMORY_H */
00023 
00024 /* Define to 1 if you have the `mkstemp' function. */
00025 /* #undef HAVE_MKSTEMP */
00026 
00027 /* Define to 1 if you have the <stdint.h> header file. */
00028 /* #undef HAVE_STDINT_H */
00029 
00030 /* Define to 1 if you have the <stdlib.h> header file. */
00031 #define HAVE_STDLIB_H 1
00032 
00033 /* Define to 1 if you have the `strerror' function. */
00034 #define HAVE_STRERROR 1
00035 
00036 /* Define to 1 if you have the <strings.h> header file. */
00037 /* #undef HAVE_STRINGS_H */
00038 
00039 /* Define to 1 if you have the <string.h> header file. */
00040 #define HAVE_STRING_H 1
00041 
00042 /* Define to 1 if you have the `strtoul' function. */
00043 #define HAVE_STRTOUL 1
00044 
00045 /* Define to 1 if you have the <sys/select.h> header file. */
00046 /* #undef HAVE_SYS_SELECT_H */
00047 
00048 /* Define to 1 if you have the <sys/stat.h> header file. */
00049 /* #undef HAVE_SYS_STAT_H */
00050 
00051 /* Define to 1 if you have the <sys/types.h> header file. */
00052 /* #undef HAVE_SYS_TYPES_H */
00053 
00054 /* Define to 1 if the system has the type `uintptr_t'. */
00055 /* #undef HAVE_UINTPTR_T */
00056 
00057 /* Define to 1 if you have the <unistd.h> header file. */
00058 /* #undef HAVE_UNISTD_H */
00059 
00060 /* Define if you have u_intXX_t types but not uintXX_t types. */
00061 /* #undef HAVE_U_INT_TYPES */
00062 
00063 /* Define to write GIFs to stdout even when stdout is a terminal. */
00064 /* #undef OUTPUT_GIF_TO_TERMINAL */
00065 
00066 /* Name of package */
00067 #define PACKAGE "gifsicle"
00068 
00069 /* Define to the address where bug reports for this package should be sent. */
00070 #define PACKAGE_BUGREPORT ""
00071 
00072 /* Define to the full name of this package. */
00073 #define PACKAGE_NAME ""
00074 
00075 /* Define to the full name and version of this package. */
00076 #define PACKAGE_STRING ""
00077 
00078 /* Define to the one symbol short name of this package. */
00079 #define PACKAGE_TARNAME ""
00080 
00081 /* Define to the version of this package. */
00082 #define PACKAGE_VERSION ""
00083 
00084 /* Pathname separator character ('/' on Unix). */
00085 #define PATHNAME_SEPARATOR '\\'
00086 
00087 /* Define to a function that returns a random number. */
00088 #define RANDOM rand
00089 
00090 /* The size of a `unsigned int', as computed by sizeof. */
00091 #define SIZEOF_UNSIGNED_INT 4
00092 
00093 /* The size of a `unsigned long', as computed by sizeof. */
00094 #define SIZEOF_UNSIGNED_LONG 4
00095 
00096 /* The size of a `void *', as computed by sizeof. */
00097 #define SIZEOF_VOID_P 4
00098 
00099 /* Define to 1 if you have the ANSI C header files. */
00100 #define STDC_HEADERS 1
00101 
00102 /* Version number of package */
00103 #define VERSION "1.44 (Windows)"
00104 
00105 /* Define if the X Window System is missing or not being used.  */
00106 #define X_DISPLAY_MISSING 1
00107 
00108 /* Define to empty if `const' does not conform to ANSI C. */
00109 /* #undef const */
00110 
00111 /* Define as __inline if that's what the C compiler calls it, or to nothing if
00112    it is not supported. */
00113 #ifndef inline
00114 # define inline __inline
00115 #endif
00116 
00117 /* Windows doesn't have popen, but it does have _popen. */
00118 #define popen _popen
00119 #define pclose _pclose
00120 
00121 #ifdef __cplusplus
00122 extern "C" {
00123 #endif
00124 
00125 /* Use either the clean-failing malloc library in fmalloc.c, or the debugging
00126    malloc library in dmalloc.c. */
00127 #ifdef DMALLOC
00128 # include "dmalloc.h"
00129 # define Gif_DeleteFunc       (&debug_free)
00130 # define Gif_DeleteArrayFunc  (&debug_free)
00131 #else
00132 # include <stddef.h>
00133 # define xmalloc(s)           fail_die_malloc((s),__FILE__,__LINE__)
00134 # define xrealloc(p,s)        fail_die_realloc((p),(s),__FILE__,__LINE__)
00135 # define xfree                free
00136 void *fail_die_malloc(size_t, const char *, int);
00137 void *fail_die_realloc(void *, size_t, const char *, int);
00138 #endif
00139 
00140 /* Prototype strerror if we don't have it. */
00141 #ifndef HAVE_STRERROR
00142 char *strerror(int errno);
00143 #endif
00144 
00145 #ifdef __cplusplus
00146 }
00147 /* Get rid of a possible inline macro under C++. */
00148 # define inline inline
00149 #endif
00150 
00151 #endif /* GIFSICLE_CONFIG_H */

Generated by  Doxygen 1.5.1