X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=buildconf.sh;h=8dbf874572a5613fd54decc83fcdadc16a94e438;hp=d495c31527548cca933dae69cc3b8dd8bff48c32;hb=6b595f73431b4b38ec138ded59281632e0a1c47f;hpb=09abca5ee8cb11137decdfa7d10b822173ad5fe1 diff --git a/buildconf.sh b/buildconf.sh index d495c31..8dbf874 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,10 +1,68 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.9 2002-03-06 01:38:51 adam Exp $ -aclocal -libtoolize --automake --force || exit 2 -automake -a || exit 3 -autoconf || exit 4 +# $Id: buildconf.sh,v 1.24 2006-03-20 09:38:13 mike Exp $ +set -x +aclocal -I . +libtoolize --automake --force +automake --add-missing +automake --add-missing +autoconf +set - if [ -f config.cache ]; then rm config.cache fi -util/cvs-date.tcl include/yaz/yaz-date.h + +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 + CFLAGS="$sh_flags" ./configure $* + else + ./configure $* + fi +fi +if $enable_help; then + cat <