~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/security/nss/lib/nss/config.mk

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# The contents of this file are subject to the Mozilla Public
 
3
# License Version 1.1 (the "License"); you may not use this file
 
4
# except in compliance with the License. You may obtain a copy of
 
5
# the License at http://www.mozilla.org/MPL/
 
6
 
7
# Software distributed under the License is distributed on an "AS
 
8
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
# implied. See the License for the specific language governing
 
10
# rights and limitations under the License.
 
11
 
12
# The Original Code is the Netscape security libraries.
 
13
 
14
# The Initial Developer of the Original Code is Netscape
 
15
# Communications Corporation.  Portions created by Netscape are 
 
16
# Copyright (C) 1994-2000 Netscape Communications Corporation.  All
 
17
# Rights Reserved.
 
18
 
19
# Contributor(s):
 
20
 
21
# Alternatively, the contents of this file may be used under the
 
22
# terms of the GNU General Public License Version 2 or later (the
 
23
# "GPL"), in which case the provisions of the GPL are applicable 
 
24
# instead of those above.  If you wish to allow use of your 
 
25
# version of this file only under the terms of the GPL and not to
 
26
# allow others to use your version of this file under the MPL,
 
27
# indicate your decision by deleting the provisions above and
 
28
# replace them with the notice and other provisions required by
 
29
# the GPL.  If you do not delete the provisions above, a recipient
 
30
# may use your version of this file under either the MPL or the
 
31
# GPL.
 
32
#
 
33
 
 
34
#
 
35
#  Override TARGETS variable so that only static libraries
 
36
#  are specifed as dependencies within rules.mk.
 
37
#
 
38
 
 
39
# can't do this in manifest.mn because OS_TARGET isn't defined there.
 
40
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
 
41
 
 
42
# don't want the 32 in the shared library name
 
43
SHARED_LIBRARY = $(OBJDIR)/$(DLL_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION).$(DLL_SUFFIX)
 
44
IMPORT_LIBRARY = $(OBJDIR)/$(IMPORT_LIB_PREFIX)$(LIBRARY_NAME)$(LIBRARY_VERSION)$(IMPORT_LIB_SUFFIX)
 
45
 
 
46
RES = $(OBJDIR)/$(LIBRARY_NAME).res
 
47
RESNAME = $(LIBRARY_NAME).rc
 
48
 
 
49
ifdef NS_USE_GCC
 
50
EXTRA_SHARED_LIBS += \
 
51
        -L$(DIST)/lib \
 
52
        -lsoftokn3 \
 
53
        -lplc4 \
 
54
        -lplds4 \
 
55
        -lnspr4\
 
56
        $(NULL)
 
57
else # ! NS_USE_GCC
 
58
EXTRA_SHARED_LIBS += \
 
59
        $(DIST)/lib/softokn3.lib \
 
60
        $(DIST)/lib/$(NSPR31_LIB_PREFIX)plc4.lib \
 
61
        $(DIST)/lib/$(NSPR31_LIB_PREFIX)plds4.lib \
 
62
        $(DIST)/lib/$(NSPR31_LIB_PREFIX)nspr4.lib \
 
63
        $(NULL)
 
64
endif # NS_USE_GCC
 
65
 
 
66
else
 
67
 
 
68
# $(PROGRAM) has NO explicit dependencies on $(EXTRA_SHARED_LIBS)
 
69
# $(EXTRA_SHARED_LIBS) come before $(OS_LIBS), except on AIX.
 
70
EXTRA_SHARED_LIBS += \
 
71
        -L$(DIST)/lib/ \
 
72
        -lsoftokn3 \
 
73
        -lplc4 \
 
74
        -lplds4 \
 
75
        -lnspr4 \
 
76
        $(NULL)
 
77
 
 
78
endif
 
79
 
 
80
 
 
81
# $(PROGRAM) has explicit dependencies on $(EXTRA_LIBS)
 
82
SHARED_LIBRARY_LIBS = \
 
83
        $(DIST)/lib/$(LIB_PREFIX)certhi.$(LIB_SUFFIX) \
 
84
        $(DIST)/lib/$(LIB_PREFIX)cryptohi.$(LIB_SUFFIX) \
 
85
        $(DIST)/lib/$(LIB_PREFIX)pk11wrap.$(LIB_SUFFIX) \
 
86
        $(DIST)/lib/$(LIB_PREFIX)certdb.$(LIB_SUFFIX) \
 
87
        $(DIST)/lib/$(LIB_PREFIX)secutil.$(LIB_SUFFIX) \
 
88
        $(DIST)/lib/$(LIB_PREFIX)nsspki.$(LIB_SUFFIX) \
 
89
        $(DIST)/lib/$(LIB_PREFIX)nssdev.$(LIB_SUFFIX) \
 
90
        $(DIST)/lib/$(LIB_PREFIX)nssb.$(LIB_SUFFIX) \
 
91
        $(NULL)
 
92
 
 
93
SHARED_LIBRARY_DIRS = \
 
94
        ../certhigh \
 
95
        ../cryptohi \
 
96
        ../pk11wrap \
 
97
        ../certdb \
 
98
        ../util \
 
99
        ../pki \
 
100
        ../dev \
 
101
        ../base \
 
102
        $(NULL)
 
103
 
 
104
 
 
105
ifeq ($(OS_TARGET),SunOS)
 
106
ifeq ($(BUILD_SUN_PKG), 1)
 
107
# The -R '$ORIGIN' linker option instructs this library to search for its
 
108
# dependencies in the same directory where it resides.
 
109
ifeq ($(USE_64), 1)
 
110
MKSHLIB += -R '$$ORIGIN:/usr/lib/mps/secv1/sparcv9:/usr/lib/mps/sparcv9'
 
111
else
 
112
MKSHLIB += -R '$$ORIGIN:/usr/lib/mps/secv1:/usr/lib/mps'
 
113
endif
 
114
else
 
115
MKSHLIB += -R '$$ORIGIN'
 
116
endif
 
117
endif
 
118
 
 
119
 
 
120
ifeq (,$(filter-out WINNT WIN95,$(OS_TARGET)))
 
121
ifndef NS_USE_GCC
 
122
# Export 'mktemp' to be backward compatible with NSS 3.2.x and 3.3.x
 
123
# but do not put it in the import library.  See bug 142575.
 
124
DEFINES += -DWIN32_NSS3_DLL_COMPAT
 
125
DLLFLAGS += -EXPORT:mktemp=nss_mktemp,PRIVATE
 
126
endif
 
127
endif