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
commit9b1a07309620baf2cc5deb87d5a91c392a76060a (patch)
treead3ce8755bad904cef15ae1347cf8690aa4d663b /include
parent3819dbc41208d9b99d0fc7393514528408bb8495 (diff)
downloadATCD-9b1a07309620baf2cc5deb87d5a91c392a76060a.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)