Reserved name __STDC__ cannot be defined as a macro name on AIX or OpenVMS.

git-svn-id: svn://10.0.0.236/trunk@48878 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
briano%netscape.com
1999-09-22 23:43:51 +00:00
parent 2093fec6f2
commit ee360d3401

View File

@@ -37,9 +37,12 @@ CPPSRCS = \
nsSampleWordBreaker.cpp \
$(NULL)
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
include $(topsrcdir)/config/rules.mk
CFLAGS += -DUSE_NSREG -D__STDC__
CFLAGS += -DUSE_NSREG
# Reserved name __STDC__ cannot be defined as a macro name on AIX or OpenVMS.
ifeq (,$(filter AIX OpenVMS,$(OS_ARCH)))
CFLAGS += -D__STDC__
endif