sniper Wed Jun 26 17:44:59 2002 EDT
Modified files:
/php4/ext/odbc config.m4
Log:
Better not pollute the EXTRA_LIBS with libpaths.
Index: php4/ext/odbc/config.m4
diff -u php4/ext/odbc/config.m4:1.52 php4/ext/odbc/config.m4:1.53
--- php4/ext/odbc/config.m4:1.52 Thu Jun 13 20:07:13 2002
+++ php4/ext/odbc/config.m4 Wed Jun 26 17:44:58 2002
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4,v 1.52 2002/06/14 00:07:13 sniper Exp $
+dnl $Id: config.m4,v 1.53 2002/06/26 21:44:58 sniper Exp $
dnl
dnl
@@ -537,7 +537,8 @@
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,[ ])
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|