X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=buildconf.sh;h=5ce967ccd6db65cc41d65f621ea66f80f63a2c4c;hp=efe2805e01b627367e1b60d2bdc06d56b08217a4;hb=d96ec51bf86e8c38213abf5df1812de901f60bfa;hpb=b64382a1e420049b882b87fb05fe058aa6592d1c diff --git a/buildconf.sh b/buildconf.sh index efe2805..5ce967c 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,20 +1,29 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.43 2006-09-27 11:38:59 adam Exp $ automake=automake aclocal=aclocal autoconf=autoconf libtoolize=libtoolize +test -d config || mkdir config +if test .git; then + git submodule init + git submodule update +fi if [ "`uname -s`" = FreeBSD ]; then # FreeBSD intalls the various auto* tools with version numbers - echo "Using special configuation for FreeBSD ..." + echo "Using special configuration for FreeBSD ..." automake=automake19 aclocal="aclocal19 -I /usr/local/share/aclocal" autoconf=autoconf259 libtoolize=libtoolize15 fi +if [ "`uname -s`" = Darwin ]; then + echo "Using special configuration for Darwin/MacOS ..." + libtoolize=glibtoolize +fi + if $automake --version|head -1 |grep '1\.[4-7]'; then echo "automake 1.4-1.7 is active. You should use automake 1.8 or later" if test -f /etc/debian_version; then @@ -41,14 +50,15 @@ sh_flags="" conf_flags="" case $1 in -d) - #sh_flags="-g -Wall -Wdeclaration-after-statement -Werror" - sh_flags="-g -Wall -Wdeclaration-after-statement -Wstrict-prototypes" + sh_cflags="-g -Wall -Wdeclaration-after-statement -Wstrict-prototypes" + sh_cxxflags="-g -Wall" enable_configure=true enable_help=false shift ;; -c) - sh_flags="" + sh_cflags="" + sh_cxxflags="" enable_configure=true enable_help=false shift @@ -57,7 +67,7 @@ esac if $enable_configure; then if test -n "$sh_flags"; then - CFLAGS="$sh_flags" ./configure --disable-shared --enable-static $* + CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure --disable-shared --enable-static $* else ./configure $* fi @@ -91,7 +101,14 @@ Or just build the Debian packages without configuring When building from a CVS checkout, you need these Debian packages: autoconf, automake, libtool, gcc, bison, any tcl, xsltproc, docbook, docbook-xml, docbook-xsl, - libxslt1-dev, libssl-dev, libreadline5-dev, libwrap0-dev + libxslt1-dev, libssl-dev, libreadline5-dev, libwrap0-dev, + libpcap0.8-dev + +Also perhaps: libgnutls-dev 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