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
This commit is contained in:
landry 2012-10-10 21:03:40 +00:00
parent d4647015b4
commit 03dfdc6123
17 changed files with 73 additions and 140 deletions

View File

@ -1,25 +1,22 @@
# $OpenBSD: Makefile,v 1.111 2012/10/06 07:55:55 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.112 2012/10/10 21:03:40 landry Exp $
COMMENT-main = Mozilla application suite
COMMENT-lightning = Mozilla Seamonkey calendar extension
COMMENT-enigmail = Mozilla Seamonkey GnuPG extension
BROKEN-sparc64 = https://bugzilla.mozilla.org/show_bug.cgi?id=577056
MOZILLA_VERSION= 2.12.1
MOZILLA_VERSION= 2.13
MOZILLA_BRANCH = release
MOZILLA_PROJECT = seamonkey
MOZILLA_CODENAME = suite
MULTI_PACKAGES = -main -lightning -enigmail
PKGNAME-main = ${PKGNAME}
REVISION-main = 2
PKGNAME-lightning = lightning-seamonkey-1.7beta1
ENIG_V = 1.4.4
PKGNAME-lightning = lightning-seamonkey-1.8beta1
ENIG_V = 1.4.5
PKGNAME-enigmail = enigmail-seamonkey-${ENIG_V}
EPOCH-lightning = 0
REVISION-lightning = 0
EPOCH-enigmail = 0
REVISION-enigmail = 0
SO_VERSION= 26.0
# NOTE: Must bump minor version if any shlib's are removed from the
@ -34,6 +31,7 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
#MASTER_SITES= ftp://ftp.mozilla.org/pub/mozilla.org/${MOZILLA_PROJECT}/nightly/${MOZILLA_VERSION}-candidates/build1/source/
MASTER_SITES0 = http://www.mozilla-enigmail.org/download/source/
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} \
@ -80,7 +78,6 @@ CONFIGURE_ENV += MOZ_DEBUG_FLAGS="-Os"
ALL_TARGET= default
MOZILLA_AUTOCONF_DIRS = ldap/sdks/c-sdk mozilla mozilla/js/src
MOZILLA_SUBST_FILES += configure
ENIGMAIL_DIR = mailnews/extensions/enigmail

View File

@ -1,4 +1,4 @@
SHA256 (mozilla/enigmail-1.4.4.tar.gz) = 7GK7cBlo9yrTVUZmATLm5H1OvmhN8dJ/xhXLkBCiA7g=
SHA256 (mozilla/seamonkey-2.12.1.source.tar.bz2) = fIFvumXM0PQjNAnu4FzFNMd/y99G9J6boX04KncnjmI=
SIZE (mozilla/enigmail-1.4.4.tar.gz) = 1269444
SIZE (mozilla/seamonkey-2.12.1.source.tar.bz2) = 106859727
SHA256 (mozilla/enigmail-1.4.5.tar.gz) = +llJH7oh3pQUoAOTM0kHSo7BgzodZMrJ8Kn3Ag7WwCA=
SHA256 (mozilla/seamonkey-2.13.source.tar.bz2) = 1IAWvH3+68iCGJR1cEvQUMSk/d1CH8QrMhdJszsT0LE=
SIZE (mozilla/enigmail-1.4.5.tar.gz) = 1269207
SIZE (mozilla/seamonkey-2.13.source.tar.bz2) = 112149304

View File

@ -1,8 +1,8 @@
$OpenBSD: patch-configure_in,v 1.15 2012/09/01 14:10:03 landry Exp $
$OpenBSD: patch-configure_in,v 1.16 2012/10/10 21:03:40 landry Exp $
Force-disable gconf, configure arg not used
--- configure.in.orig Mon Aug 27 06:44:23 2012
+++ configure.in Sat Sep 1 02:00:10 2012
@@ -4940,14 +4940,7 @@ dnl ==================================================
--- configure.in.orig Fri Aug 31 07:51:01 2012
+++ configure.in Sun Sep 2 12:45:40 2012
@@ -4887,14 +4887,7 @@ dnl ==================================================
# The GNOME component is built if one of
# gnome-vfs, gio, gconf or libnotify is available.

View File

