summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-01-26 04:21:27 +0000
committerJohn Gilmore <gnu@toad.com>1995-01-26 04:21:27 +0000
commit165f067c4adb444247271cb690214e33f6c09d3b (patch)
treecb4af89f7fe53dc1f6bab34509c1bfce20165b33 /src/lib
parent84c0ad2a511865c669768c5734be850d82d56354 (diff)
downloadkrb5-165f067c4adb444247271cb690214e33f6c09d3b.tar.gz
krb5-165f067c4adb444247271cb690214e33f6c09d3b.tar.xz
krb5-165f067c4adb444247271cb690214e33f6c09d3b.zip
* 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
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/md5/ChangeLog6
-rw-r--r--src/lib/crypto/md5/Makefile.in2
-rw-r--r--src/lib/crypto/md5/md5.c2
-rw-r--r--src/lib/crypto/md5/md5crypto.c6
-rw-r--r--src/lib/crypto/md5/md5glue.c3
-rw-r--r--src/lib/crypto/md5/t_mddriver.c8
6 files changed, 14 insertions, 13 deletions
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 <krb5/krb5.h>
+#include "k5-int.h"
#include <krb5/rsa-md5.h>
#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 <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)
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 <krb5/krb5.h>
-#include <krb5/ext-proto.h>
+#include "k5-int.h"
#include <krb5/rsa-md5.h>
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 <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>