r25068: Older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for every opcode on the
[Samba.git] / source / lib / tdb / libtdb.m4
blobfefa5912c265858e373cdc5ed70ae942e7b5991d
1 dnl find the tdb sources. This is meant to work both for 
2 dnl tdb standalone builds, and builds of packages using tdb
3 tdbdir=""
4 tdbpaths="$srcdir $srcdir/lib/tdb $srcdir/tdb $srcdir/../tdb"
5 for d in $tdbpaths; do
6         if test -f "$d/common/tdb.c"; then
7                 tdbdir="$d"             
8                 AC_SUBST(tdbdir)
9                 break;
10         fi
11 done
12 if test x"$tdbdir" = "x"; then
13    AC_MSG_ERROR([cannot find tdb source in $tdbpaths])
15 TDBOBJ="common/tdb.o common/dump.o common/transaction.o common/error.o common/traverse.o"
16 TDBOBJ="$TDBOBJ common/freelist.o common/freelistcheck.o common/io.o common/lock.o common/open.o"
17 AC_SUBST(TDBOBJ)
18 AC_SUBST(LIBREPLACEOBJ)
20 AC_CHECK_FUNCS(mmap pread pwrite getpagesize utime)
21 AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h)
23 AC_HAVE_DECL(pread, [#include <unistd.h>])
24 AC_HAVE_DECL(pwrite, [#include <unistd.h>])
26 AC_MSG_CHECKING([for Python])
28 PYTHON=
30 AC_ARG_WITH(python,
31 [  --with-python=PYTHONNAME  build Python libraries],
32 [ case "${withval-python}" in
33   yes)
34         PYTHON=python
35         ;;
36   no)
37         PYTHON=
38         ;;
39   *)
40         PYTHON=${withval-python}
41         ;;
42   esac ])
44 if test x"$PYTHON" != "x"; then
45         incdir=`python -c 'import sys; print "%s/include/python%d.%d" % (sys.prefix, sys.version_info[[0]], sys.version_info[[1]])'`
46         CPPFLAGS="$CPPFLAGS -I $incdir"
49 if test x"$PYTHON" != "x"; then
50         AC_MSG_RESULT([${withval-python}])
51 else
52         SMB_ENABLE(swig_tdb, NO)
53         AC_MSG_RESULT(no)
56 AC_SUBST(PYTHON)