1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#ifndef _LWPGIS_DEFINES
#define _LWPGIS_DEFINES
/*
* Define just the version numbers; otherwise we get some strange substitutions in postgis.sql.in
*/
#define POSTGIS_PGSQL_VERSION 912
#define POSTGIS_GEOS_VERSION 32
#define POSTGIS_PROJ_VERSION 47
#define POSTGIS_LIB_VERSION 1.5.3
#define POSTGIS_LIBXML2_VERSION 2.7.8
/*
* Define the build date and the version number
* (these substitiutions are done with extra quotes sinces CPP
* won't substitute within apostrophes)
*/
#define _POSTGIS_SQL_SELECT_POSTGIS_VERSION 'SELECT ''1.5 USE_GEOS=1 USE_PROJ=1 USE_STATS=1''::text AS version'
#define _POSTGIS_SQL_SELECT_POSTGIS_BUILD_DATE 'SELECT ''2011-06-25 16:29:49''::text AS version'
#define _POSTGIS_SQL_SELECT_POSTGIS_SCRIPTS_VERSION 'SELECT ''1.5 r7360''::text AS version'
#endif /* _LWPGIS_DEFINES */
|