1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00
Files
samba-mirror/source/lib/talloc/configure.in
Stefan Metzmacher 2977e7097a r17109: - use AC_SYS_LARGEFILE so that type sizes are the same when talloc
is build standalone and inside samba
- add configure checks for the some type sizes for debugging

metze
2007-10-10 14:10:13 -05:00

18 lines
331 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)
DOC_TARGET=""
if test -n "$XSLTPROC"; then
DOC_TARGET=doc
fi
AC_SUBST(DOC_TARGET)
AC_CONFIG_HEADER(config.h)
AC_SYS_LARGEFILE
sinclude(config.m4)
AC_OUTPUT(Makefile talloc.pc)