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
|
#ifndef POSTGIS_CONFIG_H
#define POSTGIS_CONFIG_H 1
#include "postgis_revision.h"
/* Manually manipulate the POSTGIS_DEBUG_LEVEL, it is not affected by the
configure process */
#define POSTGIS_DEBUG_LEVEL 0
/* Define to 1 if translation of program messages to the user's native
language is requested. */
#undef ENABLE_NLS
/* Define for some functions we are interested in */
#undef HAVE_FSEEKO
/* Define if the GNU gettext() function is already present or preinstalled. */
#undef HAVE_GETTEXT
/* Define if the build is big endian */
#undef WORDS_BIGENDIAN
/* Define if you have the iconv() function and it works. */
#undef HAVE_ICONV
/* Define to 1 if you have the `iconvctl' function. */
#undef HAVE_ICONVCTL
/* ieeefp.h header */
#undef HAVE_IEEEFP_H
/* Define to 1 if you have the `geos_c' library (-lgeos_c). */
#undef HAVE_LIBGEOS_C
/* Define to 1 if you have the `libiconvctl' function. */
#undef HAVE_LIBICONVCTL
/* Define to 1 if libprotobuf-c is present */
#undef HAVE_LIBPROTOBUF
/* Numeric version number for libprotobuf */
#undef LIBPROTOBUF_VERSION
/* Define to 1 if libjson is present */
#undef HAVE_LIBJSON
/* Define to 1 if you have the `pq' library (-lpq). */
#undef HAVE_LIBPQ
/* Define to 1 if you have the `proj' library (-lproj). */
#undef HAVE_LIBPROJ
/* Define to 1 if you have the `xml2' library (-lxml2). */
#undef HAVE_LIBXML2
/* Define to 1 if you have the <libxml/parser.h> header file. */
#undef HAVE_LIBXML_PARSER_H
/* Define to 1 if you have the <libxml/tree.h> header file. */
#undef HAVE_LIBXML_TREE_H
/* Define to 1 if you have the <libxml/xpathInternals.h> header file. */
#undef HAVE_LIBXML_XPATHINTERNALS_H
/* Define to 1 if you have the <libxml/xpath.h> header file. */
#undef HAVE_LIBXML_XPATH_H
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if sfcgal is being built */
#undef HAVE_SFCGAL
/* Define to the sub-directory in which libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Location of PostgreSQL locale directory */
#undef PGSQL_LOCALEDIR
/* PostGIS build date */
#undef POSTGIS_BUILD_DATE
/* SFCGAL library version at build time */
#undef POSTGIS_SFCGAL_VERSION
/* GDAL library version */
#undef POSTGIS_GDAL_VERSION
/* GEOS library version */
#undef POSTGIS_GEOS_VERSION
/* PostGIS libxml2 version */
#undef POSTGIS_LIBXML2_VERSION
/* PostGIS library version */
#undef POSTGIS_LIB_VERSION
/* PostGIS major version */
#undef POSTGIS_MAJOR_VERSION
/* PostGIS minor version */
#undef POSTGIS_MINOR_VERSION
/* PostGIS micro version */
#undef POSTGIS_MICRO_VERSION
/* PostgreSQL server version */
#undef POSTGIS_PGSQL_VERSION
/* PROJ library version */
#undef POSTGIS_PROJ_VERSION
/* Define to 1 if a warning is outputted every time a double is truncated */
#undef POSTGIS_RASTER_WARN_ON_TRUNCATION
/* PostGIS scripts version */
#undef POSTGIS_SCRIPTS_VERSION
/* PostGIS version */
#undef POSTGIS_VERSION
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
#undef YYTEXT_POINTER
#endif /* POSTGIS_CONFIG_H */
|