]> git.pld-linux.org Git - packages/php.git/blob - php-5.3.7-bug-54318.patch
use /usr/sbin/php-fpm as other branches
[packages/php.git] / php-5.3.7-bug-54318.patch
1 --- PHP_5_3/ext/pdo_pgsql/config.m4     2011/03/22 09:08:00     309544
2 +++ PHP_5_3/ext/pdo_pgsql/config.m4     2011/03/22 09:12:01     309545
3 @@ -69,7 +69,8 @@
4    AC_DEFINE(HAVE_PDO_PGSQL,1,[Whether to build PostgreSQL for PDO support or not])
5  
6    AC_MSG_CHECKING([for openssl dependencies])
7 -  if grep -q openssl $PGSQL_INCLUDE/libpq-fe.h ; then
8 +  grep openssl $PGSQL_INCLUDE/libpq-fe.h >/dev/null 2>&1
9 +  if test $? -eq 0 ; then
10      AC_MSG_RESULT([yes])
11      dnl First try to find pkg-config
12      AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
This page took 0.028429 seconds and 3 git commands to generate.