From 71a09f3f57e47603c8eb237e1eb8d67b6d524c0d Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Sat, 29 Apr 1995 04:31:18 +0000 Subject: [PATCH] Use $(LD) instead of $(CC) so that we can do purify checking git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5653 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/gss-sample/ChangeLog | 3 +++ src/appl/gss-sample/Makefile.in | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog index 285a38872..606ace93c 100644 --- a/src/appl/gss-sample/ChangeLog +++ b/src/appl/gss-sample/ChangeLog @@ -1,5 +1,8 @@ Fri Apr 28 15:30:00 1995 Theodore Y. Ts'o + * Makefile.in (gss-client): Use $(LD) instead of $(CC) so that we can + do purify checking. + * gss-server.c (main, sign_server): Make changes to allow gss-server to be fired out of inetd. New options: -inetd and -logfile. The -logfile allows the output of diff --git a/src/appl/gss-sample/Makefile.in b/src/appl/gss-sample/Makefile.in index e7fcf56cc..65f6c07fa 100644 --- a/src/appl/gss-sample/Makefile.in +++ b/src/appl/gss-sample/Makefile.in @@ -15,10 +15,10 @@ DEPKLIB = $(TOPLIBD)/gssapi/libgssapi_krb5.a $(TOPLIBD)/libkrb5.a \ $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB) gss-server: gss-server.o gss-misc.o $(DEPKLIB) - $(CC) $(CFLAGS) -o gss-server gss-server.o gss-misc.o $(KLIB) $(LIBS) + $(LD) $(CFLAGS) -o gss-server gss-server.o gss-misc.o $(KLIB) $(LIBS) gss-client: gss-client.o gss-misc.o $(DEPKLIB) - $(CC) $(CFLAGS) -o gss-client gss-client.o gss-misc.o $(KLIB) $(LIBS) + $(LD) $(CFLAGS) -o gss-client gss-client.o gss-misc.o $(KLIB) $(LIBS) gss-client.o: $(srcdir)/gss-client.c -- 2.26.2