Patch by Ben Walton <bwalton at artsci dot utoronto dot ca>.
. Fixed bug #54167 (PDO_DBLIB returns null on SQLUNIQUE field).
(mjh at hodginsmedia dot com, Felipe)
+- PDO PostgreSQL driver:
+ . Fixed bug #54318 (Non-portable grep option used in PDO pgsql
+ configuration). (bwalton at artsci dot utoronto dot ca)
+
- SOAP extension:
. Fixed bug #54312 (soap_version logic bug). (tom at samplonius dot org)
AC_DEFINE(HAVE_PDO_PGSQL,1,[Whether to build PostgreSQL for PDO support or not])
AC_MSG_CHECKING([for openssl dependencies])
- if grep -q openssl $PGSQL_INCLUDE/libpq-fe.h ; then
+ grep openssl $PGSQL_INCLUDE/libpq-fe.h >/dev/null 2>&1
+ if test $? -eq 0 ; then
AC_MSG_RESULT([yes])
dnl First try to find pkg-config
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)