diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-13 09:47:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:31 -0500 |
commit | 0584c108dbf6072d28b97ca3dcd70ef25ff4359c (patch) | |
tree | 8b1cbae13edaa2a17ac4e4401db447ff57219037 /source4/lib/replace/configure.ac | |
parent | c447b8a199cc61221b99f4582d714bac3774ae1b (diff) | |
download | samba-0584c108dbf6072d28b97ca3dcd70ef25ff4359c.tar.gz samba-0584c108dbf6072d28b97ca3dcd70ef25ff4359c.tar.xz samba-0584c108dbf6072d28b97ca3dcd70ef25ff4359c.zip |
r18450: - autogenerate the OBJ_FILES for LIBREPLACE
- remove samba specific stuff from libreplace
- and include the readdir replacement stuff in the standalone builds
metze
(This used to be commit 3cac61152ef9a32313d7f7e5d38651f03a31f251)
Diffstat (limited to 'source4/lib/replace/configure.ac')
-rw-r--r-- | source4/lib/replace/configure.ac | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/source4/lib/replace/configure.ac b/source4/lib/replace/configure.ac index aaf404e373..b506b791eb 100644 --- a/source4/lib/replace/configure.ac +++ b/source4/lib/replace/configure.ac @@ -1,16 +1,12 @@ -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_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 -m4_include(libreplace.m4) -m4_include(win32/config.m4) -m4_include(repdir/config.m4) AC_OUTPUT(Makefile) |