diff options
| author | Jeffrey Altman <jaltman@secure-endpoints.com> | 2007-09-05 16:36:28 +0000 |
|---|---|---|
| committer | Jeffrey Altman <jaltman@secure-endpoints.com> | 2007-09-05 16:36:28 +0000 |
| commit | 9c243238c6ca6228fde72fa1661d0393a1e08c81 (patch) | |
| tree | 63f925b14a844a1660775c97070ffe2c519487a9 /src/windows | |
| parent | 2d3707714db1013cd8121087d838f7d9bded53fb (diff) | |
| download | krb5-9c243238c6ca6228fde72fa1661d0393a1e08c81.tar.gz krb5-9c243238c6ca6228fde72fa1661d0393a1e08c81.tar.xz krb5-9c243238c6ca6228fde72fa1661d0393a1e08c81.zip | |
64-bit Windows gss.exe (gui version of gss-client.exe)
Now that krbcc64.lib exists we can build the gss.exe gss-api test
client.
ticket: new
component: windows
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19921 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows')
| -rw-r--r-- | src/windows/Makefile.in | 2 | ||||
| -rw-r--r-- | src/windows/gss/Makefile.in | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/windows/Makefile.in b/src/windows/Makefile.in index 5285b02f5..3ba9da6e4 100644 --- a/src/windows/Makefile.in +++ b/src/windows/Makefile.in @@ -14,11 +14,9 @@ all-windows:: @echo Making in windows\wintel cd ..\wintel $(MAKE) -$(MFLAGS) -!if ( "$(CPU)" != "ALPHA64" ) && ( "$(CPU)" != "IA64" ) && ( "$(CPU)" != "AMD64" ) @echo Making in windows\gss cd ..\gss $(MAKE) -$(MFLAGS) -!endif @echo Making in windows\gina cd ..\gina $(MAKE) -$(MFLAGS) diff --git a/src/windows/gss/Makefile.in b/src/windows/gss/Makefile.in index 60c54e823..5413a278a 100644 --- a/src/windows/gss/Makefile.in +++ b/src/windows/gss/Makefile.in @@ -11,7 +11,11 @@ BUILDTOP=..\.. !if defined(KRB5_KFW_COMPILE) KFWINC= /I$(BUILDTOP)\..\..\krbcc\include +!if ( "$(CPU)" == "i386" ) KFWLIB= $(BUILDTOP)\..\..\..\..\target\lib\$(CPU)\$(OUTPRE_DBG)\krbcc32.lib +!else +KFWLIB= $(BUILDTOP)\..\..\..\..\target\lib\$(CPU)\$(OUTPRE_DBG)\krbcc64.lib +!endif !endif LOCALINCLUDES= /I$(BUILDTOP) /I$(BUILDTOP)\include /I$(BUILDTOP)\include\krb5 $(KFWINC) @@ -29,7 +33,7 @@ all:: Makefile $(OUTPRE)gss.exe $(OUTPRE)gss.exe: gss.def $(OBJS) $(XOBJS) $(LIBS) $(LINK) $(LFLAGS) /map:$*.map /out:$@ $(OBJS) $(XOBJS) \ - $(LIBS) $(SYSLIBS) $(KFWLIB) + $(LIBS) $(SYSLIBS) $(KFWLIB) $(SCLIB) $(OBJS) $(XOBJS): gss.h |
