1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/angle/src/libGLESv2/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +ifndef GNU_CC 1.9 +# Enable unwind semantics for exception handlers in response to warning C4530. 1.10 +OS_CPPFLAGS += -EHsc 1.11 +else 1.12 +OS_CXXFLAGS := $(filter-out -fno-exceptions,$(OS_CXXFLAGS)) -fexceptions 1.13 +endif 1.14 + 1.15 +# End build_angle.gypi transcription. 1.16 + 1.17 +include $(topsrcdir)/config/rules.mk 1.18 + 1.19 +ifndef MOZ_HAS_WINSDK_WITH_D3D 1.20 +CXXFLAGS += -I'$(MOZ_DIRECTX_SDK_PATH)/include' 1.21 +endif 1.22 + 1.23 +ifdef MOZ_HAS_WINSDK_WITH_D3D 1.24 +EXTRA_DSO_LDOPTS = $(call EXPAND_LIBNAME,d3d9 dxguid) 1.25 +else 1.26 +EXTRA_DSO_LDOPTS = $(call EXPAND_LIBNAME_PATH,d3d9 dxguid,'$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)') 1.27 +endif 1.28 +EXTRA_DSO_LDOPTS += $(call EXPAND_LIBNAME,delayimp)