617089342c
- see http://www.mozilla.org/en-US/firefox/15.0/releasenotes/ - add -Os hack to fix a relocation error when linking on ppc (as was done in tb since 10..) - garbage collect nsSound.cpp, the original one uses libcanberra properly and thus sndio. - remove patch from #750620, merged upstream (mfbt/double-conversion) - remove patches from #747257, merged upstream (gstreamer fix) - remove patches from #691898, merged upstream (yarr jit ppc)
29 lines
659 B
Plaintext
29 lines
659 B
Plaintext
$OpenBSD: patch-build_unix_mozilla_in,v 1.3 2012/09/01 13:56:45 landry Exp $
|
|
--- build/unix/mozilla.in.orig Wed Aug 15 07:47:07 2012
|
|
+++ build/unix/mozilla.in Sun Aug 19 13:30:25 2012
|
|
@@ -18,6 +18,11 @@
|
|
#uncomment for debugging
|
|
#set -x
|
|
|
|
+LIMIT=`ulimit -n`
|
|
+if [ $LIMIT -lt 128 -a "${LIMIT}" != "unlimited" ]; then
|
|
+ ulimit -Sn 128
|
|
+fi
|
|
+
|
|
moz_libdir=%MOZAPPDIR%
|
|
|
|
# Use run-mozilla.sh in the current dir if it exists
|
|
@@ -99,6 +104,12 @@ do
|
|
;;
|
|
esac
|
|
done
|
|
+
|
|
+if [ `${X11BASE}/bin/fc-list | wc -l` -eq 0 ]; then
|
|
+ export GDK_USE_XFT=0
|
|
+fi
|
|
+
|
|
+export MOZ_PLUGIN_PATH=${MOZ_PLUGIN_PATH:=${LOCALBASE}/lib/mozilla-plugins}
|
|
|
|
if [ $debugging = 1 ]
|
|
then
|