summaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorkaa@kaamos.(none) <>2008-02-17 14:57:01 +0300
committerkaa@kaamos.(none) <>2008-02-17 14:57:01 +0300
commit5647dee19259115e9c7015f885547d5cdaedf81f (patch)
tree32ec9a2109f5937fa7bbd8c249cb71d6546ed347 /BUILD
parenta1a94e238f267e83679119631404f87ece799679 (diff)
parent6736c1b9e7bfde20314eeeaadb34a4f4b99c69eb (diff)
downloadmariadb-git-5647dee19259115e9c7015f885547d5cdaedf81f.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