Use WRBUF for addinfo member of cql_transform_t
[yaz-moved-to-github.git] / buildconf.sh
index c9645af..6e6e322 100755 (executable)
@@ -1,42 +1,12 @@
 #!/bin/sh
-# $Id: buildconf.sh,v 1.22 2006-01-20 10:34:50 adam Exp $
-set -x
-aclocal -I .
-libtoolize --automake --force 
-automake --add-missing 
-automake --add-missing 
-autoconf
-set -
-if [ -f config.cache ]; then
-       rm config.cache
+
+if [ -d .git ]; then
+    git submodule init
+    git submodule update
 fi
 
-enable_configure=false
-enable_help=true
-sh_flags=""
-conf_flags=""
-case $1 in
-    -d)
-       sh_flags="-g -Wall -ansi"
-       enable_configure=true
-       enable_help=false
-       shift
-       ;;
-    -c)
-       sh_flags=""
-       enable_configure=true
-       enable_help=false
-       shift
-       ;;
-esac
+. m4/id-config.sh
 
-if $enable_configure; then
-    if test -n "$sh_flags"; then
-       CFLAGS="$sh_flags" ./configure $*
-    else
-       ./configure $*
-    fi
-fi
 if $enable_help; then
     cat <<EOF
 
@@ -57,12 +27,29 @@ Build distribution tarball with
 Verify distribution tarball with
   make distcheck
 
+EOF
+    if [ -f /etc/debian_version ]; then
+        cat <<EOF
 Or just build the Debian packages without configuring
   dpkg-buildpackage -rfakeroot
 
-When building from a CVS checkout, you need these Debian tools:
-  autoconf, automake, bison, gcc, libtools,
-  docbook-utils, docbook, docbook-xml, docbook-dsssl, jade, jadetex,
-  libxml2-dev, libssl-dev, libreadline4-dev, libwrap0-dev, any tcl
+When building from Git, you need these Debian packages:
+  autoconf automake libtool gcc bison tcl8.4
+  xsltproc docbook docbook-xml docbook-xsl
+  libxslt1-dev libgnutls-dev libreadline5-dev libwrap0-dev
+  pkg-config libicu-dev 
+
+And if you want to make a Debian package: dpkg-dev fakeroot debhelper
+(Then run "dpkg-buildpackage -rfakeroot" in this directory.)
+
+EOF
+    fi
+    if [ "`uname -s`" = FreeBSD ]; then
+        cat <<EOF
+When building from a Git, you need these FreeBSD Ports:
+  pkg_add -r autoconf268 automake111 libtool bison tcl84 \\
+             docbook-xsl libxml2 libxslt
+  pkg_add -r icu4
 EOF
+    fi
 fi