diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-04-17 13:04:01 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-04-17 13:04:01 +0000 |
commit | 59241ad357c5b7b2a37b02dd32afa56544278278 (patch) | |
tree | 0b47f0c251f1b6abb14f8c2ec2e449951b56d1ee /main/xulrunner | |
parent | 1af39ef4e4efdc99e2c6102f6169a2a77c5ddfff (diff) | |
download | aports-59241ad357c5b7b2a37b02dd32afa56544278278.tar.bz2 aports-59241ad357c5b7b2a37b02dd32afa56544278278.tar.xz |
main/xulrunner: add missing patch
Diffstat (limited to 'main/xulrunner')
-rw-r--r-- | main/xulrunner/bug-947981.patch | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/main/xulrunner/bug-947981.patch b/main/xulrunner/bug-947981.patch new file mode 100644 index 0000000000..4eb6eae580 --- /dev/null +++ b/main/xulrunner/bug-947981.patch @@ -0,0 +1,72 @@ + +# HG changeset patch +# User Makoto Kato <m_kato@ga2.so-net.ne.jp> +# Date 1387329615 -32400 +# Node ID 82f8fd52a774837c84cc4d178e158ab2055e9a57 +# Parent 41a8213774080c318e8a6ba52a78a9c50e018f29 +Bug 947981 - broken --with-system-icu build. r=glandium + +diff --git a/configure.in b/configure.in +--- a/configure.in ++++ b/configure.in +@@ -3909,16 +3909,17 @@ MOZ_NATIVE_ICU= + MOZ_ARG_WITH_BOOL(system-icu, + [ --with-system-icu + Use system ICU (located with pkgconfig)], + MOZ_NATIVE_ICU=1) + + if test -n "$MOZ_NATIVE_ICU"; then + PKG_CHECK_MODULES(MOZ_ICU, icu-i18n >= 50.1) + MOZ_JS_STATIC_LIBS="$MOZ_JS_STATIC_LIBS $MOZ_ICU_LIBS" ++ MOZ_SHARED_ICU=1 + fi + + AC_SUBST(MOZ_NATIVE_ICU) + + dnl ======================================================== + dnl Java SDK support + dnl ======================================================== + +diff --git a/js/src/config/Makefile.in b/js/src/config/Makefile.in +--- a/js/src/config/Makefile.in ++++ b/js/src/config/Makefile.in +@@ -31,17 +31,16 @@ include $(topsrcdir)/config/rules.mk + + HOST_CFLAGS += -DUNICODE -D_UNICODE + + ifdef WRAP_SYSTEM_INCLUDES + export:: \ + $(call mkdir_deps,system_wrappers_js) \ + $(NULL) + $(PYTHON) -m mozbuild.action.preprocessor $(DEFINES) $(ACDEFINES) \ +- -DMOZ_NATIVE_ICU=$(MOZ_NATIVE_ICU) \ + $(srcdir)/system-headers | $(PERL) $(srcdir)/make-system-wrappers.pl system_wrappers_js + $(INSTALL) system_wrappers_js $(DIST) + + GARBAGE_DIRS += system_wrappers_js + endif + + GARBAGE += $(srcdir)/*.pyc *.pyc + +diff --git a/js/src/configure.in b/js/src/configure.in +--- a/js/src/configure.in ++++ b/js/src/configure.in +@@ -4160,16 +4160,17 @@ ICU_LIB_NAMES= + MOZ_NATIVE_ICU= + MOZ_ARG_WITH_BOOL(system-icu, + [ --with-system-icu + Use system ICU (located with pkgconfig)], + MOZ_NATIVE_ICU=1) + + if test -n "$MOZ_NATIVE_ICU"; then + PKG_CHECK_MODULES(MOZ_ICU, icu-i18n >= 50.1) ++ MOZ_SHARED_ICU=1 + fi + + MOZ_ARG_WITH_STRING(intl-api, + [ --with-intl-api, --with-intl-api=build, --without-intl-api + Determine the status of the ECMAScript Internationalization API. The first + (or lack of any of these) builds and exposes the API. The second builds it + but doesn't use ICU or expose the API to script. The third doesn't build + ICU at all.], + |