1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00
Andrew Tridgell eaa11475cd r6830: put header checks in config.m4 so when it is included by other projects the right
configure checks are done
(This used to be commit 57c8db4f9aecd161d61cf0011e960edc718d7cf0)
2007-10-10 13:16:48 -05:00

12 lines
231 B
Plaintext

AC_PREREQ(2.50)
AC_INIT(talloc.h)
AC_PROG_CC
if test "x$GCC" = "xyes"; then
CFLAGS="$CFLAGS -Wall -W"
fi
AC_PROG_INSTALL
AC_PATH_PROG(XSLTPROC,xsltproc)
AC_CONFIG_HEADER(config.h)
sinclude(config.m4)
AC_OUTPUT(Makefile talloc.pc)