mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
9b10009938
(This used to be commit 968a4e97cf
)
22 lines
414 B
Plaintext
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)
|