mirror of
https://github.com/samba-team/samba.git
synced 2025-11-23 20:23:50 +03:00
- remove samba specific stuff from libreplace - and include the readdir replacement stuff in the standalone builds metze
13 lines
294 B
Plaintext
13 lines
294 B
Plaintext
AC_PREREQ(2.50)
|
|
AC_INIT(replace.c)
|
|
AC_CONFIG_SRCDIR([replace.c])
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
m4_include(libreplace.m4)
|
|
|
|
if test "$ac_cv_prog_gcc" = yes; then
|
|
CFLAGS="$CFLAGS -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings"
|
|
fi
|
|
|
|
AC_OUTPUT(Makefile)
|