1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-21 20:23:50 +03:00
Files
samba-mirror/source4/lib/talloc/configure.ac
Andrew Tridgell 9b10009938 r18076: convert talloc to the new libreplace system
(This used to be commit 968a4e97cf)
2007-10-10 14:17:12 -05:00

22 lines
414 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(talloc_config.h)
AC_SYS_LARGEFILE
sinclude(config.m4)
sinclude(libreplace.m4)
AC_OUTPUT(Makefile talloc.pc)