From: Sascha Schumann Date: Sat, 4 Dec 1999 18:30:53 +0000 (+0000) Subject: Remove custom LDFLAGS/LIBS changes X-Git-Tag: PRE_RETURN_REF_PATCH~73 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4993f93c7c02037a67651a69abf73f47f21fd8dc;p=php Remove custom LDFLAGS/LIBS changes --- diff --git a/ext/pgsql/config.m4 b/ext/pgsql/config.m4 index d78136bc5c..2cc65420c6 100644 --- a/ext/pgsql/config.m4 +++ b/ext/pgsql/config.m4 @@ -35,10 +35,8 @@ AC_ARG_WITH(pgsql, PGSQL_LFLAGS=-L$PGSQL_LIBDIR PGSQL_LIBS=-lpq - old_CFLAGS=$CFLAGS; old_LDFLAGS=$LDFLAGS; old_LIBS=$LIBS + old_CFLAGS=$CFLAGS CFLAGS="$CFLAGS $PGSQL_INCLUDE" - LDFLAGS="$LDFLAGS $PGSQL_LFLAGS" - LIBS="$LIBS $PGSQL_LIBS" AC_DEFINE(HAVE_PGSQL) if test "$shared" = "yes"; then AC_MSG_RESULT(yes (shared)) @@ -50,7 +48,7 @@ AC_ARG_WITH(pgsql, PGSQL_STATIC="libphpext_pgsql.la" fi AC_CHECK_FUNC(PQcmdTuples,AC_DEFINE(HAVE_PQCMDTUPLES)) - CFLAGS=$old_CFLAGS; LDFLAGS=$old_LDFLAGS; LIBS=$old_LIBS + CFLAGS=$old_CFLAGS PHP_EXTENSION(pgsql,$shared) else AC_MSG_RESULT(no)