From: Sandro Santilli Date: Wed, 5 Aug 2015 07:38:48 +0000 (+0000) Subject: Report postgresql support at the end of ./configure (#3157) X-Git-Tag: 2.2.0rc1~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0219603df6496e5ba93844fd3092248db27fb318;p=postgis Report postgresql support at the end of ./configure (#3157) git-svn-id: http://svn.osgeo.org/postgis/trunk@13884 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/configure.ac b/configure.ac index 4a236f11e..7feeb3da3 100644 --- a/configure.ac +++ b/configure.ac @@ -1340,8 +1340,12 @@ if test "x$SFCGAL" = "xsfcgal"; then AC_MSG_RESULT([ SFCGAL config: ${SFCGAL_CONFIG}]) AC_MSG_RESULT([ SFCGAL version: ${SFCGAL_VERSION}]) fi -AC_MSG_RESULT([ PostgreSQL config: ${PG_CONFIG}]) -AC_MSG_RESULT([ PostgreSQL version: ${PGSQL_FULL_VERSION}]) +if test "x$LIBLWGEOM_ONLY" = "xno"; then + AC_MSG_RESULT([ PostgreSQL config: ${PG_CONFIG}]) + AC_MSG_RESULT([ PostgreSQL version: ${PGSQL_FULL_VERSION}]) +else + AC_MSG_RESULT([ PostgreSQL support DISABLED]) +fi AC_MSG_RESULT([ PROJ4 version: ${POSTGIS_PROJ_VERSION}]) AC_MSG_RESULT([ Libxml2 config: ${XML2CONFIG}]) AC_MSG_RESULT([ Libxml2 version: ${POSTGIS_LIBXML2_VERSION}])