mirror of
https://github.com/samba-team/samba.git
synced 2025-06-28 00:49:42 +03:00
metze (cherry picked from commit 04f4523ed032946b8f0e74ac6f7458010159e3bb) (This used to be commit a3d675a7738cc04bb765064a060780198721d94a)
31 lines
687 B
Plaintext
31 lines
687 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(replace.c)
|
|
AC_CONFIG_SRCDIR([replace.c])
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
CFLAGS="$CFLAGS -I$srcdir"
|
|
|
|
AC_LIBREPLACE_ALL_CHECKS
|
|
AC_LIBREPLACE_NETWORK_CHECKS
|
|
|
|
if test "$ac_cv_prog_gcc" = yes; then
|
|
CFLAGS="$CFLAGS -Wall"
|
|
CFLAGS="$CFLAGS -W"
|
|
CFLAGS="$CFLAGS -Wshadow"
|
|
CFLAGS="$CFLAGS -Wstrict-prototypes"
|
|
CFLAGS="$CFLAGS -Wpointer-arith"
|
|
CFLAGS="$CFLAGS -Wcast-qual"
|
|
CFLAGS="$CFLAGS -Wcast-align"
|
|
CFLAGS="$CFLAGS -Wwrite-strings"
|
|
CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
|
|
CFLAGS="$CFLAGS -Wformat=2"
|
|
CFLAGS="$CFLAGS -Wno-format-y2k"
|
|
fi
|
|
|
|
LIBS="${LIBREPLACE_NETWORK_LIBS}"
|
|
AC_SUBST(LIBS)
|
|
|
|
AC_SUBST(LDFLAGS)
|
|
|
|
AC_OUTPUT(Makefile)
|