mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
d08fb7b1cc
and use the macros in configure.ac
metze
(This used to be commit 95d33e4d71
)
19 lines
311 B
Plaintext
19 lines
311 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(talloc.h)
|
|
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)
|