Files
heimdal/packages/windows/installer/NTMakefile
Jeffrey Altman 3a00c9b7b0 Windows: Install loose gssapi.dll with manifest
When installing the gssapi.dll within the Heimdal\bin directory
make sure to install the version that has the assembly manifest.
Otherwise, the DLL cannot find the heimdal.dll.

Change-Id: Idd6f8f00db718f8a764e1cfa9d06d188ab22a313
2013-10-12 01:57:14 -04:00

248 lines
6.5 KiB
Plaintext

########################################################################
#
# Copyright (c) 2010-2013, Secure Endpoints Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# - Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# - Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
RELDIR=packages\windows\installer
!include ..\..\..\windows/NTMakefile.w32
!ifdef BUILD_INSTALLERS
VERSIOND=$(VER_PRODUCT_MAJOR)-$(VER_PRODUCT_MINOR)-$(VER_PRODUCT_AUX)-$(VER_PRODUCT_PATCH)
VERSION=$(VER_PRODUCT_MAJOR).$(VER_PRODUCT_MINOR).$(VER_PRODUCT_AUX).$(VER_PRODUCT_PATCH)
POLPREFIX=policy.$(VER_PRODUCT_MAJOR).$(VER_PRODUCT_MINOR)
!if "$(CPU)"=="AMD64"
PLATFORM=x64
!else
PLATFORM=x86
!endif
!if "$(BUILD)"=="rel"
DEBUGOPT=
!else
DEBUGOPT=-$(BUILD)
!endif
######################################################################
# Heimdal Merge Modules
!if exist(..\..\..\thirdparty\installer\heimdal-assemblies.wxs)
ASM_WXS=..\..\..\thirdparty\installer\heimdal-assemblies.wxs
!else
ASM_WXS=heimdal-assemblies.wxs
!endif
ASSEMBLYMODULE=$(INSTDIR)\Heimdal.msm
$(ASSEMBLYMODULE): $(OBJ)\heimdal-assemblies.wixobj
$(LIGHT) -out $@ $**
$(OBJ)\heimdal-assemblies.wixobj: $(ASM_WXS)
$(CANDLE) -arch $(PLATFORM) -o $@ $** \
-dVersion=$(VERSION) \
-dBinDir=$(BINDIR) \
-dAsmKrbName=$(ASMKRBNAME) \
-dPlatform=$(PLATFORM)
$(SDKREDISTDIR)\Heimdal.msm: $(ASSEMBLYMODULE)
$(CP) $** $@
!if exist(..\..\..\thirdparty\installer\heimdal-policy.wxs)
POLICY_WXS=..\..\..\thirdparty\installer\heimdal-policy.wxs
!else
POLICY_WXS=heimdal-policy.wxs
!endif
POLICYMODULE=$(INSTDIR)\Heimdal.Policy.msm
$(POLICYMODULE): $(OBJ)\heimdal-policy.wixobj
$(LIGHT) -out $@ $**
$(OBJ)\heimdal-policy.wixobj: $(POLICY_WXS)
$(CANDLE) -arch $(PLATFORM) -o $@ $** \
-dVersion=$(VERSION) \
-dBinDir=$(BINDIR) \
-dAsmKrbName=$(ASMKRBNAME) \
-dPlatform=$(PLATFORM) \
-dPolPrefix=$(POLPREFIX)
COMMANDMODULE=$(INSTDIR)\Heimdal.Command.msm
$(COMMANDMODULE): $(OBJ)\heimdal-command.wixobj
$(LIGHT) -out $@ $**
# OBJECT COMPILED BELOW
$(SDKREDISTDIR)\Heimdal.Command.msm: $(COMMANDMODULE)
$(CP) $** $@
all:: $(ASSEMBLYMODULE) $(SDKREDISTDIR)\Heimdal.msm
all:: $(POLICYMODULE)
all:: $(COMMANDMODULE) $(SDKREDISTDIR)\Heimdal.Command.msm
clean::
-$(RM) $(SDKREDISTDIR)\*.*
######################################################################
# Runtime modules
!if [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==16
VCVER=VC100
!elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==15
VCVER=VC90
!elseif [ $(PERL) $(SRC)\cf\w32-detect-vc-version.pl $(CC) ]==14
VCVER=VC80
!else
! error Cant determine Visual C compiler version
!endif
$(SDKREDISTDIR)\heimdal-version.mak:
@echo HEIMDAL_VCVER=$(VCVER) > $@
!if "$(BUILD)"!="rel"
@echo HEIMDAL_CRT_DEBUG=yes >> $@
!endif
all:: $(SDKREDISTDIR)\heimdal-version.mak
!if "$(BUILD)"=="rel"
CRTNAME=CRT
!else
CRTNAME=DebugCRT
!endif
!if "$(MMDIR)"==""
MMDIR=$(ProgramFiles)\Common Files\Merge Modules
!if !exist($(MMDIR))
MMDIR=$(SystemDrive)\Program Files (x86)\Common Files\Merge Modules
!endif
!endif
!if exist("$(MMDIR)")
RUNTIMEMODULE32="$(MMDIR)\Microsoft_$(VCVER)_$(CRTNAME)_x86.msm"
!if "$(VCVER)"=="VC100"
RUNTIMEMODULE64="$(MMDIR)\Microsoft_$(VCVER)_$(CRTNAME)_x64.msm"
!else
RUNTIMEMODULE64="$(MMDIR)\Microsoft_$(VCVER)_$(CRTNAME)_x86_x64.msm"
!endif
!else
RUNTIMEMODULE32="$(MSSDK)\Redist\VC\microsoft.vcxx.crt.x86_msm.msm"
RUNTIMEMODULE64="$(MSSDK)\Redist\VC\microsoft.vcxx.crt.x64_msm.msm"
!endif
######################################################################
# Heimdal installer
CANDLEOPTS= \
-dVersion=$(VERSION) \
-dBinDir=$(BINDIR) \
-dDocDir=$(DOCDIR) \
-dSrcDir=$(SRC) \
-dPlatform=$(PLATFORM) \
-dAsmKrbName=$(ASMKRBNAME) \
-dPolPrefix=$(POLPREFIX)
!if "$(CPU)"=="AMD64"
INSTDIR32=$(INSTDIR:AMD64=i386)
CANDLEOPTS=$(CANDLEOPTS) -dTarget64 \
-dInstDir32=$(INSTDIR32) \
-dInstDir64=$(INSTDIR) \
-dRuntimeModule32=$(RUNTIMEMODULE32) \
-dRuntimeModule64=$(RUNTIMEMODULE64)
!ifdef MULTIPLATFORM_INSTALLER
CANDLEOPTS_MULTI= -dTarget32
TYPEOPT=-full
!else
! message Excluding 32-bit components from installer
TYPEOPT=
!endif
INSTDEPS=$(INSTDIR32)\Heimdal.msm \
$(INSTDIR32)\Heimdal.Command.msm \
$(INSTDIR32)\Heimdal.Policy.msm \
$(ASSEMBLYMODULE) $(POLICYMODULE)
!else
CANDLEOPTS=$(CANDLEOPTS) -dTarget32 \
-dInstDir32=$(INSTDIR) \
-dRuntimeModule32=$(RUNTIMEMODULE32) \
!endif
!if exist($(SRC)\thirdparty\MKShim)
THIRDPARTYOBJS=$(THIRDPARTYOBJS) $(INSTDIR)\MKShim.wixlib
THIRDPARTYOPTS=$(THIRDPARTYOPTS) -dMKShim=1
!if "$(CPU)"=="AMD64"
THIRDPARTYOBJS=$(THIRDPARTYOBJS) $(INSTDIR32)\MKShim.wixlib
!endif
!endif
INSTALLER=$(INSTDIR)\Heimdal-$(CPU)$(DEBUGOPT)$(TYPEOPT)-$(VERSIOND).msi
WIXOBJ=$(OBJ)\heimdal-installer$(TYPEOPT).wixobj
$(INSTALLER): $(WIXOBJ) $(THIRDPARTYOBJS) $(INSTDEPS) lang\en-us.wxl
$(LIGHT) -out $@ $(WIXOBJ) $(THIRDPARTYOBJS) \
-sval -cultures:en-us -loc lang\en-us.wxl \
-dWixUILicenseRtf=lang\license-en-us.rtf \
-ext WixUIExtension
$(_CODESIGN)
$(WIXOBJ): heimdal-installer.wxs
$(CANDLE) -arch $(PLATFORM) -o $@ heimdal-installer.wxs \
$(CANDLEOPTS) $(CANDLEOPTS_MULTI) $(THIRDPARTYOPTS)
!if exist(thirdparty\installer\heimdal-command.wxs)
CMD_WXS=thirdparty\installer\heimdal-command.wxs
!else
CMD_WXS=heimdal-command.wxs
!endif
$(OBJ)\heimdal-command.wixobj: heimdal-command.wxs
$(CANDLE) -arch $(PLATFORM) -o $@ heimdal-command.wxs \
$(CANDLEOPTS) $(THIRDPARTYOPTS)
all:: $(INSTALLER)
clean::
-$(RM) $(INSTALLER)
!endif # BUILD_INSTALLERS