Skip to content

Commit fb8aedb

Browse files
author
Jani Taskinen
committed
MFH
1 parent 7c6f0bd commit fb8aedb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

ext/pdo_odbc/config.m4

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ define([PDO_ODBC_HELP_TEXT],[[
1919
2020
--with-pdo-odbc=generic,dir,libname,ldflags,cflags
2121
22-
This extension will always be created as a shared extension
23-
named pdo_odbc.so]])
22+
When build as shared the extension filename is always pdo_odbc.so]])
2423

2524
PHP_ARG_WITH(pdo-odbc, for ODBC v3 support for PDO,
2625
[ --with-pdo-odbc=flavour,dir

ext/pdo_pgsql/config.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if test "$PHP_PDO_PGSQL" != "no"; then
1616

1717
AC_MSG_CHECKING(for pg_config)
1818
for i in $PHP_PDO_PGSQL $PHP_PDO_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do
19-
if test -x $i/pg_config; then
19+
if test -x $i/pg_config; then
2020
PG_CONFIG="$i/pg_config"
2121
break;
2222
fi
@@ -70,12 +70,12 @@ if test "$PHP_PDO_PGSQL" != "no"; then
7070

7171
AC_MSG_CHECKING([for openssl dependencies])
7272
if grep -q openssl $PGSQL_INCLUDE/libpq-fe.h ; then
73-
AC_MSG_RESULT([yes])
74-
if pkg-config openssl ; then
73+
AC_MSG_RESULT([yes])
74+
if pkg-config openssl ; then
7575
PDO_PGSQL_CFLAGS="`pkg-config openssl --cflags`"
7676
fi
7777
else
78-
AC_MSG_RESULT([no])
78+
AC_MSG_RESULT([no])
7979
fi
8080

8181
old_LIBS=$LIBS
@@ -108,7 +108,7 @@ if test "$PHP_PDO_PGSQL" != "no"; then
108108

109109
ifdef([PHP_CHECK_PDO_INCLUDES],
110110
[
111-
PHP_CHECK_PDO_INCLUDES
111+
PHP_CHECK_PDO_INCLUDES
112112
],[
113113
AC_MSG_CHECKING([for PDO includes])
114114
if test -f $abs_srcdir/include/php/ext/pdo/php_pdo_driver.h; then

0 commit comments

Comments
 (0)