- see http://www.seamonkey-project.org/releases/seamonkey2.14/ for details. - tidy up WANTLIB/CONFIGURE_ARGS - enable the gio/libnotify interaction. If libnotify is found at runtime, a popup will show incoming messages notification/download complete. - install an icon in pixmaps/ for the desktop file, like in ffx/tb - fix desktop file Exec line so that an argument can be passed to seamonkey - remove patch-mozilla_browser_app_profile_firefox_js, this is spar^Wseamonkey! - for the other patches removed/added, same comments as for ffx apply
29 lines
856 B
Plaintext
29 lines
856 B
Plaintext
$OpenBSD: patch-mozilla_js_src_configure_in,v 1.13 2012/11/24 10:36:20 landry Exp $
|
|
--- mozilla/js/src/configure.in.orig Sat Oct 20 23:16:46 2012
|
|
+++ mozilla/js/src/configure.in Sun Oct 21 12:22:08 2012
|
|
@@ -1912,7 +1912,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'
|
|
@@ -2200,6 +2205,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
|
|
|