1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/*
* config.h.in
*/
#ifndef _config_h
#define _config_h
#define GDEBUG 1
/* define if standard C headers exist: headers are
* stdlib.h, stdarg.h, string.h, and float.h */
/* define if curses.h exists */
#undef HAVE_CURSES_H
/* define if keypad in lib[n]curses */
#undef HAVE_KEYPAD
/* define if limits.h exists */
#undef HAVE_LIMITS_H
/* define if termio.h exists */
#undef HAVE_TERMIO_H
/* define if termios.h exists */
#undef HAVE_TERMIOS_H
/* define if unistd.h exists */
#undef HAVE_UNISTD_H
/* define if values.h exists */
#undef HAVE_VALUES_H
/* define if zlib.h exists */
#undef HAVE_ZLIB_H
/* define if sys/ioctl.h exists */
#undef HAVE_SYS_IOCTL_H
/* define if sys/mtio.h exists */
#undef HAVE_SYS_MTIO_H
/* define if sys/resource.h exists */
#undef HAVE_SYS_RESOURCE_H
/* define if sys/time.h exists */
#undef HAVE_SYS_TIME_H
/* define if time.h and sys/time.h can be included together */
#undef TIME_WITH_SYS_TIME
/* define if sys/timeb.h exists */
#undef HAVE_SYS_TIMEB_H
/* define if sys/types.h exists */
#undef HAVE_SYS_TYPES_H
/* define if sys/utsname.h exists */
#undef HAVE_SYS_UTSNAME_H
/* define if g2c.h exists */
#undef HAVE_G2C_H
/* define if f2c.h exists */
#undef HAVE_F2C_H
/* define gid_t type */
#undef gid_t
/* define off_t type */
#undef off_t
/* define uid_t type */
#undef uid_t
/* Define the return type of signal handlers */
#define RETSIGTYPE int
/* define curses.h WINDOW structure component */
#define CURSES_MAXY @CURSES_MAXY@
/* define if ftime() exists */
#undef HAVE_FTIME
/* define if gethostname() exists */
#undef HAVE_GETHOSTNAME
/* define if gettimeofday() exists */
#undef HAVE_GETTIMEOFDAY
/* define if lseek() exists */
#undef HAVE_LSEEK
/* define if time() exists */
#undef HAVE_TIME
/* define if uname() exists */
#undef HAVE_UNAME
/* define if seteuid() exists */
#undef HAVE_SETEUID
/* define if setpriority() exists */
#undef HAVE_SETPRIORITY
/* define if setreuid() exists */
#undef HAVE_SETREUID
/* define if setruid() exists */
#undef HAVE_SETRUID
/* define if setpgrp() takes no argument */
#undef SETPGRP_VOID
/* define if drand48() exists */
#undef HAVE_DRAND48
/* define if postgres is to be used */
#undef HAVE_POSTGRES
/* define if OGR is to be used */
#undef HAVE_OGR
/* define if postgres client header exists */
#undef HAVE_LIBPQ_FE_H
/* define if PQcmdTuples in lpq */
#undef HAVE_PQCMDTUPLES
/* define if ODBC exists */
#undef HAVE_SQL_H
/* define if PNG support exists */
#undef HAVE_PNG
/* define if jpeglib.h exists */
#undef HAVE_JPEGLIB_H
/* define if fftw.h exists */
#undef HAVE_FFTW_H
/* define if dfftw.h exists */
#undef HAVE_DFFTW_H
/* define if BLAS exists */
#undef HAVE_LIBBLAS
/* define if LAPACK exists */
#undef HAVE_LIBLAPACK
/* define if dbm.h exists */
#undef HAVE_DBM_H
/* define if readline exists */
#undef HAVE_READLINE_READLINE_H
/* define if ft2build.h exists */
#undef HAVE_FT2BUILD_H
/* Whether or not we are using G_socks for display communications */
#undef USE_G_SOCKS
/* define if X is disabled or unavailable */
#undef X_DISPLAY_MISSING
/* define if libintl.h exists */
#undef HAVE_LIBINTL_H
/* define if iconv.h exists */
#undef HAVE_ICONV_H
/* define if NLS requested */
#undef USE_NLS
/* define if <GL/GLwMDrawA.h> exists */
#undef HAVE_GL_GLWMDRAWA_H
/* define if <X11/GLw/GLwMDrawA.h> exists */
#undef HAVE_X11_GLW_GLWMDRAWA_H
/* define if TclTk exists */
#undef HAVE_TCLTK
/* define if putenv() exists */
#undef HAVE_PUTENV
/* define if setenv() exists */
#undef HAVE_SETENV
/* define if glXCreatePbuffer exists */
#undef HAVE_PBUFFERS
/* define if glXCreateGLXPixmap exists */
#undef HAVE_PIXMAPS
/*
* configuration information solely dependent on the above
* nothing below this point should need changing
*/
#if defined(HAVE_VALUES_H) && !defined(HAVE_LIMITS_H)
#define INT_MIN -MAXINT
#endif
#endif /* _config_h */
|