Displaying 3 results from an estimated 3 matches for "found_sql_drivers".
2014 Nov 08
2
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...open, [
AC_CHECK_HEADER(sqlite3.h, [
- SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz"
+ SQLITE_LIBS="$SQLITE_LIBS -lsqlite3"
AC_DEFINE(HAVE_SQLITE,, Build with SQLite3 support)
found_sql_drivers="$found_sql_drivers sqlite"
Regards, Bernd
2015 Apr 22
0
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...C_CHECK_HEADER(sqlite3.h, [
> - SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz"
> + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3"
>
> AC_DEFINE(HAVE_SQLITE,, Build with SQLite3 support)
> found_sql_drivers="$found_sql_drivers sqlite"
>
> Regards, Bernd
>
>
ping ;)
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...yes
+
+
+if test $want_pgsql_driver != no; then
AC_CHECK_PROG(PG_CONFIG, pg_config, YES, NO)
if test $PG_CONFIG = NO; then
# based on code from PHP
@@ -2014,19 +2024,20 @@
fi
PGSQL_LIBS="$PGSQL_LIBS -lpq"
AC_DEFINE(HAVE_PGSQL,, Build with PostgreSQL support)
- found_sql_drivers="$found_sql_drivers pgsql"
+ test "$want_pgsql" != no && found_sql_drivers="$found_sql_drivers pgsql"
+ test "$want_multi_pgsql" != no && found_sql_drivers="$found_sql_drivers multi_pgsql"
if test "$all_sql_drivers&...