From 95918a1a86bc1e4c5045801b4bdb83359e033c6a Mon Sep 17 00:00:00 2001 From: Dwayne Litzenberger Date: Sat, 2 Feb 2013 20:48:04 -0800 Subject: Use autoconf to generate compiler options Hopefully this means we'll break on fewer platforms. Also, remove some of the extra optimization flags (e.g. -O3 -fomit-frame-pointer), which don't really do much. --- bootstrap.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'bootstrap.sh') diff --git a/bootstrap.sh b/bootstrap.sh index e7ba88a..bf2fae6 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -2,6 +2,12 @@ # Generates ./src/config.h.in and ./configure set -e -aclocal -autoheader -autoconf +aclocal --force -I m4 +autoconf --force +autoheader --force + +# The following line is needed to generate build-aux/*, but it will fail +# because we have no Makefile.am +mkdir -p build-aux +echo "** You can ignore the following error about a missing Makefile.am" +automake --add-missing --copy || true -- cgit v1.2.1