summaryrefslogtreecommitdiff
blob: fe9f70ac0072d06af1b2a8ba0f27ca178c5f0ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Fix building with dlopen() not available.

--- configure.ac
+++ configure.ac
@@ -89,6 +89,9 @@
   [], [enable_dynamic_extensions=yes])
 if test x"$enable_dynamic_extensions" != "xno"; then
   AC_SEARCH_LIBS(dlopen, dl)
+  if test "${ac_cv_search_dlopen}" = "no" ; then
+    DYNAMIC_EXTENSION_FLAGS=-DSQLITE_OMIT_LOAD_EXTENSION=1
+  fi
 else
   DYNAMIC_EXTENSION_FLAGS=-DSQLITE_OMIT_LOAD_EXTENSION=1
 fi