mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
38fdde5d9b
* libreplace can now build stand-alone
* add stub testsuite for libreplace
* make talloc/tdb/ldb use libreplace
(This used to be commit fe7ca4b145
)
20 lines
382 B
Plaintext
20 lines
382 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(talloc.h)
|
|
AC_CONFIG_SRCDIR([talloc.c])
|
|
AC_SUBST(datarootdir)
|
|
AC_PROG_CC
|
|
if test "x$GCC" = "xyes"; then
|
|
CFLAGS="$CFLAGS -Wall -W"
|
|
fi
|
|
AC_PROG_INSTALL
|
|
AC_PATH_PROG(XSLTPROC,xsltproc)
|
|
DOC_TARGET=""
|
|
if test -n "$XSLTPROC"; then
|
|
DOC_TARGET=doc
|
|
fi
|
|
AC_SUBST(DOC_TARGET)
|
|
AC_CONFIG_HEADER(config.h)
|
|
AC_SYS_LARGEFILE
|
|
sinclude(config.m4)
|
|
AC_OUTPUT(Makefile talloc.pc)
|