summaryrefslogtreecommitdiff
path: root/lib/replace/configure.ac
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-06-02 23:51:39 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-06-05 04:27:36 +0200
commit5f583591db4738f2d0863ccc5253827191f993a0 (patch)
tree240e4a95ce650697c9349cb43d0c5747de7fd037 /lib/replace/configure.ac
parent4accd2396e8a9ac4a7b2191a1d3bc9c84d2e0497 (diff)
downloadsamba-5f583591db4738f2d0863ccc5253827191f993a0.tar.gz
samba-5f583591db4738f2d0863ccc5253827191f993a0.tar.bz2
samba-5f583591db4738f2d0863ccc5253827191f993a0.zip
libreplace: Remove autoconf build system
This leaves the parts required to build libreplace as a static lib for the autoconf build Andrew Bartlett
Diffstat (limited to 'lib/replace/configure.ac')
-rw-r--r--lib/replace/configure.ac33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/replace/configure.ac b/lib/replace/configure.ac
deleted file mode 100644
index 0361825a02..0000000000
--- a/lib/replace/configure.ac
+++ /dev/null
@@ -1,33 +0,0 @@
-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
-
-m4_include(build_macros.m4)
-BUILD_WITH_SHARED_BUILD_DIR
-
-LIBS="${LIBREPLACE_NETWORK_LIBS}"
-AC_SUBST(LIBS)
-
-AC_SUBST(LDFLAGS)
-
-AC_OUTPUT(Makefile)