From: Adam Dickmeiss Date: Fri, 7 Nov 2008 12:59:23 +0000 (+0100) Subject: Supports C++ compilations as well X-Git-Tag: v3.0.38~2 X-Git-Url: http://jsfdemo.indexdata.com/cgi-bin?a=commitdiff_plain;h=89b120a18d5481e2b354accd07e07bc74816cfc9;p=yaz-moved-to-github.git Supports C++ compilations as well --- 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