X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=buildconf.sh;h=ee0d1be9efcb4161a2009a3f670217d60e952639;hp=5f60670eb48b152034f8d78f5282bbb46a22c8fd;hb=89b120a18d5481e2b354accd07e07bc74816cfc9;hpb=e579d2c5f9886c3929513a15724bd745ae4bacac diff --git a/buildconf.sh b/buildconf.sh index 5f60670..ee0d1be 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