From 58b49d96ad2be04253c3aa7b76144322bb5439ce Mon Sep 17 00:00:00 2001 From: Fridrich Štrba Date: Mon, 12 Dec 2011 04:51:49 +0100 Subject: Some more postgresql fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. The --enable-extension-integration affects only packaging 2. OUTDIR_FOR_BUILD is for native build in case of crosscompiling Signed-off-by: Fridrich Štrba --- configure.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 44bb5e9a1b66..39c533d66c27 100644 --- a/configure.in +++ b/configure.in @@ -5389,8 +5389,10 @@ dnl =================================================================== dnl Check for PostgreSQL stuff dnl =================================================================== -if test "x$enable_ext_postgresql_sdbc" = "xyes" -a "x$enable_extension_integration" != "xno"; then - SCPDEFS="$SCPDEFS -DWITH_EXTENSION_POSTGRESQL" +if test "x$enable_ext_postgresql_sdbc" = "xyes"; then + if test "x$enable_extension_integration" = "xyes"; then + SCPDEFS="$SCPDEFS -DWITH_EXTENSION_POSTGRESQL" + fi AC_MSG_CHECKING([PostgreSQL C interface]) if test "$with_system_postgresql" = "yes"; then -- cgit