зеркало из https://github.com/mozilla/pjs.git
Bug 737969 - Win8 Metro build config. r=ted
This commit is contained in:
Родитель
933f981aa9
Коммит
9dd942a5ac
|
@ -550,6 +550,7 @@ MOZ_ENABLE_DWRITE_FONT = @MOZ_ENABLE_DWRITE_FONT@
|
||||||
MOZ_ENABLE_D2D_SURFACE = @MOZ_ENABLE_D2D_SURFACE@
|
MOZ_ENABLE_D2D_SURFACE = @MOZ_ENABLE_D2D_SURFACE@
|
||||||
MOZ_ENABLE_D3D9_LAYER = @MOZ_ENABLE_D3D9_LAYER@
|
MOZ_ENABLE_D3D9_LAYER = @MOZ_ENABLE_D3D9_LAYER@
|
||||||
MOZ_ENABLE_D3D10_LAYER = @MOZ_ENABLE_D3D10_LAYER@
|
MOZ_ENABLE_D3D10_LAYER = @MOZ_ENABLE_D3D10_LAYER@
|
||||||
|
MOZ_METRO = @MOZ_METRO@
|
||||||
|
|
||||||
MOZ_GTK2_CFLAGS = @MOZ_GTK2_CFLAGS@
|
MOZ_GTK2_CFLAGS = @MOZ_GTK2_CFLAGS@
|
||||||
MOZ_GTK2_LIBS = @MOZ_GTK2_LIBS@
|
MOZ_GTK2_LIBS = @MOZ_GTK2_LIBS@
|
||||||
|
|
66
configure.in
66
configure.in
|
@ -678,25 +678,49 @@ fi
|
||||||
dnl ========================================================
|
dnl ========================================================
|
||||||
dnl Special win32 checks
|
dnl Special win32 checks
|
||||||
dnl ========================================================
|
dnl ========================================================
|
||||||
WINVER=502
|
|
||||||
dnl Target the Windows 7 SDK by default
|
# With win8, sdk target=602, WINVER=602
|
||||||
WINSDK_TARGETVER=601
|
MOZ_ARG_ENABLE_BOOL(metro,
|
||||||
|
[ --enable-metro Enable Windows Metro build targets],
|
||||||
|
MOZ_METRO=1,
|
||||||
|
MOZ_METRO=)
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
AC_DEFINE(MOZ_METRO)
|
||||||
|
# Target the Windows 8 Kit
|
||||||
|
WINSDK_TARGETVER=602
|
||||||
|
# Allow a higher api set
|
||||||
|
WINVER=602
|
||||||
|
else
|
||||||
|
# Target the Windows 7 SDK by default
|
||||||
|
WINSDK_TARGETVER=601
|
||||||
|
WINVER=502
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
case "$target" in
|
||||||
|
*-mingw*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_ERROR([Metro builds only valid on the windows platform.]);
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
MOZ_ARG_WITH_STRING(windows-version,
|
MOZ_ARG_WITH_STRING(windows-version,
|
||||||
[ --with-windows-version=WINSDK_TARGETVER
|
[ --with-windows-version=WINSDK_TARGETVER
|
||||||
Highest Windows version to target using this SDK
|
Windows SDK version to target. Lowest version
|
||||||
601: Windows 7],
|
currently allowed is 601 (Win7), highest is 602 (Win8)],
|
||||||
WINSDK_TARGETVER=$withval)
|
WINSDK_TARGETVER=$withval)
|
||||||
|
|
||||||
|
# Currently only two sdk versions allowed, 601 and 602
|
||||||
case "$WINSDK_TARGETVER" in
|
case "$WINSDK_TARGETVER" in
|
||||||
601)
|
601|602)
|
||||||
MOZ_WINSDK_TARGETVER=0${WINSDK_TARGETVER}0000
|
MOZ_WINSDK_TARGETVER=0${WINSDK_TARGETVER}0000
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
AC_MSG_ERROR([Invalid value for --with-windows-version ($WINSDK_TARGETVER), must be 601]);
|
AC_MSG_ERROR([Invalid value for --with-windows-version ($WINSDK_TARGETVER)]);
|
||||||
;;
|
;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case "$target" in
|
case "$target" in
|
||||||
|
@ -778,6 +802,16 @@ case "$target" in
|
||||||
WIN32_REDIST_DIR=`cd "$WIN32_REDIST_DIR" && pwd`
|
WIN32_REDIST_DIR=`cd "$WIN32_REDIST_DIR" && pwd`
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl Confirm we have the pri tools on win8 builds
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
AC_MSG_CHECKING([for makepri])
|
||||||
|
AC_CHECK_PROGS(MAKEPRI, makepri, "")
|
||||||
|
if test -z "MAKEPRI" ; then
|
||||||
|
AC_MSG_ERROR([makepri.exe is required for generating metro browser install components. It should be in the Win8 SDK.])
|
||||||
|
fi
|
||||||
|
AC_SUBST(MAKEPRI)
|
||||||
|
fi
|
||||||
|
|
||||||
dnl Ensure that mt.exe is 'Microsoft (R) Manifest Tool',
|
dnl Ensure that mt.exe is 'Microsoft (R) Manifest Tool',
|
||||||
dnl not something else like "magnetic tape manipulation utility".
|
dnl not something else like "magnetic tape manipulation utility".
|
||||||
MSMT_TOOL=`mt 2>&1|grep 'Microsoft (R) Manifest Tool'`
|
MSMT_TOOL=`mt 2>&1|grep 'Microsoft (R) Manifest Tool'`
|
||||||
|
@ -966,7 +1000,7 @@ EOF
|
||||||
AC_MSG_ERROR([windres version $WINDRES_VERSION or higher is required to build.])
|
AC_MSG_ERROR([windres version $WINDRES_VERSION or higher is required to build.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
MOZ_WINSDK_MAXVER=0x06010000
|
MOZ_WINSDK_MAXVER=0x06020000
|
||||||
fi # !GNU_CC
|
fi # !GNU_CC
|
||||||
|
|
||||||
AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
|
AC_DEFINE_UNQUOTED(WINVER,0x$WINVER)
|
||||||
|
@ -983,7 +1017,18 @@ EOF
|
||||||
AC_MSG_RESULT("no")
|
AC_MSG_RESULT("no")
|
||||||
AC_MSG_ERROR([You are targeting Windows version 0x$MOZ_WINSDK_TARGETVER, but your SDK only supports up to version $MOZ_WINSDK_MAXVER. Install and use an updated SDK, or target a lower version using --with-windows-version. Alternatively, try running the Windows SDK Configuration Tool and selecting a newer SDK. See https://developer.mozilla.org/En/Windows_SDK_versions for more details on fixing this.])
|
AC_MSG_ERROR([You are targeting Windows version 0x$MOZ_WINSDK_TARGETVER, but your SDK only supports up to version $MOZ_WINSDK_MAXVER. Install and use an updated SDK, or target a lower version using --with-windows-version. Alternatively, try running the Windows SDK Configuration Tool and selecting a newer SDK. See https://developer.mozilla.org/En/Windows_SDK_versions for more details on fixing this.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Make sure the sdk / code we're targeting has the right toolset
|
||||||
|
AC_MSG_CHECKING([SDK and tools are in sync])
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
if test "$MOZ_MSVCVERSION" -gt "10"; then
|
||||||
|
AC_MSG_RESULT("yes")
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT("no")
|
||||||
|
AC_MSG_ERROR([Your MOZ_MSVCVERSION equals $MOZ_MSVCVERSION and you've enabled metro build support. You can't target metro without msvc 11 or higher. Disable metro support or switch to a newer set of tools.])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
AC_DEFINE_UNQUOTED(MOZ_WINSDK_TARGETVER,0x$MOZ_WINSDK_TARGETVER)
|
AC_DEFINE_UNQUOTED(MOZ_WINSDK_TARGETVER,0x$MOZ_WINSDK_TARGETVER)
|
||||||
# Definitions matching sdkddkver.h
|
# Definitions matching sdkddkver.h
|
||||||
AC_DEFINE_UNQUOTED(MOZ_NTDDI_WIN7, 0x06010000)
|
AC_DEFINE_UNQUOTED(MOZ_NTDDI_WIN7, 0x06010000)
|
||||||
|
@ -8445,6 +8490,7 @@ AC_SUBST(MOZ_D3DX9_CAB)
|
||||||
AC_SUBST(MOZ_D3DCOMPILER_CAB)
|
AC_SUBST(MOZ_D3DCOMPILER_CAB)
|
||||||
AC_SUBST(MOZ_D3DX9_DLL)
|
AC_SUBST(MOZ_D3DX9_DLL)
|
||||||
AC_SUBST(MOZ_D3DCOMPILER_DLL)
|
AC_SUBST(MOZ_D3DCOMPILER_DLL)
|
||||||
|
AC_SUBST(MOZ_METRO)
|
||||||
|
|
||||||
AC_SUBST(MOZ_ANDROID_HISTORY)
|
AC_SUBST(MOZ_ANDROID_HISTORY)
|
||||||
AC_SUBST(MOZ_WEBSMS_BACKEND)
|
AC_SUBST(MOZ_WEBSMS_BACKEND)
|
||||||
|
|
|
@ -335,6 +335,8 @@ HAVE_ARM_SIMD= @HAVE_ARM_SIMD@
|
||||||
JS_SHARED_LIBRARY = @JS_SHARED_LIBRARY@
|
JS_SHARED_LIBRARY = @JS_SHARED_LIBRARY@
|
||||||
HAVE_LINUX_PERF_EVENT_H = @HAVE_LINUX_PERF_EVENT_H@
|
HAVE_LINUX_PERF_EVENT_H = @HAVE_LINUX_PERF_EVENT_H@
|
||||||
|
|
||||||
|
MOZ_METRO = @MOZ_METRO@
|
||||||
|
|
||||||
# We only want to do the pymake sanity on Windows, other os's can cope
|
# We only want to do the pymake sanity on Windows, other os's can cope
|
||||||
ifeq ($(HOST_OS_ARCH),WINNT)
|
ifeq ($(HOST_OS_ARCH),WINNT)
|
||||||
# Ensure invariants between GNU Make and pymake
|
# Ensure invariants between GNU Make and pymake
|
||||||
|
|
|
@ -663,25 +663,49 @@ fi
|
||||||
|
|
||||||
dnl Special win32 checks
|
dnl Special win32 checks
|
||||||
dnl ========================================================
|
dnl ========================================================
|
||||||
WINVER=502
|
|
||||||
dnl Target the Windows 7 SDK by default
|
# With win8, sdk target=602, WINVER=602
|
||||||
WINSDK_TARGETVER=601
|
MOZ_ARG_ENABLE_BOOL(metro,
|
||||||
|
[ --enable-metro Enable Windows Metro build targets],
|
||||||
|
MOZ_METRO=1,
|
||||||
|
MOZ_METRO=)
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
AC_DEFINE(MOZ_METRO)
|
||||||
|
# Target the Windows 8 Kit
|
||||||
|
WINSDK_TARGETVER=602
|
||||||
|
# Allow a higher api set
|
||||||
|
WINVER=602
|
||||||
|
else
|
||||||
|
# Target the Windows 7 SDK by default
|
||||||
|
WINSDK_TARGETVER=601
|
||||||
|
WINVER=502
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$MOZ_METRO"; then
|
||||||
|
case "$target" in
|
||||||
|
*-mingw*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_ERROR([Metro builds only valid on the windows platform.]);
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
MOZ_ARG_WITH_STRING(windows-version,
|
MOZ_ARG_WITH_STRING(windows-version,
|
||||||
[ --with-windows-version=WINSDK_TARGETVER
|
[ --with-windows-version=WINSDK_TARGETVER
|
||||||
Highest Windows version to target using this SDK
|
Windows SDK version to target. Lowest version
|
||||||
601: Windows 7],
|
currently allowed is 601, highest is 602],
|
||||||
WINSDK_TARGETVER=$withval)
|
WINSDK_TARGETVER=$withval)
|
||||||
|
|
||||||
|
# Currently only two sdk versions allowed, 601 and 602
|
||||||
case "$WINSDK_TARGETVER" in
|
case "$WINSDK_TARGETVER" in
|
||||||
601)
|
601|602)
|
||||||
MOZ_WINSDK_TARGETVER=0${WINSDK_TARGETVER}0000
|
MOZ_WINSDK_TARGETVER=0${WINSDK_TARGETVER}0000
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
AC_MSG_ERROR([Invalid value for --with-windows-version ($WINSDK_TARGETVER), must be 601]);
|
AC_MSG_ERROR([Invalid value for --with-windows-version ($WINSDK_TARGETVER)]);
|
||||||
;;
|
;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case "$target" in
|
case "$target" in
|
||||||
|
@ -4859,6 +4883,7 @@ AC_SUBST(COMPILE_CXXFLAGS)
|
||||||
AC_SUBST(LDFLAGS)
|
AC_SUBST(LDFLAGS)
|
||||||
AC_SUBST(LIBS)
|
AC_SUBST(LIBS)
|
||||||
AC_SUBST(CROSS_COMPILE)
|
AC_SUBST(CROSS_COMPILE)
|
||||||
|
AC_SUBST(MOZ_METRO)
|
||||||
|
|
||||||
AC_SUBST(HOST_CC)
|
AC_SUBST(HOST_CC)
|
||||||
AC_SUBST(HOST_CXX)
|
AC_SUBST(HOST_CXX)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче