From 89b120a18d5481e2b354accd07e07bc74816cfc9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 7 Nov 2008 13:59:23 +0100 Subject: [PATCH] Supports C++ compilations as well --- buildconf.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 1.7.10.4