summaryrefslogtreecommitdiff
path: root/www/mozilla-devel
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-08-29 20:25:19 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-08-29 20:25:19 +0000
commite3c72b84091c2ee941a0c062431ee4f372670d3a (patch)
treeba2df298867a921cc65380b64b539fbfe4fd1d88 /www/mozilla-devel
parentDon't core dump on saslauthd lookups without service and realm. (diff)
Update to 1.5 Beta. For a list of what's new, checkout:
http://www.mozilla.org/releases/mozilla1.5b/
Notes
Notes: svn path=/head/; revision=88003
Diffstat (limited to 'www/mozilla-devel')
-rw-r--r--www/mozilla-devel/Makefile4
-rw-r--r--www/mozilla-devel/distinfo2
-rw-r--r--www/mozilla-devel/files/patch-Makefile.in14
-rw-r--r--www/mozilla-devel/files/patch-nsprpub::pr::src::pthreads::ptio.c32
-rw-r--r--www/mozilla-devel/files/patch-qt10
5 files changed, 31 insertions, 31 deletions
diff --git a/www/mozilla-devel/Makefile b/www/mozilla-devel/Makefile
index f69ebd82b7fb..e36098a15b47 100644
--- a/www/mozilla-devel/Makefile
+++ b/www/mozilla-devel/Makefile
@@ -6,8 +6,8 @@
#
PORTNAME?= mozilla
-PORTVERSION= 1.5a
-PORTREVISION?= 1
+PORTVERSION= 1.5b
+PORTREVISION?= 0
PORTEPOCH?= 1
CATEGORIES?= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
diff --git a/www/mozilla-devel/distinfo b/www/mozilla-devel/distinfo
index b9eab8b758f7..3ea8f7003d22 100644
--- a/www/mozilla-devel/distinfo
+++ b/www/mozilla-devel/distinfo
@@ -1,2 +1,2 @@
-MD5 (mozilla-source-1.5a.tar.bz2) = f75e8bba12a7142fe90ed4108a55fe09
+MD5 (mozilla-source-1.5b.tar.bz2) = 011f6d02768b9ef9c0fbcb04a1b5ea31
MD5 (libart_lgpl.tar.bz2) = f332c3c026adc1c2c0ceb3ac5847d5f5
diff --git a/www/mozilla-devel/files/patch-Makefile.in b/www/mozilla-devel/files/patch-Makefile.in
index 43fa34684782..5dd8b3ca224e 100644
--- a/www/mozilla-devel/files/patch-Makefile.in
+++ b/www/mozilla-devel/files/patch-Makefile.in
@@ -1,16 +1,16 @@
---- Makefile.in.orig Thu May 30 20:39:07 2002
-+++ Makefile.in Wed Aug 28 13:55:32 2002
-@@ -70,8 +70,7 @@
- $(tier_0_dirs) \
+--- Makefile.in.orig Thu Aug 14 19:50:21 2003
++++ Makefile.in Fri Aug 29 15:36:07 2003
+@@ -66,8 +66,7 @@
$(tier_1_dirs) \
$(tier_2_dirs) \
-- $(tier_9_dirs) \
+ $(tier_9_dirs) \
+- $(tier_50_dirs) \
- $(NULL)
-+ $(tier_9_dirs)
++ $(tier_50_dirs)
ifdef GC_LEAK_DETECTOR
DIRS += gc/boehm
-@@ -90,7 +89,8 @@
+@@ -89,7 +88,8 @@
DIRS += $(tier_98_dirs)
endif
diff --git a/www/mozilla-devel/files/patch-nsprpub::pr::src::pthreads::ptio.c b/www/mozilla-devel/files/patch-nsprpub::pr::src::pthreads::ptio.c
index 4243bc8a8193..08346f235416 100644
--- a/www/mozilla-devel/files/patch-nsprpub::pr::src::pthreads::ptio.c
+++ b/www/mozilla-devel/files/patch-nsprpub::pr::src::pthreads::ptio.c
@@ -1,24 +1,24 @@
---- nsprpub/pr/src/pthreads/ptio.c.orig Tue Jul 8 23:37:46 2003
-+++ nsprpub/pr/src/pthreads/ptio.c Wed Jul 23 00:53:15 2003
-@@ -3370,7 +3370,7 @@
- PR_EXTERN(PRStatus) _pr_push_ipv6toipv4_layer(PRFileDesc *fd);
- #if defined(_PR_INET6_PROBE)
- PR_EXTERN(PRBool) _pr_ipv6_is_present;
+--- nsprpub/pr/src/pthreads/ptio.c.orig Mon Jul 14 17:59:47 2003
++++ nsprpub/pr/src/pthreads/ptio.c Fri Aug 29 15:39:46 2003
+@@ -189,7 +189,7 @@
+ #endif
+ #endif
+
-#ifdef DARWIN
+#if defined(DARWIN) || defined(FREEBSD)
static PRBool _pr_ipv6_v6only_on_by_default;
- #endif
- PR_IMPLEMENT(PRBool) _pr_test_ipv6_socket()
-@@ -3385,7 +3385,7 @@
- */
- osfd = socket(AF_INET6, SOCK_STREAM, 0);
- if (osfd != -1) {
+ /* The IPV6_V6ONLY socket option is not defined on Mac OS X 10.1. */
+ #ifndef IPV6_V6ONLY
+@@ -1154,7 +1154,7 @@
+ _pr_stderr = pt_SetMethods(2, PR_DESC_FILE, PR_FALSE, PR_TRUE);
+ PR_ASSERT(_pr_stdin && _pr_stdout && _pr_stderr);
+
-#ifdef DARWIN
+#if defined(DARWIN) || defined(FREEBSD)
- /* In Mac OS X v10.3 Panther Beta the IPV6_V6ONLY socket option
- * is turned on by default, contrary to what RFC 3493, Section
- * 5.3 says. So we have to turn it off. Find out whether we
-@@ -3452,7 +3452,7 @@
+ /* In Mac OS X v10.3 Panther Beta the IPV6_V6ONLY socket option
+ * is turned on by default, contrary to what RFC 3493, Section
+ * 5.3 says. So we have to turn it off. Find out whether we
+@@ -3462,7 +3462,7 @@
if (osfd == -1) pt_MapError(_PR_MD_MAP_SOCKET_ERROR, errno);
else
{
diff --git a/www/mozilla-devel/files/patch-qt b/www/mozilla-devel/files/patch-qt
index b91018e33c15..d7e0dd95bbc2 100644
--- a/www/mozilla-devel/files/patch-qt
+++ b/www/mozilla-devel/files/patch-qt
@@ -1,11 +1,11 @@
---- configure.orig Wed Jul 9 17:58:01 2003
-+++ configure Wed Jul 23 00:42:51 2003
-@@ -11845,9 +11845,9 @@
+--- configure.orig Tue Aug 26 11:56:36 2003
++++ configure Fri Aug 29 15:42:39 2003
+@@ -11870,9 +11870,9 @@
--MOZ_EXTENSIONS_DEFAULT=" cookie wallet content-packs xml-rpc xmlextras help p3p pref transformiix venkman inspector irc universalchardet typeaheadfind webservices"
-+MOZ_EXTENSIONS_DEFAULT=" cookie wallet content-packs xml-rpc xmlextras help p3p pref transformiix venkman inspector universalchardet typeaheadfind webservices"
+-MOZ_EXTENSIONS_DEFAULT=" cookie wallet content-packs xml-rpc xmlextras help p3p pref transformiix venkman inspector irc universalchardet typeaheadfind webservices spellcheck"
++MOZ_EXTENSIONS_DEFAULT=" cookie wallet content-packs xml-rpc xmlextras help p3p pref transformiix venkman inspector universalchardet typeaheadfind webservices spellcheck"
-MOZ_EXTENSIONS_ALL="$MOZ_EXTENSIONS_DEFAULT xmlterm datetime finger cview layout-debug"
+MOZ_EXTENSIONS_ALL="$MOZ_EXTENSIONS_DEFAULT irc xmlterm datetime finger cview layout-debug"