Update to firefox 27.0.1.
- See http://www.mozilla.org/en-US/firefox/27.0.1/releasenotes/ - Fixes MFSA 2014-01->13 - remove GStreamerLoader.cpp patch, merged in 927898 (or now useless) - remove patch-gfx_layers_BufferUnrotate_cpp, merged in 929439 - remove patch-ipc_chromium_src_base_debug_util_posix_cc, merged in 927810 (was p_psflags change in base) Note: firefox 28 is due in ~10 days, but is depending on a SQLite update in base, currently being worked on.
This commit is contained in:
parent
72c6700c7a
commit
f54b886d7a
@ -1,17 +1,16 @@
|
||||
# $OpenBSD: Makefile,v 1.246 2014/01/21 21:51:35 landry Exp $
|
||||
# $OpenBSD: Makefile,v 1.247 2014/03/10 20:53:29 landry Exp $
|
||||
|
||||
COMMENT = Mozilla web browser
|
||||
|
||||
# Don't forget to bump www/firefox-i18n after updates.
|
||||
# Don't forget to update devel/xulrunner/2.0 if patches changes.
|
||||
|
||||
MOZILLA_VERSION = 26.0
|
||||
MOZILLA_VERSION = 27.0.1
|
||||
MOZILLA_BRANCH = release
|
||||
MOZILLA_PROJECT = firefox
|
||||
MOZILLA_CODENAME = browser
|
||||
REVISION = 1
|
||||
|
||||
#MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla.org/${MOZILLA_PROJECT}/nightly/${MOZILLA_VERSION}-candidates/build2/source/
|
||||
#MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla.org/${MOZILLA_PROJECT}/nightly/${MOZILLA_VERSION}-candidates/build1/source/
|
||||
SO_VERSION = 45.0
|
||||
# NOTE: Must bump minor version if any shlib's are removed from the
|
||||
# components dir to avoid pkg_add -r issues.
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (mozilla/firefox-26.0.source.tar.bz2) = McT7J5LfY65FDjUDgKXhjPHFFIcBGp2gtsxL/7admBI=
|
||||
SIZE (mozilla/firefox-26.0.source.tar.bz2) = 127526380
|
||||
SHA256 (mozilla/firefox-27.0.1.source.tar.bz2) = dgV6w2X+YLUZFejbopYFRvs6YKK1dHIHqMk25PwoDY8=
|
||||
SIZE (mozilla/firefox-27.0.1.source.tar.bz2) = 129249507
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-browser_app_profile_firefox_js,v 1.26 2013/12/12 19:53:19 landry Exp $
|
||||
--- browser/app/profile/firefox.js.orig Tue Dec 3 03:31:32 2013
|
||||
+++ browser/app/profile/firefox.js Tue Dec 3 18:46:15 2013
|
||||
@@ -770,8 +770,8 @@ pref("gecko.handlerService.schemes.ircs.3.uriTemplate"
|
||||
$OpenBSD: patch-browser_app_profile_firefox_js,v 1.27 2014/03/10 20:53:29 landry Exp $
|
||||
--- browser/app/profile/firefox.js.orig Tue Dec 17 03:48:39 2013
|
||||
+++ browser/app/profile/firefox.js Wed Dec 18 07:27:01 2013
|
||||
@@ -800,8 +800,8 @@ pref("gecko.handlerService.schemes.ircs.3.uriTemplate"
|
||||
pref("gecko.handlerService.allowRegisterFromDifferentHost", false);
|
||||
|
||||
#ifdef MOZ_SAFE_BROWSING
|
||||
|
@ -1,8 +1,8 @@
|
||||
$OpenBSD: patch-browser_installer_Makefile_in,v 1.8 2013/12/12 19:53:19 landry Exp $
|
||||
$OpenBSD: patch-browser_installer_Makefile_in,v 1.9 2014/03/10 20:53:29 landry Exp $
|
||||
Don't install the sdk / headers etc
|
||||
--- browser/installer/Makefile.in.orig Tue Oct 29 07:04:17 2013
|
||||
+++ browser/installer/Makefile.in Fri Nov 1 10:48:16 2013
|
||||
@@ -90,10 +90,6 @@ MOZ_PKG_MAC_ICON=branding/disk.icns
|
||||
--- browser/installer/Makefile.in.orig Tue Dec 17 03:48:43 2013
|
||||
+++ browser/installer/Makefile.in Wed Dec 18 07:27:01 2013
|
||||
@@ -91,10 +91,6 @@ MOZ_PKG_MAC_ICON=branding/disk.icns
|
||||
MOZ_PKG_MAC_EXTRA=--symlink "/Applications:/ "
|
||||
endif
|
||||
|
||||
|
@ -1,22 +0,0 @@
|
||||
$OpenBSD: patch-content_media_gstreamer_GStreamerLoader_cpp,v 1.1 2013/10/31 07:58:25 landry Exp $
|
||||
http://bugzilla.mozilla.org/927898
|
||||
Remove in 27
|
||||
--- content/media/gstreamer/GStreamerLoader.cpp.orig Wed Oct 30 12:16:08 2013
|
||||
+++ content/media/gstreamer/GStreamerLoader.cpp Wed Oct 30 12:17:01 2013
|
||||
@@ -57,13 +57,13 @@ load_gstreamer()
|
||||
if (major == GST_VERSION_MAJOR && minor == GST_VERSION_MINOR) {
|
||||
gstreamerLib = RTLD_DEFAULT;
|
||||
} else {
|
||||
- gstreamerLib = dlopen("libgstreamer-0.10.so.0", RTLD_NOW | RTLD_LOCAL);
|
||||
+ gstreamerLib = dlopen("libgstreamer-0.10.so", RTLD_NOW | RTLD_LOCAL);
|
||||
}
|
||||
|
||||
void *handles[] = {
|
||||
gstreamerLib,
|
||||
- dlopen("libgstapp-0.10.so.0", RTLD_NOW | RTLD_LOCAL),
|
||||
- dlopen("libgstvideo-0.10.so.0", RTLD_NOW | RTLD_LOCAL)
|
||||
+ dlopen("libgstapp-0.10.so", RTLD_NOW | RTLD_LOCAL),
|
||||
+ dlopen("libgstvideo-0.10.so", RTLD_NOW | RTLD_LOCAL)
|
||||
};
|
||||
|
||||
for (size_t i = 0; i < sizeof(handles) / sizeof(handles[0]); i++) {
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-gfx_layers_BufferUnrotate_cpp,v 1.1 2013/12/25 08:21:39 landry Exp $
|
||||
https://hg.mozilla.org/mozilla-central/rev/0787526e0ed6 needed on macppc/sparc64
|
||||
--- gfx/layers/BufferUnrotate.cpp.orig Wed Dec 25 01:14:05 2013
|
||||
+++ gfx/layers/BufferUnrotate.cpp Wed Dec 25 01:14:15 2013
|
||||
@@ -8,6 +8,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
|
||||
void BufferUnrotate(uint8_t* aBuffer, int aByteWidth, int aHeight,
|
||||
int aByteStride, int aXBoundary, int aYBoundary)
|
@ -1,16 +0,0 @@
|
||||
$OpenBSD: patch-ipc_chromium_src_base_debug_util_posix_cc,v 1.5 2013/10/31 07:58:25 landry Exp $
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=927810
|
||||
https://hg.mozilla.org/integration/mozilla-inbound/rev/4c0ebfb35fc3
|
||||
Remove in 27
|
||||
--- ipc/chromium/src/base/debug_util_posix.cc.orig Wed Sep 25 11:07:49 2013
|
||||
+++ ipc/chromium/src/base/debug_util_posix.cc Wed Sep 25 12:33:02 2013
|
||||
@@ -50,6 +50,9 @@
|
||||
#define KP_FLAGS kp_flags
|
||||
#elif defined(OS_FREEBSD)
|
||||
#define KP_FLAGS ki_flag
|
||||
+#elif defined(OS_OPENBSD) && !defined(_P_TRACED)
|
||||
+#define KP_FLAGS p_psflags
|
||||
+#define P_TRACED PS_TRACED
|
||||
#else
|
||||
#define KP_FLAGS p_flag
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user