Bug 793465 - Disable the unconditional declaration of HAVE_UINT64_T under !Windows. r=glandium

External codes have their own definitions or management.

cairo (fail under Windows):
Defined in gfx/cairo/cairo/src/cairo-wideint-type-private.h

intl:
Defined in intl/icu/source/configure.in

webrtc:
media/webrtc/signaling/signaling.gyp

netwerk:
netwerk/srtp/src/Makefile.in
This commit is contained in:
Sylvestre Ledru 2014-01-14 09:39:49 -05:00
parent 1dee168f7b
commit b71af24266

View File

@ -7954,9 +7954,11 @@ if test "$MOZ_TREE_CAIRO"; then
MOZ_CAIRO_CFLAGS='-I$(LIBXUL_DIST)/include/cairo'
AC_DEFINE(MOZ_TREE_CAIRO)
# For now we assume that we will have a uint64_t available through
# one of the above headers or mozstdint.h.
AC_DEFINE(HAVE_UINT64_T)
if test "$OS_ARCH" = "WINNT"; then
# For now we assume that we will have a uint64_t available through
# one of the above headers or mozstdint.h.
AC_DEFINE(HAVE_UINT64_T)
fi
# Define macros for cairo-features.h
TEE_SURFACE_FEATURE="#define CAIRO_HAS_TEE_SURFACE 1"