From cddaf6ef4eee786bbbb472f9a91989680768a141 Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Wed, 22 Sep 1999 23:22:07 +0000 Subject: [PATCH] Added OpenVMS to the 'list' of platforms that need to be excluded from using -D__STDC__. Approved by chofmann. git-svn-id: svn://10.0.0.236/trunk@48875 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/intl/uconv/src/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/intl/uconv/src/Makefile.in b/mozilla/intl/uconv/src/Makefile.in index bb6f0dd38a2..bc5b06d57e6 100644 --- a/mozilla/intl/uconv/src/Makefile.in +++ b/mozilla/intl/uconv/src/Makefile.in @@ -45,7 +45,7 @@ CPPSRCS = \ nsUConvDll.cpp \ nsURLProperties.cpp \ nsMappingCache.cpp \ - nsCharsetMenu.cpp \ + nsCharsetMenu.cpp \ $(NULL) EXPORT_RESOURCE = \ @@ -59,8 +59,8 @@ include $(topsrcdir)/config/rules.mk CFLAGS += -DUSE_NSREG -# Reserved name __STDC__ cannot be defined as a macro name on AIX. -ifneq ($(OS_ARCH),AIX) +# Reserved name __STDC__ cannot be defined as a macro name on AIX or OpenVMS. +ifeq (,$(filter AIX OpenVMS,$(OS_ARCH))) CFLAGS += -D__STDC__ endif