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
This commit is contained in:
briano%netscape.com
1999-09-22 23:22:07 +00:00
parent d96e7f942e
commit cddaf6ef4e

View File

@@ -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