@ -1,5 +1,6 @@
$OpenBSD: patch-ldap_sdks_c-sdk_configure_in,v 1.4 2012/04/30 15:38:09 landry Exp $
$OpenBSD: patch-ldap_sdks_c-sdk_configure_in,v 1.5 2012/10/10 21:03:40 landry Exp $
Fix typo.. doh
https://bugzilla.mozilla.org/show_bug.cgi?id=720373
--- ldap/sdks/c-sdk/configure.in.orig Wed Apr 25 19:45:57 2012
+++ ldap/sdks/c-sdk/configure.in Wed Apr 25 19:46:16 2012
@@ -1854,9 +1854,9 @@ mips-sony-newsos*)

View File

@ -1,28 +0,0 @@
$OpenBSD: patch-mozilla_build_unix_mozilla_in,v 1.7 2012/09/01 14:10:03 landry Exp $
--- mozilla/build/unix/mozilla.in.orig Mon Aug 27 06:49:04 2012
+++ mozilla/build/unix/mozilla.in Sat Sep 1 02:00:11 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

View File

@ -1,31 +0,0 @@
$OpenBSD: patch-mozilla_build_unix_run-mozilla_sh,v 1.7 2012/09/01 14:10:03 landry Exp $
help finding our debugger
--- mozilla/build/unix/run-mozilla.sh.orig Mon Aug 27 06:49:04 2012
+++ mozilla/build/unix/run-mozilla.sh Sat Sep 1 02:00:11 2012
@@ -71,25 +71,7 @@ moz_test_binary()
##########################################################################
moz_get_debugger()
{
- debuggers="ddd gdb dbx bdb native-gdb"
- debugger="notfound"
- done="no"
- for d in $debuggers
- do
- moz_test_binary /bin/which
- if [ $? -eq 1 ]
- then
- dpath=`which ${d}`
- else
- dpath=`LC_MESSAGES=C type ${d} | awk '{print $3;}' | sed -e 's/\.$//'`
- fi
- if [ -x "$dpath" ]
- then
- debugger=$dpath
- break
- fi
- done
- echo $debugger
+ echo "/usr/bin/gdb"
return 0
}
##########################################################################

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-mozilla_gfx_thebes_gfxPlatform_cpp,v 1.4 2012/09/01 14:10:03 landry Exp $
--- mozilla/gfx/thebes/gfxPlatform.cpp.orig Mon Aug 27 06:49:13 2012
+++ mozilla/gfx/thebes/gfxPlatform.cpp Sat Sep 1 02:00:11 2012
@@ -443,6 +443,7 @@ void SourceBufferDestroy(void *srcBuffer)
$OpenBSD: patch-mozilla_gfx_thebes_gfxPlatform_cpp,v 1.5 2012/10/10 21:03:40 landry Exp $
--- mozilla/gfx/thebes/gfxPlatform.cpp.orig Fri Aug 31 07:56:24 2012
+++ mozilla/gfx/thebes/gfxPlatform.cpp Sun Sep 2 12:45:41 2012
@@ -496,6 +496,7 @@ void SourceBufferDestroy(void *srcBuffer)
static_cast<SourceSurface*>(srcBuffer)->Release();
}
@ -9,7 +9,7 @@ $OpenBSD: patch-mozilla_gfx_thebes_gfxPlatform_cpp,v 1.4 2012/09/01 14:10:03 lan
void SourceSnapshotDetached(cairo_surface_t *nullSurf)
{
gfxImageSurface* origSurf =
@@ -450,6 +451,7 @@ void SourceSnapshotDetached(cairo_surface_t *nullSurf)
@@ -503,6 +504,7 @@ void SourceSnapshotDetached(cairo_surface_t *nullSurf)
origSurf->SetData(&kSourceSurface, NULL, NULL);
}
@ -17,7 +17,7 @@ $OpenBSD: patch-mozilla_gfx_thebes_gfxPlatform_cpp,v 1.4 2012/09/01 14:10:03 lan
RefPtr<SourceSurface>
gfxPlatform::GetSourceSurfaceForSurface(DrawTarget *aTarget, gfxASurface *aSurface)
@@ -544,6 +546,7 @@ gfxPlatform::GetSourceSurfaceForSurface(DrawTarget *aT
@@ -597,6 +599,7 @@ gfxPlatform::GetSourceSurfaceForSurface(DrawTarget *aT
}
@ -25,7 +25,7 @@ $OpenBSD: patch-mozilla_gfx_thebes_gfxPlatform_cpp,v 1.4 2012/09/01 14:10:03 lan
cairo_surface_t *nullSurf =
cairo_null_surface_create(CAIRO_CONTENT_COLOR_ALPHA);
cairo_surface_set_user_data(nullSurf,
@@ -552,6 +555,7 @@ gfxPlatform::GetSourceSurfaceForSurface(DrawTarget *aT
@@ -605,6 +608,7 @@ gfxPlatform::GetSourceSurfaceForSurface(DrawTarget *aT
NULL);
cairo_surface_attach_snapshot(imgSurface->CairoSurface(), nullSurf, SourceSnapshotDetached);
cairo_surface_destroy(nullSurf);

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-mozilla_js_src_configure_in,v 1.11 2012/09/01 14:10:03 landry Exp $
--- mozilla/js/src/configure.in.orig Mon Aug 27 06:49:15 2012
+++ mozilla/js/src/configure.in Sat Sep 1 02:00:11 2012
@@ -2300,7 +2300,12 @@ ia64*-hpux*)
$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*)
@ -15,7 +15,7 @@ $OpenBSD: patch-mozilla_js_src_configure_in,v 1.11 2012/09/01 14:10:03 landry Ex
DSO_CFLAGS=''
DSO_PIC_CFLAGS='-fPIC'
DSO_LDOPTS='-shared -fPIC'
@@ -2588,6 +2593,10 @@ mips*-*)
@@ -2271,6 +2276,10 @@ mips*-*)
ENABLE_METHODJIT_TYPED_ARRAY=1
AC_DEFINE(JS_CPU_MIPS)
AC_DEFINE(JS_NUNBOX32)

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-mozilla_netwerk_base_src_nsSocketTransportService2_cpp,v 1.4 2012/09/01 14:10:03 landry Exp $
--- mozilla/netwerk/base/src/nsSocketTransportService2.cpp.orig Mon Aug 27 06:49:27 2012
+++ mozilla/netwerk/base/src/nsSocketTransportService2.cpp Sat Sep 1 02:00:14 2012
$OpenBSD: patch-mozilla_netwerk_base_src_nsSocketTransportService2_cpp,v 1.5 2012/10/10 21:03:40 landry Exp $
--- mozilla/netwerk/base/src/nsSocketTransportService2.cpp.orig Fri Aug 31 07:56:36 2012
+++ mozilla/netwerk/base/src/nsSocketTransportService2.cpp Sun Sep 2 12:45:41 2012
@@ -21,14 +21,6 @@
#include "mozilla/FunctionTimer.h"
@ -16,8 +16,8 @@ $OpenBSD: patch-mozilla_netwerk_base_src_nsSocketTransportService2_cpp,v 1.4 201
using namespace mozilla;
#if defined(PR_LOGGING)
@@ -584,8 +576,6 @@ nsSocketTransportService::Run()
{
@@ -586,8 +578,6 @@ nsSocketTransportService::Run()
SOCKET_LOG(("STS thread init\n"));
- psm::InitializeSSLServerCertVerificationThreads();
@ -25,7 +25,7 @@ $OpenBSD: patch-mozilla_netwerk_base_src_nsSocketTransportService2_cpp,v 1.4 201
gSocketThread = PR_GetCurrentThread();
// add thread event to poll list (mThreadEvent may be NULL)
@@ -644,8 +634,6 @@ nsSocketTransportService::Run()
@@ -646,8 +636,6 @@ nsSocketTransportService::Run()
NS_ProcessPendingEvents(thread);
gSocketThread = nsnull;

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-mozilla_security_manager_ssl_src_SSLServerCertVerification_cpp,v 1.4 2012/09/01 14:10:03 landry Exp $
--- mozilla/security/manager/ssl/src/SSLServerCertVerification.cpp.orig Mon Aug 27 06:49:28 2012
+++ mozilla/security/manager/ssl/src/SSLServerCertVerification.cpp Sat Sep 1 02:00:14 2012
$OpenBSD: patch-mozilla_security_manager_ssl_src_SSLServerCertVerification_cpp,v 1.5 2012/10/10 21:03:40 landry Exp $
--- mozilla/security/manager/ssl/src/SSLServerCertVerification.cpp.orig Fri Aug 31 07:56:37 2012
+++ mozilla/security/manager/ssl/src/SSLServerCertVerification.cpp Sun Sep 2 12:45:41 2012
@@ -128,23 +128,25 @@ NS_DEFINE_CID(kNSSComponentCID, NS_NSSCOMPONENT_CID);
NSSCleanupAutoPtrClass(CERTCertificate, CERT_DestroyCertificate)
NSSCleanupAutoPtrClass_WithParam(PRArenaPool, PORT_FreeArena, FalseParam, false)
@ -37,7 +37,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_SSLServerCertVerification_cpp,v
// TODO: tuning, make parameters preferences
// XXX: instantiate nsThreadPool directly, to make this more bulletproof.
// Currently, the nsThreadPool.h header isn't exported for us to do so.
@@ -172,10 +174,19 @@ InitializeSSLServerCertVerificationThreads()
@@ -173,10 +175,19 @@ InitializeSSLServerCertVerificationThreads()
// nsNSSShutdownPreventionLock where needed (not here) to prevent that.
void StopSSLServerCertVerificationThreads()
{

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/09/01 14:10:03 landry Exp $
--- mozilla/security/manager/ssl/src/nsNSSComponent.cpp.orig Mon Aug 27 06:49:28 2012
+++ mozilla/security/manager/ssl/src/nsNSSComponent.cpp Sat Sep 1 02:00:15 2012
$OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.12 2012/10/10 21:03:40 landry Exp $
--- mozilla/security/manager/ssl/src/nsNSSComponent.cpp.orig Fri Aug 31 07:56:37 2012
+++ mozilla/security/manager/ssl/src/nsNSSComponent.cpp Sun Sep 2 12:48:01 2012
@@ -71,6 +71,7 @@
#include "secerr.h"
#include "sslerr.h"
@ -18,14 +18,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
}
void
@@ -363,21 +366,20 @@ nsNSSComponent::createBackgroundThreads()
{
NS_ASSERTION(mCertVerificationThread == nsnull,
"Cert verification thread already created.");
-
mCertVerificationThread = new nsCertVerificationThread;
nsresult rv = mCertVerificationThread->startThread();
if (NS_FAILED(rv)) {
@@ -372,14 +375,14 @@ nsNSSComponent::createBackgroundThreads()
delete mCertVerificationThread;
mCertVerificationThread = nsnull;
}
@ -42,7 +35,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
if (mUpdateTimerInitialized) {
{
MutexAutoLock lock(mCrlTimerLock);
@@ -806,7 +808,7 @@ nsNSSComponent::InstallLoadableRoots()
@@ -808,7 +811,7 @@ nsNSSComponent::InstallLoadableRoots()
if (!possible_ckbi_locations[il])
{
@ -51,7 +44,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
}
else
{
@@ -1869,6 +1871,8 @@ nsNSSComponent::InitializeNSS(bool showWarningBox)
@@ -1871,6 +1874,8 @@ nsNSSComponent::InitializeNSS(bool showWarningBox)
LaunchSmartCardThreads();
@ -60,7 +53,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("NSS Initialization done\n"));
}
}
@@ -2012,16 +2016,6 @@ nsNSSComponent::Init()
@@ -2014,16 +2019,6 @@ nsNSSComponent::Init()
if (mClientAuthRememberService)
mClientAuthRememberService->Init();
@ -77,7 +70,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
InitializeCRLUpdateTimer();
RegisterPSMContentListener();
@@ -2236,6 +2230,7 @@ nsNSSComponent::Observe(nsISupports *aSubject, const c
@@ -2238,6 +2233,7 @@ nsNSSComponent::Observe(nsISupports *aSubject, const c
DoProfileChangeTeardown(aSubject);
}
else if (nsCRT::strcmp(aTopic, PROFILE_CHANGE_TEARDOWN_VETO_TOPIC) == 0) {
@ -85,7 +78,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
mShutdownObjectList->allowUI();
}
else if (nsCRT::strcmp(aTopic, PROFILE_BEFORE_CHANGE_TOPIC) == 0) {
@@ -2283,6 +2278,7 @@ nsNSSComponent::Observe(nsISupports *aSubject, const c
@@ -2285,6 +2281,7 @@ nsNSSComponent::Observe(nsISupports *aSubject, const c
InitializeCRLUpdateTimer();
}
else if (nsCRT::strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID) == 0) {
@ -93,7 +86,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
PR_LOG(gPIPNSSLog, PR_LOG_DEBUG, ("nsNSSComponent: XPCom shutdown observed\n"));
@@ -2573,6 +2569,9 @@ nsNSSComponent::DoProfileChangeNetTeardown()
@@ -2575,6 +2572,9 @@ nsNSSComponent::DoProfileChangeNetTeardown()
void
nsNSSComponent::DoProfileChangeTeardown(nsISupports* aSubject)
{
@ -103,7 +96,7 @@ $OpenBSD: patch-mozilla_security_manager_ssl_src_nsNSSComponent_cpp,v 1.11 2012/
bool callVeto = false;
if (!mShutdownObjectList->ifPossibleDisallowUI()) {
@@ -2626,9 +2625,6 @@ nsNSSComponent::DoProfileBeforeChange(nsISupports* aSu
@@ -2628,9 +2628,6 @@ nsNSSComponent::DoProfileBeforeChange(nsISupports* aSu
void
nsNSSComponent::DoProfileChangeNetRestore()
{

View File

@ -1,8 +1,8 @@
$OpenBSD: patch-mozilla_storage_src_mozStorageConnection_cpp,v 1.10 2012/09/01 14:10:03 landry Exp $
$OpenBSD: patch-mozilla_storage_src_mozStorageConnection_cpp,v 1.11 2012/10/10 21:03:40 landry Exp $
force the use of secure_delete instead of using internal sqlite copy
--- mozilla/storage/src/mozStorageConnection.cpp.orig Mon Aug 27 06:49:30 2012
+++ mozilla/storage/src/mozStorageConnection.cpp Sat Sep 1 02:00:15 2012
@@ -663,6 +663,13 @@ Connection::initialize(nsIFile *aDatabaseFile,
--- mozilla/storage/src/mozStorageConnection.cpp.orig Fri Aug 31 07:56:38 2012
+++ mozilla/storage/src/mozStorageConnection.cpp Sun Sep 2 12:45:42 2012
@@ -551,6 +551,13 @@ Connection::initialize(nsIFile *aDatabaseFile,
return convertResultCode(srv);
}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp,v 1.8 2012/09/01 14:10:03 landry Exp $
--- mozilla/toolkit/components/downloads/nsDownloadManager.cpp.orig Mon Aug 27 06:49:30 2012
+++ mozilla/toolkit/components/downloads/nsDownloadManager.cpp Sat Sep 1 02:00:15 2012
@@ -1165,7 +1165,7 @@ nsDownloadManager::GetDefaultDownloadsDirectory(nsILoc
$OpenBSD: patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp,v 1.9 2012/10/10 21:03:40 landry Exp $
--- mozilla/toolkit/components/downloads/nsDownloadManager.cpp.orig Fri Aug 31 07:56:38 2012
+++ mozilla/toolkit/components/downloads/nsDownloadManager.cpp Sun Sep 2 12:45:42 2012
@@ -1165,7 +1165,7 @@ nsDownloadManager::GetDefaultDownloadsDirectory(nsIFil
rv = downloadDir->Exists(&exists);
NS_ENSURE_SUCCESS(rv, rv);
if (!exists) {
@ -10,7 +10,7 @@ $OpenBSD: patch-mozilla_toolkit_components_downloads_nsDownloadManager_cpp,v 1.8
NS_ENSURE_SUCCESS(rv, rv);
}
}
@@ -1273,7 +1273,7 @@ nsDownloadManager::GetUserDownloadsDirectory(nsILocalF
@@ -1273,7 +1273,7 @@ nsDownloadManager::GetUserDownloadsDirectory(nsIFile *
(void)customDirectory->Exists(&exists);
if (!exists) {

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-mozilla_toolkit_library_Makefile_in,v 1.11 2012/09/01 14:10:03 landry Exp $
--- mozilla/toolkit/library/Makefile.in.orig Mon Aug 27 06:49:31 2012
+++ mozilla/toolkit/library/Makefile.in Sat Sep 1 02:00:15 2012
@@ -464,6 +464,12 @@ OS_LIBS += \
$OpenBSD: patch-mozilla_toolkit_library_Makefile_in,v 1.12 2012/10/10 21:03:40 landry Exp $
--- mozilla/toolkit/library/Makefile.in.orig Fri Aug 31 07:56:39 2012
+++ mozilla/toolkit/library/Makefile.in Sun Sep 2 12:45:42 2012
@@ -455,6 +455,12 @@ OS_LIBS += \
$(NULL)
endif
@ -14,9 +14,9 @@ $OpenBSD: patch-mozilla_toolkit_library_Makefile_in,v 1.11 2012/09/01 14:10:03 l
ifeq ($(OS_ARCH),Darwin)
ifdef MOZ_SYDNEYAUDIO
OS_LIBS += \
@@ -475,12 +481,6 @@ OS_LIBS += \
-framework Foundation \
@@ -467,12 +473,6 @@ OS_LIBS += \
-framework AppKit \
-framework Security \
$(NULL)
-endif
-endif

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-mozilla_toolkit_xre_nsXREDirProvider_cpp,v 1.12 2012/09/01 14:10:03 landry Exp $
--- mozilla/toolkit/xre/nsXREDirProvider.cpp.orig Mon Aug 27 06:49:33 2012
+++ mozilla/toolkit/xre/nsXREDirProvider.cpp Sat Sep 1 02:00:15 2012
@@ -1177,11 +1177,7 @@ nsXREDirProvider::GetSystemExtensionsDirectory(nsILoca
$OpenBSD: patch-mozilla_toolkit_xre_nsXREDirProvider_cpp,v 1.13 2012/10/10 21:03:40 landry Exp $
--- mozilla/toolkit/xre/nsXREDirProvider.cpp.orig Fri Aug 31 07:56:40 2012
+++ mozilla/toolkit/xre/nsXREDirProvider.cpp Sun Sep 2 12:45:42 2012
@@ -1174,11 +1174,7 @@ nsXREDirProvider::GetSystemExtensionsDirectory(nsIFile
NS_ENSURE_SUCCESS(rv, rv);
#elif defined(XP_UNIX)
static const char *const sysSExtDir =

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-lightning,v 1.11 2012/09/01 14:10:03 landry Exp $
@comment $OpenBSD: PLIST-lightning,v 1.12 2012/10/10 21:03:40 landry Exp $
@conflict lightning-seamonkey-<=1.0b1
@pkgpath productivity/sunbird,-seamonkey
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/calendar-timezones@mozilla.org/
@ -241,6 +241,7 @@ lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a4
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/calendar-unifinder.css
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/calendar-views.css
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/checkbox-images.png
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/classification.png
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/common/
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/common/calendar-daypicker.css
lib/${MOZILLA_PROJECT}-${MOZILLA_VERSION}/extensions/{e2fda1a4-762b-4020-b5ad-a41df1933103}/chrome/calendar/skin/calendar/common/calendar-management.css

View File

@ -1,4 +1,4 @@
$OpenBSD: README-main,v 1.3 2011/08/23 20:25:25 landry Exp $
$OpenBSD: README-main,v 1.4 2012/10/10 21:03:40 landry Exp $
+-----------------------------------------------------------------------
| Running ${FULLPKGNAME} on OpenBSD
@ -9,7 +9,7 @@ To disable anti-aliasing (xft) set GDK_USE_XFT=0 in the environment.
Plugins
=======
Seamonkey looks for plugins in ~/.mozilla/plugins and
${LOCALBASE}/lib/mozilla-plugins.
${LOCALBASE}/lib/mozilla/plugins.
If the environment variable MOZ_PLUGIN_PATH is specified, this
location will be overridden.
@ -23,6 +23,6 @@ favorite Language/Content pack.
Debugging
=========
If you encounter crashes, you might want to build the debug FLAVOR of
this package, and run 'seamonkey -g' to run seamonkey inside gdb, so
that you can gather debugging logs and traces.
this package, and run seamonkey inside gdb, so that you can gather
debugging logs and traces (for all threads !).
Bug reports without that information will be ignored.