jani Wed Jul 11 21:51:10 2007 UTC Modified files: /php-src/ext/pgsql config.m4 /php-src/ext/pdo_pgsql config.m4 Log: - Removed unused empty macro and nuked illegal use of $withval http://cvs.php.net/viewvc.cgi/php-src/ext/pgsql/config.m4?r1=1.51&r2=1.52&diff_format=u Index: php-src/ext/pgsql/config.m4 diff -u php-src/ext/pgsql/config.m4:1.51 php-src/ext/pgsql/config.m4:1.52 --- php-src/ext/pgsql/config.m4:1.51 Mon Feb 19 19:46:36 2007 +++ php-src/ext/pgsql/config.m4 Wed Jul 11 21:51:10 2007 @@ -1,10 +1,7 @@ dnl -dnl $Id: config.m4,v 1.51 2007/02/19 19:46:36 tony2001 Exp $ +dnl $Id: config.m4,v 1.52 2007/07/11 21:51:10 jani Exp $ dnl -AC_DEFUN([PHP_PGSQL_CHECK_FUNCTIONS],[ -]) - PHP_ARG_WITH(pgsql,for PostgreSQL support, [ --with-pgsql[=DIR] Include PostgreSQL support. DIR is the PostgreSQL base install directory or the path to pg_config]) @@ -63,7 +60,7 @@ fi if test -z "$PGSQL_INCLUDE" -a -z "$PGSQL_LIBDIR" ; then - AC_MSG_ERROR([Unable to find libpq anywhere under $withval]) + AC_MSG_ERROR([Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS]) fi AC_DEFINE(HAVE_PGSQL,1,[Whether to build PostgreSQL support or not]) http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_pgsql/config.m4?r1=1.17&r2=1.18&diff_format=u Index: php-src/ext/pdo_pgsql/config.m4 diff -u php-src/ext/pdo_pgsql/config.m4:1.17 php-src/ext/pdo_pgsql/config.m4:1.18 --- php-src/ext/pdo_pgsql/config.m4:1.17 Mon Jul 9 12:53:52 2007 +++ php-src/ext/pdo_pgsql/config.m4 Wed Jul 11 21:51:10 2007 @@ -1,12 +1,9 @@ dnl -dnl $Id: config.m4,v 1.17 2007/07/09 12:53:52 jani Exp $ +dnl $Id: config.m4,v 1.18 2007/07/11 21:51:10 jani Exp $ dnl if test "$PHP_PDO" != "no"; then -AC_DEFUN([PHP_PGSQL_CHECK_FUNCTIONS],[ -]) - PHP_ARG_WITH(pdo-pgsql,for PostgreSQL support for PDO, [ --with-pdo-pgsql[=DIR] PDO: PostgreSQL support. DIR is the PostgreSQL base install directory or the path to pg_config]) @@ -63,7 +60,7 @@ fi if test -z "$PGSQL_INCLUDE" -a -z "$PGSQL_LIBDIR" ; then - AC_MSG_ERROR([Unable to find libpq anywhere under $withval]) + AC_MSG_ERROR([Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS]) fi AC_DEFINE(HAVE_PDO_PGSQL,1,[Whether to build PostgreSQL for PDO support or not])
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php