mirror of
https://github.com/samba-team/samba.git
synced 2025-03-12 20:58:37 +03:00
...instead of using SOCKET_LIBS and NSL_LIBS. metze (cherry picked from commit cef2e8d748756f61c248ad6660e85dd1ac36308a) (This used to be commit 7854ed24a57162fa7569d8f36633f3c156067b0b)
30 lines
658 B
Plaintext
30 lines
658 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
|
|
|
|
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)
|