summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1999-07-09 16:17:18 +0000
committerSteve Huston <shuston@riverace.com>1999-07-09 16:17:18 +0000
commit59b56d3ac19b607ec27435c9fabded6264f6f603 (patch)
treead3ce8755bad904cef15ae1347cf8690aa4d663b /include
parentbb30b4f8156072bb1d4425c76dad0d3c3c222d89 (diff)
downloadATCD-59b56d3ac19b607ec27435c9fabded6264f6f603.tar.gz
Re-enable suppression of warning 829 for 10.x.
Diffstat (limited to 'include')
-rw-r--r--include/makeinclude/platform_hpux_aCC.GNU5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/makeinclude/platform_hpux_aCC.GNU b/include/makeinclude/platform_hpux_aCC.GNU
index 61dadd2578a..dab665250d5 100644
--- a/include/makeinclude/platform_hpux_aCC.GNU
+++ b/include/makeinclude/platform_hpux_aCC.GNU
@@ -51,9 +51,10 @@ CCFLAGS += $(CFLAGS) $(THR_DEFS) -DHPUX_VERS=$(HPUX_VERS) -DACE_LACKS_PRAGMA_ON
# Additionally, on HP-UX 10.20, suppress 495 to shut up the warnings from
# the system header files. 667 is also suppressed, but the compiler still
# tells you there was a future error, but at least you can pick out any real
-# errors by quickly scanning the output.
+# errors by quickly scanning the output. 829 is suppressed because the
+# system headers have offending string literals assigned to char *.
ifeq ($(word 2,$(HPVERS_WORDS)), 10)
-CCFLAGS += +W495,667
+CCFLAGS += +W495,667,829
endif
DCFLAGS += -g
DLD = $(CXX) $(CCFLAGS)