summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-07-10 12:50:18 +0000
committerWez Furlong <wez@php.net>2004-07-10 12:50:18 +0000
commit4959eb1b5f5ba75b8dc813b4f431a1465e9d72d5 (patch)
tree7d4f8e90afcafd1287a2a133024b9a708673f166
parent20ad0b96688cb892e989d6c2672b28806193a8c7 (diff)
downloadphp-git-4959eb1b5f5ba75b8dc813b4f431a1465e9d72d5.tar.gz
Fix #28402: no need for -ldl
-rw-r--r--ext/sqlite/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/config.m4 b/ext/sqlite/config.m4
index 797b6a00c0..0c1b178944 100644
--- a/ext/sqlite/config.m4
+++ b/ext/sqlite/config.m4
@@ -39,7 +39,7 @@ if test "$PHP_SQLITE" != "no"; then
],[
AC_MSG_ERROR([wrong sqlite lib version or lib not found])
],[
- -L$SQLITE_DIR/lib -lm -ldl
+ -L$SQLITE_DIR/lib -lm
])
PHP_SUBST(SQLITE_SHARED_LIBADD)