From 50b503bc9ba34b0d3eeea3f4bf3932f93d179480 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Fri, 6 Nov 1998 15:32:53 +0000 Subject: [PATCH] Fixes to build out of source tree git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11020 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/ChangeLog | 5 +++++ src/lib/crypto/keyhash_provider/Makefile.in | 8 ++++---- src/lib/crypto/md4/ChangeLog | 4 ++++ src/lib/crypto/md4/Makefile.in | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog index 566afc88f..4b5e956e5 100644 --- a/src/lib/crypto/ChangeLog +++ b/src/lib/crypto/ChangeLog @@ -1,3 +1,8 @@ +Fri Nov 6 10:23:32 1998 Ezra Peisach + + * keyhash_provider/Makefile.in: Fix to allow building out of the + source tree. + Tue Sep 22 21:19:01 1998 Tom Yu * prng.c (krb5_c_random_make_octets): Fix to nfold into 15 bytes, diff --git a/src/lib/crypto/keyhash_provider/Makefile.in b/src/lib/crypto/keyhash_provider/Makefile.in index 86a4796cb..c614d4b69 100644 --- a/src/lib/crypto/keyhash_provider/Makefile.in +++ b/src/lib/crypto/keyhash_provider/Makefile.in @@ -27,11 +27,11 @@ includes:: depend depend:: $(SRCS) -t_cksum4.o: t_cksum.c - $(CC) -DMD=4 $(CFLAGS) -o t_cksum4.o -c t_cksum.c +t_cksum4.o: $(srcdir)/t_cksum.c + $(CC) -DMD=4 $(CFLAGS) -o t_cksum4.o -c $(srcdir)/t_cksum.c -t_cksum5.o: t_cksum.c - $(CC) -DMD=5 $(CFLAGS) -o t_cksum5.o -c t_cksum.c +t_cksum5.o: $(srcdir)/t_cksum.c + $(CC) -DMD=5 $(CFLAGS) -o t_cksum5.o -c $(srcdir)/t_cksum.c t_cksum4: t_cksum4.o $(KRB5_BASE_DEPLIBS) $(CC_LINK) -o t_cksum4 t_cksum4.o $(KRB5_BASE_LIBS) diff --git a/src/lib/crypto/md4/ChangeLog b/src/lib/crypto/md4/ChangeLog index 7714d4a43..fb8375c4d 100644 --- a/src/lib/crypto/md4/ChangeLog +++ b/src/lib/crypto/md4/ChangeLog @@ -1,3 +1,7 @@ +Fri Nov 6 10:29:34 1998 Ezra Peisach + + * Makefile.in: Fix for make check to work out of source tree. + Sun Jul 19 12:00:00 1998 Marc Horowitz * *.c: replace the crypto layer. diff --git a/src/lib/crypto/md4/Makefile.in b/src/lib/crypto/md4/Makefile.in index be6baebb0..9d9308389 100644 --- a/src/lib/crypto/md4/Makefile.in +++ b/src/lib/crypto/md4/Makefile.in @@ -1,6 +1,6 @@ thisconfigdir=./.. BUILDTOP=$(REL)$(U)$(S)$(U)$(S)$(U) -CFLAGS = $(CCOPTS) $(DEFS) +CFLAGS = $(CCOPTS) $(DEFS) -I$(srcdir) ##DOS##BUILDTOP = ..\..\.. ##DOS##PREFIXDIR=md4 -- 2.26.2