summaryrefslogtreecommitdiff
path: root/lib/replace/build_macros.m4
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/build_macros.m4
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/build_macros.m4')
-rw-r--r--lib/replace/build_macros.m414
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/replace/build_macros.m4 b/lib/replace/build_macros.m4
deleted file mode 100644
index c036668cd1..0000000000
--- a/lib/replace/build_macros.m4
+++ /dev/null
@@ -1,14 +0,0 @@
-AC_DEFUN(BUILD_WITH_SHARED_BUILD_DIR,
- [ AC_ARG_WITH([shared-build-dir],
- [AC_HELP_STRING([--with-shared-build-dir=DIR],
- [temporary build directory where libraries are installed [$srcdir/sharedbuild]])])
-
- sharedbuilddir="$srcdir/sharedbuild"
- if test x"$with_shared_build_dir" != x; then
- sharedbuilddir=$with_shared_build_dir
- CFLAGS="$CFLAGS -I$with_shared_build_dir/include"
- LDFLAGS="$LDFLAGS -L$with_shared_build_dir/lib"
- fi
- AC_SUBST(sharedbuilddir)
- ])
-