author | Robert Strong <robert.bugzilla@gmail.com> |
Mon, 14 Jan 2013 11:33:54 -0800 | |
changeset 118786 | 0cc898fd66fcdc08ae446b27c14fb8bb8927adb3 |
parent 118785 | 53dd117b51f2603e2e14e75f0ce983376c2092eb |
child 118787 | 2c7287304555227fdacf10a6d8113d526aaae93b |
push id | 24180 |
push user | emorley@mozilla.com |
push date | Tue, 15 Jan 2013 22:58:27 +0000 |
treeherder | mozilla-central@72e34ce7fd92 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | glandium |
bugs | 571381 |
milestone | 21.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
configure.in | file | annotate | diff | comparison | revisions |
--- a/configure.in +++ b/configure.in @@ -6231,18 +6231,18 @@ dnl ==================================== dnl Installer dnl ======================================================== dnl Abort Windows build if the required major version and dnl minimum minor version of Unicode NSIS isn't in the path dnl (unless in case of cross compiling, for which Unicode dnl is not yet sufficient). if test "$OS_ARCH" = "WINNT"; then REQ_NSIS_MAJOR_VER=2 - MIN_NSIS_MINOR_VER=33 - MOZ_PATH_PROGS(MAKENSISU, $MAKENSISU makensisu-2.46 makensisu makensis) + MIN_NSIS_MINOR_VER=46 + MOZ_PATH_PROGS(MAKENSISU, $MAKENSISU makensisu-2.46 makensis) if test -n "$MAKENSISU" -a "$MAKENSISU" != ":"; then AC_MSG_RESULT([yes]) changequote(,) MAKENSISU_VER=`"$MAKENSISU" -version 2>/dev/null | sed -e '/-Unicode/!s/.*//g' -e 's/^v\([0-9]\+\.[0-9]\+\)\-Unicode$/\1/g'` changequote([,]) if test ! "$MAKENSISU_VER" = ""; then MAKENSISU_MAJOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $1 }'` MAKENSISU_MINOR_VER=`echo $MAKENSISU_VER | $AWK -F\. '{ print $2 }'`