Rename files so that they work in the DOS LIB command,
authorJohn Gilmore <gnu@toad.com>
Fri, 3 Feb 1995 10:46:39 +0000 (10:46 +0000)
committerJohn Gilmore <gnu@toad.com>
Fri, 3 Feb 1995 10:46:39 +0000 (10:46 +0000)
which amazingly finds dashes in mid-name and treats them
like option switches.

* des-crc.c => des_crc.c
* des-md5.c => des_md5.c
* raw-des.c => raw_des.c
* Makefile.in:  changed to match.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4888 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/crypto/ChangeLog
src/lib/crypto/Makefile.in
src/lib/crypto/des_crc.c [moved from src/lib/crypto/des-crc.c with 100% similarity]
src/lib/crypto/des_md5.c [moved from src/lib/crypto/des-md5.c with 100% similarity]
src/lib/crypto/raw_des.c [moved from src/lib/crypto/raw-des.c with 100% similarity]

index 914d33d9f57c8ba4847c18f0b4f6a83d8d8c3e6c..be20248e02d3ed74b7f05fa62feb85e82acaaf57 100644 (file)
@@ -1,3 +1,14 @@
+Fri Feb  3 02:44:07 1995  John Gilmore  <gnu@cygnus.com>
+
+       Rename files so that they work in the DOS LIB command,
+       which amazingly finds dashes in mid-name and treats them
+       like option switches.
+
+       * des-crc.c => des_crc.c
+       * des-md5.c => des_md5.c
+       * raw-des.c => raw_des.c
+       * Makefile.in:  changed to match.
+
 Thu Feb  2 02:59:58 1995  John Gilmore  <gnu@cygnus.com>
 
        * Makefile.in (CFLAGS):  Handle $(srcdir) properly in -I options.
index 5a194bba1d62a7f1b2accaa322dfd7a1f6616c55..e2275b6a9301fedc9de79fc814709ff36612aa22 100644 (file)
@@ -5,14 +5,14 @@ LDFLAGS = -g
 TST=if test -n "`cat DONE`" ; then
 
 OBJS=  cryptoconf.o \
-       des-crc.o \
-       des-md5.o \
-       raw-des.o
+       des_crc.o \
+       des_md5.o \
+       raw_des.o
 
 SRCS=  $(srcdir)/cryptoconf.c \
-       $(srcdir)/des-crc.c \
-       $(srcdir)/des-md5.c \
-       $(srcdir)/raw-des.c 
+       $(srcdir)/des_crc.c \
+       $(srcdir)/des_md5.c \
+       $(srcdir)/raw_des.c 
 
 all::