X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=buildconf.sh;h=8c0cf2fd733d047748d4e21f4ebdc9a51e7c6d02;hb=f403b05509aac2b9da65ecb9397d9452bd3a3aab;hp=b534e7465ccfb4ad345b14b16c4ed41f26d3f51f;hpb=0d224465e46c5886cfdd5002b34cd3b239043fb5;p=yaz-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index b534e74..8c0cf2f 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,11 +1,68 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.16 2003-05-06 12:09:10 adam Exp $ +# $Id: buildconf.sh,v 1.23 2006-02-01 20:11:22 adam Exp $ set -x -aclocal +aclocal -I . 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 + CFLAGS="$sh_flags" ./configure $* + else + ./configure $* + fi +fi +if $enable_help; then + cat <