]> gitweb @ CieloNegro.org - pkgsrc-firefox3.git/blob - patches/patch-do
Initial revision of the upstream www/firefox3
[pkgsrc-firefox3.git] / patches / patch-do
1 $NetBSD: patch-do,v 1.1.1.1 2008/06/28 10:01:07 tnn Exp $
2
3 diff -ruN ../Orig/mozilla/directory/c-sdk/config/DragonFly.mk ./directory/c-sdk/config/DragonFly.mk
4 --- ../Orig/mozilla/directory/c-sdk/config/DragonFly.mk 1970-01-01 09:00:00.000000000 +0900
5 +++ ./directory/c-sdk/config/DragonFly.mk       2005-12-04 19:44:55.000000000 +0900
6 @@ -0,0 +1,82 @@
7 +# 
8 +# The contents of this file are subject to the Mozilla Public
9 +# License Version 1.1 (the "License"); you may not use this file
10 +# except in compliance with the License. You may obtain a copy of
11 +# the License at http://www.mozilla.org/MPL/
12 +# 
13 +# Software distributed under the License is distributed on an "AS
14 +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
15 +# implied. See the License for the specific language governing
16 +# rights and limitations under the License.
17 +# 
18 +# The Original Code is the Netscape Portable Runtime (NSPR).
19 +# 
20 +# The Initial Developer of the Original Code is Netscape
21 +# Communications Corporation.  Portions created by Netscape are 
22 +# Copyright (C) 1998-2000 Netscape Communications Corporation.  All
23 +# Rights Reserved.
24 +# 
25 +# Contributor(s):
26 +# 
27 +# Alternatively, the contents of this file may be used under the
28 +# terms of the GNU General Public License Version 2 or later (the
29 +# "GPL"), in which case the provisions of the GPL are applicable 
30 +# instead of those above.  If you wish to allow use of your 
31 +# version of this file only under the terms of the GPL and not to
32 +# allow others to use your version of this file under the MPL,
33 +# indicate your decision by deleting the provisions above and
34 +# replace them with the notice and other provisions required by
35 +# the GPL.  If you do not delete the provisions above, a recipient
36 +# may use your version of this file under either the MPL or the
37 +# GPL.
38 +# 
39 +
40 +#
41 +# Config stuff for DragonFly
42 +#
43 +
44 +include $(MOD_DEPTH)/config/UNIX.mk
45 +
46 +CC                     = gcc
47 +CCC                    = g++
48 +RANLIB                 = ranlib
49 +
50 +OS_REL_CFLAGS          = -Di386
51 +CPU_ARCH               = x86
52 +CPU_ARCH_TAG           = _$(CPU_ARCH)
53 +
54 +OS_CFLAGS              = $(DSO_CFLAGS) $(OS_REL_CFLAGS) -ansi -Wall -pipe $(THREAD_FLAG) -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
55 +
56 +#
57 +# The default implementation strategy for FreeBSD is pthreads.
58 +#
59 +ifeq ($(CLASSIC_NSPR),1)
60 +IMPL_STRATEGY          = _EMU
61 +DEFINES                        += -D_PR_LOCAL_THREADS_ONLY
62 +else
63 +USE_PTHREADS           = 1
64 +IMPL_STRATEGY          = _PTH
65 +DEFINES                        += -D_THREAD_SAFE
66 +THREAD_FLAG            += -pthread
67 +endif
68 +
69 +ARCH                   = freebsd
70 +
71 +MOZ_OBJFORMAT          := $(shell test -x /usr/bin/objformat && /usr/bin/objformat || echo aout)
72 +
73 +ifeq ($(MOZ_OBJFORMAT),elf)
74 +DLL_SUFFIX             = so
75 +else
76 +DLL_SUFFIX             = so.1.0
77 +endif
78 +
79 +DSO_CFLAGS             = -fPIC
80 +DSO_LDOPTS             = -Bshareable
81 +
82 +ifdef LIBRUNPATH
83 +DSO_LDOPTS             += -Wl,-R$(LIBRUNPATH)
84 +endif
85 +
86 +MKSHLIB                        = $(LD) $(DSO_LDOPTS)
87 +
88 +G++INCLUDES            = -I/usr/include/g++