blob: aaf404e37390a7c384c0642ccad707ee4959e98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
AC_DEFUN([SMB_EXT_LIB], [echo -n ""])
AC_DEFUN([SMB_ENABLE], [echo -n ""])
AC_PREREQ(2.50)
AC_INIT(dlfcn.c)
AC_CONFIG_SRCDIR([dlfcn.c])
AC_CONFIG_HEADER(config.h)
if test "$ac_cv_prog_gcc" = yes; then
CFLAGS="$CFLAGS -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings"
fi
m4_include(libreplace.m4)
m4_include(win32/config.m4)
m4_include(repdir/config.m4)
AC_OUTPUT(Makefile)
|