From 8dd0c8c5460c6f16367a4a73f0ce4b27d5acab4f Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 22 Sep 2010 17:17:25 -0700 Subject: ldb: Use waf as default build system. --- source4/lib/ldb/autogen-autotools.sh | 18 ++++++++++++++++++ source4/lib/ldb/autogen.sh | 19 +------------------ 2 files changed, 19 insertions(+), 18 deletions(-) create mode 100755 source4/lib/ldb/autogen-autotools.sh mode change 100755 => 120000 source4/lib/ldb/autogen.sh (limited to 'source4/lib/ldb') diff --git a/source4/lib/ldb/autogen-autotools.sh b/source4/lib/ldb/autogen-autotools.sh new file mode 100755 index 0000000000..c68f2259b6 --- /dev/null +++ b/source4/lib/ldb/autogen-autotools.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +echo "Using autotools based build" + +rm -rf autom4te.cache +rm -f configure config.h.in + +IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace -I ../../../lib/replace" +IPATHS="$IPATHS -I ./external" + +autoheader $IPATHS || exit 1 +autoconf $IPATHS || exit 1 + +rm -rf autom4te.cache + +echo "Now run ./configure and then make." +exit 0 + diff --git a/source4/lib/ldb/autogen.sh b/source4/lib/ldb/autogen.sh deleted file mode 100755 index c68f2259b6..0000000000 --- a/source4/lib/ldb/autogen.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -echo "Using autotools based build" - -rm -rf autom4te.cache -rm -f configure config.h.in - -IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace -I ../../../lib/replace" -IPATHS="$IPATHS -I ./external" - -autoheader $IPATHS || exit 1 -autoconf $IPATHS || exit 1 - -rm -rf autom4te.cache - -echo "Now run ./configure and then make." -exit 0 - diff --git a/source4/lib/ldb/autogen.sh b/source4/lib/ldb/autogen.sh new file mode 120000 index 0000000000..672a86b206 --- /dev/null +++ b/source4/lib/ldb/autogen.sh @@ -0,0 +1 @@ +../../../buildtools/scripts/autogen-waf.sh \ No newline at end of file -- cgit