summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorkaa@kaamos.(none) <>2008-03-12 11:19:46 +0300
committerkaa@kaamos.(none) <>2008-03-12 11:19:46 +0300
commit0a7052e4d3633b818ab4050adcad646b888c5430 (patch)
treef84e4ada799bf37a3d9ef074064f8a17f408aa89 /BUILD
parentd4025ce1a60322635bf5f7adb765f4612563ee3a (diff)
parent7e365efa30f5d42aaf87ce9044176e266ee337eb (diff)
downloadmariadb-git-0a7052e4d3633b818ab4050adcad646b888c5430.tar.gz
Merge kaamos.(none):/data/src/mysql-5.1
into kaamos.(none):/data/src/opt/mysql-5.1-opt
Diffstat (limited to 'BUILD')
-rwxr-xr-xBUILD/SETUP.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh
index e940f7a3371..ef8aefca710 100755
--- a/BUILD/SETUP.sh
+++ b/BUILD/SETUP.sh
@@ -100,8 +100,10 @@ if [ "x$warning_mode" != "xpedantic" ]; then
# C warnings
c_warnings="$warnings -Wunused-parameter"
# C++ warnings
- cxx_warnings="$warnings -Woverloaded-virtual -Wsign-promo -Wreorder"
- cxx_warnings="$warnings -Wctor-dtor-privacy -Wnon-virtual-dtor"
+ cxx_warnings="$warnings"
+# cxx_warnings="$cxx_warnings -Woverloaded-virtual -Wsign-promo"
+ cxx_warnings="$cxx_warnings -Wreorder"
+ cxx_warnings="$cxx_warnings -Wctor-dtor-privacy -Wnon-virtual-dtor"
# Added unless --with-debug=full
debug_extra_cflags="-O1 -Wuninitialized"
else