X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=buildconf.sh;h=5ce967ccd6db65cc41d65f621ea66f80f63a2c4c;hb=d96ec51bf86e8c38213abf5df1812de901f60bfa;hp=5f60670eb48b152034f8d78f5282bbb46a22c8fd;hpb=e579d2c5f9886c3929513a15724bd745ae4bacac;p=yaz-moved-to-github.git diff --git a/buildconf.sh b/buildconf.sh index 5f60670..5ce967c 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -50,14 +50,15 @@ sh_flags="" conf_flags="" case $1 in -d) - #sh_flags="-g -Wall -Wdeclaration-after-statement -Werror -Wstrict-prototypes" - 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 @@ -66,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 @@ -102,6 +103,12 @@ When building from a CVS checkout, you need these Debian packages: xsltproc, docbook, docbook-xml, docbook-xsl, 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