Displaying 1 result from an estimated 1 matches for "build_pgsql".
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...build with PostgreSQL support: libpq-fe.h not found])
fi
])
CPPFLAGS=$old_CPPFLAGS
], [
- if test $want_pgsql = yes; then
+ if test $want_pgsql_driver = yes; then
AC_ERROR([Can't build with PostgreSQL support: libpq not found])
fi
])
@@ -2323,6 +2334,7 @@
build_pgsql=no
build_mysql=no
build_sqlite=no
+build_multi_pgsql=no
for driver in $sql_drivers; do
if test "$driver" = "pgsql"; then
AC_DEFINE(BUILD_PGSQL,, Built-in PostgreSQL support)
@@ -2333,7 +2345,10 @@
elif test "$driver" = "sqlite"; then
AC_DEF...