source: branches/samba-3.3.x/source/lib/tdb/libtdb.m4

Last change on this file was 206, checked in by Herwig Bauernfeind, 16 years ago

Import Samba 3.3 branch at 3.0.0 level (psmedley's port)

File size: 901 bytes
Line 
1dnl find the tdb sources. This is meant to work both for
2dnl tdb standalone builds, and builds of packages using tdb
3tdbdir=""
4tdbpaths="$srcdir $srcdir/lib/tdb $srcdir/tdb $srcdir/../tdb"
5for d in $tdbpaths; do
6 if test -f "$d/common/tdb.c"; then
7 tdbdir="$d"
8 AC_SUBST(tdbdir)
9 break;
10 fi
11done
12if test x"$tdbdir" = "x"; then
13 AC_MSG_ERROR([cannot find tdb source in $tdbpaths])
14fi
15TDB_OBJ="common/tdb.o common/dump.o common/transaction.o common/error.o common/traverse.o"
16TDB_OBJ="$TDB_OBJ common/freelist.o common/freelistcheck.o common/io.o common/lock.o common/open.o"
17AC_SUBST(TDB_OBJ)
18AC_SUBST(LIBREPLACEOBJ)
19
20TDB_LIBS=""
21AC_SUBST(TDB_LIBS)
22
23TDB_CFLAGS="-I$tdbdir/include"
24AC_SUBST(TDB_CFLAGS)
25
26AC_CHECK_FUNCS(mmap pread pwrite getpagesize utime)
27AC_CHECK_HEADERS(getopt.h sys/select.h sys/time.h)
28
29AC_HAVE_DECL(pread, [#include <unistd.h>])
30AC_HAVE_DECL(pwrite, [#include <unistd.h>])
Note: See TracBrowser for help on using the repository browser.