* Makefile.in (CFLAGS): Use -I../des to pull in include file.
authorJohn Gilmore <gnu@toad.com>
Thu, 26 Jan 1995 04:21:27 +0000 (04:21 +0000)
committerJohn Gilmore <gnu@toad.com>
Thu, 26 Jan 1995 04:21:27 +0000 (04:21 +0000)
* 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

src/lib/crypto/md5/ChangeLog
src/lib/crypto/md5/Makefile.in
src/lib/crypto/md5/md5.c
src/lib/crypto/md5/md5crypto.c
src/lib/crypto/md5/md5glue.c
src/lib/crypto/md5/t_mddriver.c

index 920f0d724e3c0922a797ce23c644055bd1a48e80..00c8ca22c5ac1da27f600b752b0d7a9fa93c4c3e 100644 (file)
@@ -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
index 7a8c4bf3dda5eeeed0e4569e440c495917d3bcbc..1b85a0db0779a270d8a7a7f770a03f56a3acae8a 100644 (file)
@@ -1,4 +1,4 @@
-CFLAGS = $(CCOPTS) $(DEFS)
+CFLAGS = $(CCOPTS) $(DEFS) -I../des
 LDFLAGS = -g
 
 all:: $(OBJS) t_mddriver
index 7f498f2654069bc52e44e2e93e3b6a0d2b0fc9d1..40528a2d14b78932bcac806d3eba5ebe3f731c62 100644 (file)
@@ -35,7 +35,7 @@
  ***********************************************************************
  */
 
-#include <krb5/krb5.h>
+#include "k5-int.h"
 #include <krb5/rsa-md5.h>
 
 #ifdef __STDC__
index 64e3d2a7ddcae14937eadaa2d5e7ca01a4d8def7..d161a51119bcb1c83f7643f88ec34d5ebc290c83 100644 (file)
@@ -1,8 +1,6 @@
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 #include <krb5/rsa-md5.h>
-
-#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)
index 439fcb45de22de4ef38a7f95b8200e0c2e32271d..3470664b7e270daf518d459a6ab66fe2a3622fcc 100644 (file)
@@ -1,5 +1,4 @@
-#include <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
 #include <krb5/rsa-md5.h>
 
 static krb5_error_code
index a1e5f91829f6572ced934bf62f71dc9fcc84e9b2..760c2cccfdfcc51444a143e523fb2e9913091406 100644 (file)
@@ -20,15 +20,13 @@ documentation and/or software.
 #define MD 5
 #endif
 
-#include <stdio.h>
-#include <time.h>
-#include <string.h>
-#include <krb5/krb5.h>
+#include "k5-int.h"
+
 #if MD == 2
 #include "md2.h"
 #endif
 #if MD == 4
-#include <krb5/rsa-md4.h>
+#include "rsa-md4.h"
 #endif
 #if MD == 5
 #include <krb5/rsa-md5.h>