17871dc3eSAndrew Rist#************************************************************** 27871dc3eSAndrew Rist# 37871dc3eSAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 47871dc3eSAndrew Rist# or more contributor license agreements. See the NOTICE file 57871dc3eSAndrew Rist# distributed with this work for additional information 67871dc3eSAndrew Rist# regarding copyright ownership. The ASF licenses this file 77871dc3eSAndrew Rist# to you under the Apache License, Version 2.0 (the 87871dc3eSAndrew Rist# "License"); you may not use this file except in compliance 97871dc3eSAndrew Rist# with the License. You may obtain a copy of the License at 107871dc3eSAndrew Rist# 117871dc3eSAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 127871dc3eSAndrew Rist# 137871dc3eSAndrew Rist# Unless required by applicable law or agreed to in writing, 147871dc3eSAndrew Rist# software distributed under the License is distributed on an 157871dc3eSAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 167871dc3eSAndrew Rist# KIND, either express or implied. See the License for the 177871dc3eSAndrew Rist# specific language governing permissions and limitations 187871dc3eSAndrew Rist# under the License. 197871dc3eSAndrew Rist# 207871dc3eSAndrew Rist#************************************************************** 217871dc3eSAndrew Rist 227871dc3eSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweirPRJ=. 25cdf0e10cSrcweir 26cdf0e10cSrcweirPRJNAME=nss 27cdf0e10cSrcweirTARGET=nss 28cdf0e10cSrcweir 29cdf0e10cSrcweir# --- Settings ----------------------------------------------------- 30cdf0e10cSrcweir 31cdf0e10cSrcweir.INCLUDE : settings.mk 32cdf0e10cSrcweir 33cdf0e10cSrcweir# --- Files -------------------------------------------------------- 34cdf0e10cSrcweir 350021cf80SHerbert Dürr.IF "$(ENABLE_NSS_MODULE)"!="YES" || "$(SYSTEM_NSS)"=="YES" 369ef65f0eSAndre Fischer 37cdf0e10cSrcweirall: 380021cf80SHerbert Dürr @echo "NSS will not be built because ENABLE_NSS_MODULE='$(ENABLE_NSS_MODULE)' and SYSTEM_NSS='$(SYSTEM_NSS)'" 399ef65f0eSAndre Fischer 409ef65f0eSAndre Fischer.ELSE 41cdf0e10cSrcweir 42c38ced1bSHerbert DürrTARFILE_NAME=nss-3.14.4-with-nspr-4.9.5 43c38ced1bSHerbert DürrTARFILE_MD5=067a04150b1d8b64f7da3019688a7547 44c38ced1bSHerbert DürrTARFILE_ROOTDIR=nss-3.14.4 45cdf0e10cSrcweirPATCH_FILES=nss.patch 46cdf0e10cSrcweir 47cdf0e10cSrcweir.IF "$(OS)"=="MACOSX" 481439c24fSJürgen SchmidtMACOS_SDK_DIR=/Developer/SDKs/MacOSX10.4u.sdk 491439c24fSJürgen Schmidt.EXPORT : MACOS_SDK_DIR 50cdf0e10cSrcweirPATCH_FILES+=nss_macosx.patch 51cdf0e10cSrcweir.ENDIF # "$(OS)"=="MACOSX" 52cdf0e10cSrcweir 53cdf0e10cSrcweir.IF "$(debug)" != "" 54cdf0e10cSrcweir.ELSE 55cdf0e10cSrcweirBUILD_OPT=1 56cdf0e10cSrcweir.EXPORT: BUILD_OPT 57cdf0e10cSrcweir.ENDIF 58cdf0e10cSrcweir 59cdf0e10cSrcweir.IF "$(BUILD64)"=="1" 60*fb2e0c6fSHerbert Dürr# force the 64-bit build mode for 64bit targets 61cdf0e10cSrcweirUSE_64:=1 62cdf0e10cSrcweir.EXPORT : USE_64 63*fb2e0c6fSHerbert Dürr.ENDIF # "$(BUILD64)"=="1" 64cdf0e10cSrcweir 65cdf0e10cSrcweirOUT2LIB=mozilla$/dist$/out$/lib$/*$(DLLPOST) 66cdf0e10cSrcweir 67cdf0e10cSrcweirBUILD_DIR=mozilla$/security$/nss 68cdf0e10cSrcweirBUILD_ACTION= $(GNUMAKE) nss_build_all 69cdf0e10cSrcweir#See #i105566# && moz#513024# 70cdf0e10cSrcweir.IF "$(OS)"=="LINUX" 71ea15b27dSHerbert DürrBUILD_ACTION+=FREEBL_NO_DEPEND=1 FREEBL_LOWHASH=1 7215887683SHerbert DürrPATCH_FILES+=nss_linux.patch 73cdf0e10cSrcweir.ENDIF 74cdf0e10cSrcweir 75cdf0e10cSrcweir 76cdf0e10cSrcweir.IF "$(GUI)"=="WNT" 77cdf0e10cSrcweir 78cdf0e10cSrcweir.IF "$(COM)"=="GCC" 79cdf0e10cSrcweir 80cdf0e10cSrcweirPATCH_FILES+=nss.patch.mingw 81cdf0e10cSrcweir 82cdf0e10cSrcweirmoz_build:=$(shell cygpath -p $(MOZILLABUILD)) 83cdf0e10cSrcweirPATH!:=$(moz_build)/bin:$(PATH) 84cdf0e10cSrcweir 85cdf0e10cSrcweirnss_CC=$(CC) 86cdf0e10cSrcweirnss_CXX=$(CXX) 87cdf0e10cSrcweir.IF "$(MINGW_SHARED_GCCLIB)"=="YES" 88cdf0e10cSrcweirnss_CC+=-shared-libgcc 89cdf0e10cSrcweirnss_CXX+=-shared-libgcc 90cdf0e10cSrcweir.ENDIF 91cdf0e10cSrcweir 92cdf0e10cSrcweirnss_LIBS= 93cdf0e10cSrcweir.IF "$(MINGW_SHARED_GXXLIB)"=="YES" 94cdf0e10cSrcweirnss_LIBS+=$(MINGW_SHARED_LIBSTDCPP) 95cdf0e10cSrcweir.ENDIF 96cdf0e10cSrcweir 97cdf0e10cSrcweir 98cdf0e10cSrcweirBUILD_DIR=mozilla$/security$/nss 99cdf0e10cSrcweirBUILD_ACTION=NS_USE_GCC=1 CC="$(nss_CC)" CXX="$(nss_CXX)" OS_LIBS="$(nss_LIBS)" OS_TARGET=WIN95 _WIN32_IE=0x500 PATH="$(PATH)" DEFINES=-D_WIN32_IE=0x500 $(GNUMAKE) nss_build_all 100cdf0e10cSrcweir 101cdf0e10cSrcweirOUT2LIB= \ 102cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libnspr4.a \ 103cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libnss3.a \ 104cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libnssdbm3.a \ 105cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libnssutil3.a \ 106cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libplc4.a \ 107cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libplds4.a \ 108cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libsmime3.a \ 109cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libsoftokn3.a \ 110cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libsqlite3.a \ 111cdf0e10cSrcweir mozilla$/dist$/out$/lib$/libssl3.a 112cdf0e10cSrcweir 113cdf0e10cSrcweir.ELSE # "$(COM)"=="GCC" 114cdf0e10cSrcweirMOZ_MSVCVERSION= 9 115cdf0e10cSrcweir.EXPORT : MOZ_MSVCVERSION 116cdf0e10cSrcweirmoz_build:=$(shell cygpath -p $(MOZILLABUILD)) 117cdf0e10cSrcweir 118cdf0e10cSrcweir#Using WINNT will cause at least that nspr4.dll, plc4.dll, plds4.dll 119cdf0e10cSrcweir#become libnspr4.dll, libplc4.dll, libplds4.dll 120cdf0e10cSrcweir#WINNT causes the use of Microsoft fibers (specific to Windows NT and Windows 2000). 121cdf0e10cSrcweir#OS_TARGET= WINNT 122cdf0e10cSrcweirOS_TARGET=WIN95 123cdf0e10cSrcweir.EXPORT : OS_TARGET 124cdf0e10cSrcweir 125cdf0e10cSrcweir# make use of stlport headerfiles 126cdf0e10cSrcweirEXT_USE_STLPORT=TRUE 127cdf0e10cSrcweir 128cdf0e10cSrcweir#To build nss one has to call "make nss_build_all" in 129cdf0e10cSrcweir#mozilla/security/nss 130cdf0e10cSrcweirNSS_BUILD_DIR= $(subst,\,/ $(PWD)/$(MISC)/build/$(TARFILE_ROOTDIR)/mozilla/security/nss) 13147589224SJürgen SchmidtBUILD_ACTION= PATH="$(PATH):$(moz_build)/msys/bin:$(moz_build)/moztools/bin" && $(subst,/,$/ $(MOZILLABUILD)/msys/bin/bash) -i \ 132cdf0e10cSrcweir -c "cd $(NSS_BUILD_DIR) && make nss_build_all" 133cdf0e10cSrcweir 134cdf0e10cSrcweirOUT2LIB= \ 135515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/nspr4.lib \ 136515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/nss3.lib \ 137515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/nssdbm3.lib \ 138515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/nssutil3.lib \ 139515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/plc4.lib \ 140515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/plds4.lib \ 141515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/smime3.lib \ 142515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/softokn3.lib \ 143515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/sqlite3.lib \ 144515ef96aSAndre Fischer mozilla$/dist$/out$/lib$/ssl3.lib 145cdf0e10cSrcweir 146cdf0e10cSrcweir.ENDIF # "$(COM)"=="GCC" 147cdf0e10cSrcweir 148cdf0e10cSrcweirOUT2BIN=mozilla$/dist$/out$/lib$/*$(DLLPOST) 149cdf0e10cSrcweir.ENDIF # "$(GUI)"=="WNT" 150cdf0e10cSrcweir 151cdf0e10cSrcweir 152cdf0e10cSrcweirOUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include 153cdf0e10cSrcweir 154cdf0e10cSrcweir# --- Targets ------------------------------------------------------ 155cdf0e10cSrcweir 156cdf0e10cSrcweir.INCLUDE : set_ext.mk 157cdf0e10cSrcweir.INCLUDE : target.mk 158cdf0e10cSrcweir.INCLUDE : tg_ext.mk 1599ef65f0eSAndre Fischer 1609ef65f0eSAndre Fischer.ENDIF 161