mirror of
https://github.com/samba-team/samba.git
synced 2025-11-21 12:23:50 +03:00
- samba malloc wrapper avoidance not needed now we don't use includes.h - make testsuite work when BOOL, True, False already defined
14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
AC_DEFUN([SMB_MODULE_DEFAULT], [echo -n ""])
|
|
AC_DEFUN([SMB_LIBRARY_ENABLE], [echo -n ""])
|
|
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_CHECK_HEADERS(stdint.h stdarg.h)
|
|
AC_CONFIG_HEADER(config.h)
|
|
sinclude(config.m4)
|
|
AC_OUTPUT(Makefile talloc.pc)
|