mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
eaa11475cd
configure checks are done (This used to be commit 57c8db4f9aecd161d61cf0011e960edc718d7cf0)
12 lines
231 B
Plaintext
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)
|