File tree 3 files changed +6
-10
lines changed
3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -11156,12 +11156,9 @@ fi
11156
11156
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_load_extension" >&5
11157
11157
$as_echo "$ac_cv_lib_sqlite3_sqlite3_load_extension" >&6; }
11158
11158
if test "x$ac_cv_lib_sqlite3_sqlite3_load_extension" = xyes; then :
11159
- cat >>confdefs.h <<_ACEOF
11160
- #define HAVE_LIBSQLITE3 1
11161
- _ACEOF
11162
-
11163
- LIBS="-lsqlite3 $LIBS"
11164
-
11159
+ have_sqlite3_load_extension=yes
11160
+ else
11161
+ have_sqlite3_load_extension=no
11165
11162
fi
11166
11163
11167
11164
Original file line number Diff line number Diff line change @@ -3196,7 +3196,9 @@ AC_CHECK_HEADER([sqlite3.h], [
3196
3196
] , [ ] )
3197
3197
] , [ have_supported_sqlite3=yes] , [ have_supported_sqlite3=no] )
3198
3198
] , [ have_sqlite3=no] )
3199
- AC_CHECK_LIB ( [ sqlite3] , [ sqlite3_load_extension] )
3199
+ AC_CHECK_LIB ( [ sqlite3] , [ sqlite3_load_extension] ,
3200
+ [ have_sqlite3_load_extension=yes] ,
3201
+ [ have_sqlite3_load_extension=no] )
3200
3202
] )
3201
3203
3202
3204
AS_VAR_COPY ( [ CFLAGS] , [ save_CFLAGS] )
Original file line number Diff line number Diff line change 634
634
/* Define to 1 if you have the `sendfile' library (-lsendfile). */
635
635
#undef HAVE_LIBSENDFILE
636
636
637
- /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */
638
- #undef HAVE_LIBSQLITE3
639
-
640
637
/* Define to 1 if you have the <libutil.h> header file. */
641
638
#undef HAVE_LIBUTIL_H
642
639
You can’t perform that action at this time.
0 commit comments