diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-30 10:35:08 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-30 10:42:29 +0300 |
commit | 0e1cc9968522b602c345aae33c4aac4c5bccd274 (patch) | |
tree | 42ae47c8e5eee252c7514d67790aa1cb5377ba50 /configure.ac | |
parent | b399c1a38cf7217bf530af3a78e8472d97890ac8 (diff) |
Don't enable postgresql-sdbc by default
Try to make it more likely that a build without any autogen.sh options
succeeds. We didn't even get past the autogen.sh phase on openSUSE 12.3 thanks
to some krb5 stuff needed by the postgresql-sdbc checks.
To compensate, add --enable-postgresql-sdbc to those distro-configs/*.conf
files that didn't already have --disable-postgresql-sdbc.
Change-Id: I967616993875b99d9d5a9fd0721f281bb1161a87
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bc20decdb8c3..548951b71783 100644 --- a/configure.ac +++ b/configure.ac @@ -7769,7 +7769,7 @@ fi dnl =================================================================== dnl Check for PostgreSQL stuff dnl =================================================================== -if test "x$enable_postgresql_sdbc" != "xno"; then +if test "$enable_postgresql_sdbc" = yes; then SCPDEFS="$SCPDEFS -DWITH_POSTGRESQL_SDBC" if test "$with_krb5" = "yes" -a "$enable_openssl" = "no"; then |