Bug 711611 - NSPR's obsolete int32, int64, etc. types get defined without an opt-out #define -- add that #define to SpiderMonkey so int32/etc. can't be (mis-)used. r=bhackett

--HG--
extra : rebase_source : 18c73b832cb9f4587c4a1114f237edcaba657199
This commit is contained in:
Jeff Walden 2011-12-16 17:03:07 -05:00
Родитель 84aaf4eed3
Коммит 5de3e7e890
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -727,6 +727,9 @@ ifdef JS_VERSION
DEFINES += -DJS_VERSION=$(JS_VERSION)
endif
# We do not want to have obsolete NSPR functionality in threadsafe builds.
DEFINES += -DNO_NSPR_10_SUPPORT
ifneq ($(findstring -L,$(NSPR_LIBS)),)
NSPR_STATIC_PATH = $(subst -L,,$(findstring -L,$(NSPR_LIBS)))
else