mirror of
https://github.com/samba-team/samba.git
synced 2025-01-28 17:47:29 +03:00
10cb1b87ed
metze (This used to be commit 84ebb6cac224cabf3856a632de80a8a9c687329b)
19 lines
316 B
Plaintext
19 lines
316 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(talloc, 1.1.0)
|
|
AC_CONFIG_SRCDIR([talloc.c])
|
|
AC_SUBST(datarootdir)
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
AC_LIBREPLACE_ALL_CHECKS
|
|
|
|
m4_include(libtalloc.m4)
|
|
|
|
AC_PATH_PROG(XSLTPROC,xsltproc)
|
|
DOC_TARGET=""
|
|
if test -n "$XSLTPROC"; then
|
|
DOC_TARGET=doc
|
|
fi
|
|
AC_SUBST(DOC_TARGET)
|
|
|
|
AC_OUTPUT(Makefile talloc.pc)
|