]> gitweb @ CieloNegro.org - pkgsrc-firefox3.git/blob - patches/patch-dl
Initial revision of the upstream www/firefox3
[pkgsrc-firefox3.git] / patches / patch-dl
1 $NetBSD: patch-dl,v 1.1.1.1 2008/06/28 10:01:07 tnn Exp $
2
3 diff -ruN ../Orig/mozilla/security/coreconf/DragonFly.mk ./security/coreconf/DragonFly.mk
4 --- ../Orig/mozilla/security/coreconf/DragonFly.mk      1970-01-01 09:00:00.000000000 +0900
5 +++ ./security/coreconf/DragonFly.mk    2005-12-04 19:44:48.000000000 +0900
6 @@ -0,0 +1,83 @@
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 security libraries.
19 +# 
20 +# The Initial Developer of the Original Code is Netscape
21 +# Communications Corporation.  Portions created by Netscape are 
22 +# Copyright (C) 1994-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 +# Config stuff for DragonFly
40 +#
41 +
42 +include $(CORE_DEPTH)/coreconf/UNIX.mk
43 +
44 +DEFAULT_COMPILER       = gcc
45 +CC                     = gcc
46 +CCC                    = g++
47 +RANLIB                 = ranlib
48 +
49 +ifeq ($(OS_TEST),alpha)
50 +CPU_ARCH               = alpha
51 +else
52 +CPU_ARCH               = x86
53 +endif
54 +
55 +OS_CFLAGS              = $(DSO_CFLAGS) -ansi -Wall -DFREEBSD -DHAVE_STRERROR -DHAVE_BSD_FLOCK
56 +
57 +DSO_CFLAGS             = -fPIC
58 +DSO_LDOPTS             = -shared -Wl,-soname -Wl,$(notdir $@)
59 +
60 +#
61 +# The default implementation strategy for FreeBSD is pthreads.
62 +#
63 +ifndef CLASSIC_NSPR
64 +USE_PTHREADS           = 1
65 +DEFINES                        += -D_THREAD_SAFE -D_REENTRANT
66 +OS_LIBS                        += -pthread
67 +DSO_LDOPTS             += -pthread
68 +endif
69 +
70 +ARCH                   = freebsd
71 +
72 +MOZ_OBJFORMAT          := $(shell test -x /usr/bin/objformat && /usr/bin/objformat || echo aout)
73 +
74 +DLL_SUFFIX             = so
75 +
76 +ifdef LIBRUNPATH
77 +DSO_LDOPTS             += -Wl,-R$(LIBRUNPATH)
78 +endif
79 +
80 +MKSHLIB                        = $(CC) $(DSO_LDOPTS)
81 +ifdef MAPFILE
82 +# Add LD options to restrict exported symbols to those in the map file
83 +endif
84 +# Change PROCESS to put the mapfile in the correct format for this platform
85 +PROCESS_MAP_FILE = cp $(LIBRARY_NAME).def $@
86 +
87 +G++INCLUDES            = -I/usr/include/g++
88 +
89 +INCLUDES               += -I/usr/X11R6/include