From: William King Date: Wed, 15 Apr 2015 18:07:15 +0000 (-0700) Subject: FS-7435 change pgsql support to default on, with an option to disable X-Git-Tag: v1.4.19~6^2~46^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=702f0472655f834ac939abd2cf877fbf98f5aada;p=thirdparty%2Ffreeswitch.git FS-7435 change pgsql support to default on, with an option to disable --- diff --git a/configure.ac b/configure.ac index ad5d20cca8..91aee243fe 100644 --- a/configure.ac +++ b/configure.ac @@ -598,7 +598,7 @@ SWITCH_AM_LDFLAGS="$LIBUUID_LIBS $SWITCH_AM_LDFLAGS" SWITCH_AM_CFLAGS="$LIBUUID_CFLAGS $SWITCH_AM_CFLAGS" AC_ARG_ENABLE(core-pgsql-support, - [AS_HELP_STRING([--enable-core-pgsql-support], [Compile with PGSQL Support])],,[enable_core_pgsql_support="no"]) + [AS_HELP_STRING([--disable-core-pgsql-support], [Compile without PGSQL Support])],[enable_core_pgsql_support="no"],[enable_core_pgsql_support="yes"]) AC_ARG_ENABLE(core-pgsql-pkgconfig, [AS_HELP_STRING([--disable-core-pgsql-pkgconfig], [Use pg_config to get PGQSL build options])],[enable_core_pgsql_pkgconfig="$enableval"],[enable_core_pgsql_pkgconfig="yes"])