r9789: Patch from Volker that fixes the build on AIX.
[samba.git] / source / lib / ldb / sqlite3.m4
1 ########################################################
2 # Compile with SQLITE3 support?
3
4 SQLITE3_LIBS=""
5 with_sqlite3_support=no
6 AC_MSG_CHECKING([for SQLITE3 support])
7
8 AC_ARG_WITH(sqlite3,
9 [  --with-sqlite3          SQLITE3 support (default=no)],
10 [ case "$withval" in
11     yes|no|auto)
12         with_sqlite3_support=$withval
13         ;;
14   esac ])
15
16 AC_MSG_RESULT($with_sqlite3_support)
17
18 if test x"$with_sqlite3_support" != x"no"; then
19   ##################################################################
20   # first test for sqlite3.h
21   AC_CHECK_HEADERS(sqlite3.h)
22   
23   if test x"$ac_cv_header_sqlite3_h" != x"yes"; then
24         if test x"$with_sqlite3_support" = x"yes"; then
25          AC_MSG_ERROR(sqlite3.h is needed for SQLITE3 support)
26         else
27          AC_MSG_WARN(sqlite3.h is needed for SQLITE3 support)
28         fi
29         
30         with_sqlite3_support=no
31   fi
32 fi
33
34 if test x"$with_sqlite3_support" != x"no"; then
35   ac_save_LIBS=$LIBS
36
37   ########################################################
38   # now see if we can find the sqlite3 libs in standard paths
39   AC_CHECK_LIB_EXT(sqlite3, SQLITE3_LIBS, sqlite3_open)
40
41   if test x"$ac_cv_lib_ext_sqlite3_sqlite3_open" = x"yes"; then
42     AC_DEFINE(HAVE_SQLITE3,1,[Whether sqlite3 is available])
43     AC_MSG_CHECKING(whether SQLITE3 support is used)
44     AC_MSG_RESULT(yes)
45     with_sqlite3_support=yes
46     SMB_EXT_LIB_ENABLE(SQLITE3,YES)
47   else
48     if test x"$with_sqlite3_support" = x"yes"; then
49         AC_MSG_ERROR(libsqlite3 is needed for SQLITE3 support)
50     else
51         AC_MSG_WARN(libsqlite3 is needed for SQLITE3 support)
52     fi
53
54     SQLITE3_LIBS=""
55     with_sqlite3_support=no
56   fi
57
58   LIBS=$ac_save_LIBS;
59 fi
60
61 SMB_EXT_LIB(SQLITE3,[${SQLITE3_LIBS}],[${SQLITE3_CFLAGS}],[${SQLITE3_CPPFLAGS}],[${SQLITE3_LDFLAGS}])