openbsd-ports/www/seamonkey/patches/patch-mozilla_js_src_configure_in
landry 03dfdc6123 Update to seamonkey 2.13/enigmail 1.4.5/lightning 1.8b1.
- see http://www.seamonkey-project.org/releases/seamonkey2.13/ for details
- remove patch-mozilla_build_unix_mozilla_in, useless since bin/seamonkey
is not a script anymore since a while
- remove patch-mozilla_build_unix_run-mozilla_sh, seamonkey can be directly
debugged in gdb now. update README accordingly
- fix plugin path in README
2012-10-10 21:03:40 +00:00

29 lines
856 B
Plaintext

$OpenBSD: patch-mozilla_js_src_configure_in,v 1.12 2012/10/10 21:03:40 landry Exp $
--- mozilla/js/src/configure.in.orig Fri Aug 31 07:56:25 2012
+++ mozilla/js/src/configure.in Sun Sep 2 12:45:41 2012
@@ -1983,7 +1983,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'
@@ -2271,6 +2276,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