X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=buildconf.sh;h=8c0cf2fd733d047748d4e21f4ebdc9a51e7c6d02;hb=1e8eb130ff83dedfb7382ca3e38651add9894662;hp=bcf0d28de1434bb446140eb5a9c3ec0cbbd7a990;hpb=dccf2111a2f7bed8ac96b29565b691c6413941c9;p=yaz-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index bcf0d28..8c0cf2f 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,9 +1,68 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.12 2002-05-13 18:34:53 adam Exp $ -aclocal +# $Id: buildconf.sh,v 1.23 2006-02-01 20:11:22 adam Exp $ +set -x +aclocal -I . libtoolize --automake --force -automake -a +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 <