head	1.9;
access;
symbols
	RELEASE_4_5_0:1.7
	RELEASE_4_4_0:1.6
	RELEASE_4_3_0:1.5
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.2
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.1;
locks; strict;
comment	@# @;


1.9
date	2002.02.16.23.46.00;	author sumikawa;	state dead;
branches;
next	1.8;

1.8
date	2002.02.05.19.30.24;	author sumikawa;	state Exp;
branches;
next	1.7;

1.7
date	2001.09.19.04.32.50;	author sumikawa;	state Exp;
branches;
next	1.6;

1.6
date	2001.08.09.14.09.25;	author sumikawa;	state Exp;
branches;
next	1.5;

1.5
date	2001.04.04.00.42.41;	author sumikawa;	state Exp;
branches;
next	1.4;

1.4
date	2001.02.19.17.53.59;	author sumikawa;	state Exp;
branches;
next	1.3;

1.3
date	2000.08.29.10.40.23;	author sumikawa;	state Exp;
branches;
next	1.2;

1.2
date	2000.02.04.07.45.34;	author reg;	state Exp;
branches;
next	1.1;

1.1
date	99.11.11.20.16.20;	author jim;	state Exp;
branches;
next	;


desc
@@


1.9
log
@Remove this port.

Now www/mozilla works correctly on both IPv6 and IPv4 environment so
we don't need mozilla+ipv6 anymore.
@
text
@
$FreeBSD: ports/www/mozilla+ipv6/files/patch-mi,v 1.8 2002/02/05 19:30:24 sumikawa Exp $

--- nsprpub/config/FreeBSD.mk.orig	Sat Jul 29 03:50:35 2000
+++ nsprpub/config/FreeBSD.mk	Mon Sep 17 10:47:08 2001
@@@@ -37,19 +37,21 @@@@
 
 include $(MOD_DEPTH)/config/UNIX.mk
 
-CC			= gcc
-CCC			= g++
+CCC			= $(CXX)
 RANLIB			= ranlib
 
+# During FreeBSD port build, CFLAGS contains all of the optimizations
+# flags desired...
+OPTIMIZER		= $(MOZ_OPTIMIZE_FLAGS)
+
 ifeq ($(OS_TEST),alpha)
 CPU_ARCH		= alpha
 else
-OS_REL_CFLAGS		= -Di386
 CPU_ARCH		= x86
 endif
 CPU_ARCH_TAG		= _$(CPU_ARCH)
 
-OS_CFLAGS		= $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
+OS_CFLAGS		= $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
 
 #
 # The default implementation strategy for FreeBSD is pthreads.
@@@@ -60,8 +62,8 @@@@
 else
 USE_PTHREADS		= 1
 IMPL_STRATEGY		= _PTH
-DEFINES			+= -D_THREAD_SAFE
-THREAD_FLAG		+= -pthread
+DEFINES			+= -D_THREAD_SAFE -D_REENTRANT
+DSO_LDOPTS		+= -pthread
 endif
 
 ARCH			= freebsd
@


1.8
log
@Upgrade to 0.9.8.

This version support dynamic IPv6 stack detection and IPv6->IPv4 fallback
when IPv6 connection fails.  I'll try merge into www/mozilla after checking
these features.
@
text
@d2 1
a2 1
$FreeBSD: ports/www/mozilla+ipv6/files/patch-mi,v 1.7 2001/09/19 04:32:50 sumikawa Exp $
@


1.7
log
@Upgrade to 0.9.4.
@
text
@d2 1
a2 1
$FreeBSD$
a42 11
@@@@ -61,3 +63,10 @@@@
 MKSHLIB			= $(LD) $(DSO_LDOPTS)
 
 G++INCLUDES		= -I/usr/include/g++
+
+# IPv6 support part of the KAME.
+ifeq ($(shell test -f /usr/local/v6/lib/libinet6.a && echo kame),kame)
+OS_LIBS			+= -L/usr/local/v6/lib -linet6
+endif
+
+OS_LIBS			+= -lxpg4
@


1.6
log
@Upgrade to 0.9.3.

PR:		ports/29540
Submitted by:	pat@@databits.net
@
text
@d1 6
a6 3
--- nsprpub/config/FreeBSD.mk.orig	Wed Oct 20 14:19:53 1999
+++ nsprpub/config/FreeBSD.mk	Thu Dec 21 01:16:34 2000
@@@@ -21,24 +21,26 @@@@
d12 1
d14 1
a14 2
+CCC				= ${CXX}
+
d18 1
a18 1
 
d30 5
a34 1
 ifeq ($(USE_PTHREADS),1)
d40 3
a42 3
 else
 IMPL_STRATEGY		= _EMU
 DEFINES			+= -D_PR_LOCAL_THREADS_ONLY
@


1.5
log
@Previous commiting did not support IPv6 :-P

Submitted by:	ume
@
text
@d14 1
a14 1
+OPTIMIZER		=
@


1.4
log
@Upgrade to 0.8.

Submitted by:	ume
@
text
@d36 1
a36 1
@@@@ -61,3 +63,16 @@@@
a40 5
+# IPv6 support part of the standard FreeBSD 4.0 release.
+ifneq (,$(filter-out 2.0 2.1 2.2 3,$(basename $(OS_RELEASE))))
+USE_IPV6		= 1
+endif
+
a42 1
+USE_IPV6		= 1
@


1.3
log
@IPv6 enabled mozilla-M17.

Submitted by:	ume
Repo copied by:	PW
@
text
@d1 3
a3 5
Index: nsprpub/config/FreeBSD.mk
diff -u nsprpub/config/FreeBSD.mk.orig nsprpub/config/FreeBSD.mk
--- nsprpub/config/FreeBSD.mk.orig	Thu Oct 21 06:19:53 1999
+++ nsprpub/config/FreeBSD.mk	Fri Apr 28 21:01:01 2000
@@@@ -21,14 +21,16 @@@@
d10 1
a10 1
+CCC			= ${CXX}
d23 13
@


1.2
log
@Make M13 work on a post no-thunk-vtable 4.0-CURRENT, and enable using
poll().

Enable MathML support.

Use bzip2, since it saves 5MB on the distfile.

Revamp the port a bit.
@
text
@d1 4
a4 2
--- nsprpub/config/FreeBSD.mk.orig	Wed Oct 20 14:19:53 1999
+++ nsprpub/config/FreeBSD.mk	Thu Feb  3 03:48:20 2000
d25 17
@


1.1
log
@Update to Milestone 10.

PR:		14272
Submitted by:	Mikhail Teterin <mi@@aldan.algebra.com>
@
text
@d1 6
a6 5
This patch make the FreeBSD port build obey the host's local settings
for C, C++ compiler and (optimization) flags.
--- nsprpub/config/FreeBSD.mk.orig	Wed Apr 21 17:37:37 1999
+++ nsprpub/config/FreeBSD.mk	Mon Oct 11 13:49:41 1999
@@@@ -24,2 +23,0 @@@@
d9 1
a9 1
@@@@ -26,0 +25,5 @@@@
d15 8
a22 2
@@@@ -31 +33,0 @@@@
-OS_REL_CFLAGS		= -mno-486 -Di386
@

