diff options
author | foobar <sniper@php.net> | 2002-06-26 21:44:58 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-06-26 21:44:58 +0000 |
commit | 34de1f6578b946cb17ea0325bead4609c7d84c2a (patch) | |
tree | 1e9de709849a469ebb7bc83ae6eefec57f286cf1 /ext/odbc/config.m4 | |
parent | d96924ffc5828b544e6d2ead3e492700618659b8 (diff) | |
download | php-git-34de1f6578b946cb17ea0325bead4609c7d84c2a.tar.gz |
Better not pollute the EXTRA_LIBS with libpaths.
Diffstat (limited to 'ext/odbc/config.m4')
-rw-r--r-- | ext/odbc/config.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4 index b935f36797..32ef482af1 100644 --- a/ext/odbc/config.m4 +++ b/ext/odbc/config.m4 @@ -537,7 +537,8 @@ fi if test -n "$ODBC_TYPE"; then if test "$ODBC_TYPE" != "dbmaker"; then if test "$shared" != "yes"; then - EXTRA_LIBS="$EXTRA_LIBS $ODBC_LFLAGS $ODBC_LIBS" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ODBC_LFLAGS" + EXTRA_LIBS="$EXTRA_LIBS $ODBC_LIBS" fi fi AC_DEFINE(HAVE_UODBC,1,[ ]) |