summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-08-27 22:22:13 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-08-27 22:22:13 +0000
commit2306cd2d97e0c1d977bae959c24b08d397253162 (patch)
tree98a726f16f25e0510c4b05926467977fe4135b16
parentec183d536c9937e71b834e4f21e7bc7b4fc24e1a (diff)
downloadATCD-2306cd2d97e0c1d977bae959c24b08d397253162.tar.gz
ChangeLogTag:Wed Aug 27 15:18:49 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--ChangeLog8
-rw-r--r--include/makeinclude/wrapper_macros.GNU14
2 files changed, 15 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f5528616b9..d049767ba11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Aug 27 15:18:49 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
+
+ * include/makeinclude/wrapper_macros.GNU (CCFLAGS):
+
+ Do not add "-Wno-uninitialized" to GNU C++ compiler flags. It
+ is no longer needed to avoid (apparently) bogus warnings.
+ Keeping it around hides potentially real problems.
+
Wed Aug 27 14:23:00 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/USAGE:
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index c0c5feb2bad..d2059d5c0d4 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -524,13 +524,13 @@ else # exceptions
#### Enable exception handling with g++ < 2.8.0. Not recommended,
#### but provided here for completeness.
CCFLAGS += -fhandle-exceptions
- else # ! ACE_HAS_GNUG_PRE_2_8
- ifeq ($(ACE_HAS_GNUG_PRE_2_8),0)
- #### Disable this warning on g++ >= 2.8.0 if exceptions are enabled,
- #### it gets confused and reports too many bogus warnings.
- CFLAGS += -Wno-uninitialized
- endif # g++ > 2.8.0
- endif # ! ACE_HAS_GNUG_PRE_2_8
+# else # ! ACE_HAS_GNUG_PRE_2_8
+# ifeq ($(ACE_HAS_GNUG_PRE_2_8),0)
+# #### Disable this warning on g++ >= 2.8.0 if exceptions are enabled,
+# #### it gets confused and reports too many bogus warnings.
+# CCFLAGS += -Wno-uninitialized
+# endif # g++ > 2.8.0
+# endif # ! ACE_HAS_GNUG_PRE_2_8
endif # exceptions
ifeq ($(profile),0)