diff options
-rw-r--r-- | ext/sqlite3/config0.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/sqlite3/config0.m4 b/ext/sqlite3/config0.m4 index f1425c3aa9..6b96cb61ef 100644 --- a/ext/sqlite3/config0.m4 +++ b/ext/sqlite3/config0.m4 @@ -51,8 +51,9 @@ if test $PHP_SQLITE3 != "no"; then AC_DEFINE(HAVE_SQLITE3_KEY, 1, [have commercial sqlite3 with crypto support]) ]) - PHP_CHECK_LIBRARY(sqlite3,sqlite3_load_extension,[ - AC_DEFINE(SQLITE_OMIT_LOAD_EXTENSION, 1, [have sqlite3 with extension support]) + PHP_CHECK_LIBRARY(sqlite3,sqlite3_load_extension, + [], + [AC_DEFINE(SQLITE_OMIT_LOAD_EXTENSION, 1, [have sqlite3 with extension support]) ]) else |