Skip to content

Commit

Permalink
MFH: - Fixed bug #35911 (HAVE_PG_CONFIG_H set incorrectly)
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Jan 5, 2006
1 parent 3c2441d commit 60bcbd4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ext/pgsql/config.m4
Expand Up @@ -24,7 +24,9 @@ if test "$PHP_PGSQL" != "no"; then
AC_MSG_RESULT([$PG_CONFIG])
PGSQL_INCLUDE=`$PG_CONFIG --includedir`
PGSQL_LIBDIR=`$PG_CONFIG --libdir`
AC_DEFINE(HAVE_PG_CONFIG_H,1,[Whether to have pg_config.h])
if test -r "$PGSQL_INCLUDE/pg_config.h"; then
AC_DEFINE(HAVE_PG_CONFIG_H,1,[Whether to have pg_config.h])
fi
else
AC_MSG_RESULT(not found)
if test "$PHP_PGSQL" = "yes"; then
Expand Down

0 comments on commit 60bcbd4

Please sign in to comment.