ff4e0c3f66
- see http://www.mozilla.org/en-US/firefox/12.0/releasenotes/ for details - two patches moved (patch-widget_src_xpwidgets_nsPrintSettingsImpl_cpp and patch-widget_src_gtk2_Makefile_in) - add two new patches for bug #691898 (patch-js_src_jsapi_cpp and /patch-js_src_jsprvtd_h) - add patch-gfx_thebes_gfxPlatform_cpp to workaround regression introduced in bug #715658, which prevents one from building against systemwide cairo. - patch-extensions_auth_nsAuthGSSAPI_cpp from bug #667325 got merged - patch-js_src_js-config_h_in and patch-js_src_jscpucfg_h from #714312 got merged - patch-ipc_chromium_src_base_dir_reader_posix_ -from #714315 got merged
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
$OpenBSD: patch-js_src_configure_in,v 1.12 2012/04/30 15:28:42 landry Exp $
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=648721
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=589754
|
|
chunk 4 : https://bugzilla.mozilla.org/show_bug.cgi?id=714312
|
|
--- js/src/configure.in.orig Wed Apr 11 15:55:00 2012
|
|
+++ js/src/configure.in Wed Apr 18 22:24:28 2012
|
|
@@ -2534,7 +2534,12 @@ ia64*-hpux*)
|
|
;;
|
|
|
|
*-openbsd*)
|
|
- DLL_SUFFIX=".so.1.0"
|
|
+ if test "$SO_VERSION"; then
|
|
+ DLL_SUFFIX=".so.$SO_VERSION"
|
|
+ else
|
|
+ DLL_SUFFIX=".so.1.0"
|
|
+ fi
|
|
+ MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib -Wl,-rpath-link,$(if $(X11BASE),$(X11BASE),/usr/X11R6)/lib'
|
|
DSO_CFLAGS=''
|
|
DSO_PIC_CFLAGS='-fPIC'
|
|
DSO_LDOPTS='-shared -fPIC'
|
|
@@ -2805,7 +2810,7 @@ arm*-*)
|
|
AC_DEFINE(JS_CPU_ARM)
|
|
AC_DEFINE(JS_NUNBOX32)
|
|
;;
|
|
-sparc*-*)
|
|
+sparc-*)
|
|
ENABLE_METHODJIT=1
|
|
ENABLE_MONOIC=1
|
|
ENABLE_POLYIC=1
|
|
@@ -2820,6 +2825,10 @@ mips*-*)
|
|
ENABLE_METHODJIT_TYPED_ARRAY=1
|
|
AC_DEFINE(JS_CPU_MIPS)
|
|
AC_DEFINE(JS_NUNBOX32)
|
|
+ ;;
|
|
+sparc64-*)
|
|
+ AC_DEFINE(AVMPLUS_SPARC)
|
|
+ AC_DEFINE(AVMPLUS_64BIT)
|
|
;;
|
|
esac
|
|
|