From 2ae4531dae6f6d52f5284357061202bb680825ce Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sun, 8 May 2005 15:23:05 +0000 Subject: [PATCH] Using more friendly buildconf from YAZ - slightly updated --- buildconf.sh | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 60 insertions(+), 5 deletions(-) diff --git a/buildconf.sh b/buildconf.sh index 56738e2..40f6114 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,12 +1,67 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.5 2005-02-08 14:06:51 adam Exp $ +# $Id: buildconf.sh,v 1.6 2005-05-08 15:23:05 adam Exp $ set -x -dir=`aclocal --print-ac-dir` aclocal -I . -libtoolize --force -automake -a -automake -a +libtoolize --automake --force +automake --add-missing +automake --add-missing autoconf +set - if [ -f config.cache ]; then rm config.cache fi + +enable_configure=false +enable_help=true +sh_flags="" +conf_flags="" +case $1 in + -d) + sh_flags="-g -Wall" + enable_configure=true + enable_help=false + shift + ;; + -c) + sh_flags="" + enable_configure=true + enable_help=false + shift + ;; +esac + +if $enable_configure; then + if test -n "$sh_flags"; then + CXXFLAGS="$sh_flags" ./configure $* + else + ./configure $* + fi +fi +if $enable_help; then + cat <