From: John Gilmore Date: Thu, 26 Jan 1995 04:21:27 +0000 (+0000) Subject: * Makefile.in (CFLAGS): Use -I../des to pull in include file. X-Git-Tag: krb5-1.0-beta5~805 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=165f067c4adb444247271cb690214e33f6c09d3b;p=krb5.git * Makefile.in (CFLAGS): Use -I../des to pull in include file. * md5.c, md5crypto.c, md5glue.c, t_mddriver.c: Replace <.../...> includes with "..."s. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4850 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/md5/ChangeLog b/src/lib/crypto/md5/ChangeLog index 920f0d724..00c8ca22c 100644 --- a/src/lib/crypto/md5/ChangeLog +++ b/src/lib/crypto/md5/ChangeLog @@ -1,3 +1,9 @@ +Wed Jan 25 20:11:30 1995 John Gilmore (gnu at toad.com) + + * Makefile.in (CFLAGS): Use -I../des to pull in include file. + * md5.c, md5crypto.c, md5glue.c, t_mddriver.c: Replace <.../...> + includes with "..."s. + Fri Oct 14 00:22:19 1994 Theodore Y. Ts'o (tytso@dcl) * t_mddriver.c (MDString, MDTestSuite): Cast char pointer to the diff --git a/src/lib/crypto/md5/Makefile.in b/src/lib/crypto/md5/Makefile.in index 7a8c4bf3d..1b85a0db0 100644 --- a/src/lib/crypto/md5/Makefile.in +++ b/src/lib/crypto/md5/Makefile.in @@ -1,4 +1,4 @@ -CFLAGS = $(CCOPTS) $(DEFS) +CFLAGS = $(CCOPTS) $(DEFS) -I../des LDFLAGS = -g all:: $(OBJS) t_mddriver diff --git a/src/lib/crypto/md5/md5.c b/src/lib/crypto/md5/md5.c index 7f498f265..40528a2d1 100644 --- a/src/lib/crypto/md5/md5.c +++ b/src/lib/crypto/md5/md5.c @@ -35,7 +35,7 @@ *********************************************************************** */ -#include +#include "k5-int.h" #include #ifdef __STDC__ diff --git a/src/lib/crypto/md5/md5crypto.c b/src/lib/crypto/md5/md5crypto.c index 64e3d2a7d..d161a5111 100644 --- a/src/lib/crypto/md5/md5crypto.c +++ b/src/lib/crypto/md5/md5crypto.c @@ -1,8 +1,6 @@ -#include -#include +#include "k5-int.h" #include - -#include "../des/des_int.h" /* we cheat a bit and call it directly... */ +#include "des_int.h" /* we cheat a bit and call it directly... */ static krb5_error_code md5_crypto_sum_func(in, in_length, seed, seed_length, outcksum) diff --git a/src/lib/crypto/md5/md5glue.c b/src/lib/crypto/md5/md5glue.c index 439fcb45d..3470664b7 100644 --- a/src/lib/crypto/md5/md5glue.c +++ b/src/lib/crypto/md5/md5glue.c @@ -1,5 +1,4 @@ -#include -#include +#include "k5-int.h" #include static krb5_error_code diff --git a/src/lib/crypto/md5/t_mddriver.c b/src/lib/crypto/md5/t_mddriver.c index a1e5f9182..760c2cccf 100644 --- a/src/lib/crypto/md5/t_mddriver.c +++ b/src/lib/crypto/md5/t_mddriver.c @@ -20,15 +20,13 @@ documentation and/or software. #define MD 5 #endif -#include -#include -#include -#include +#include "k5-int.h" + #if MD == 2 #include "md2.h" #endif #if MD == 4 -#include +#include "rsa-md4.h" #endif #if MD == 5 #include