added some package names to message
[yaz-moved-to-github.git] / buildconf.sh
index 5772074..f862842 100755 (executable)
@@ -1,16 +1,44 @@
 #!/bin/sh
-# $Id: buildconf.sh,v 1.17 2004-02-17 09:23:16 marc Exp $
+# $Id: buildconf.sh,v 1.21 2005-07-18 10:06:36 marc 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
 
-MESSAGE=" 
+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 <<EOF
 
 Build the Makefiles with the configure command.
   ./configure [--someoption=somevalue ...]
@@ -33,6 +61,8 @@ Or just build the Debian packages without configuring
   dpkg-buildpackage -rfakeroot
 
 When building from a CVS checkout, you need these Debian tools:
-  bison, docbook-utils, docbook, docbook-xml, docbook-dsssl, jade, jadetex,
-  libxml2-dev, libssl-dev, libreadline4-dev, libwrap0-dev
-"
+  autoconf, automake, bison, gcc, libtools,
+  docbook-utils, docbook, docbook-xml, docbook-dsssl, jade, jadetex,
+  libxml2-dev, libssl-dev, libreadline4-dev, libwrap0-dev, any tcl
+EOF
+fi