cleanup
authorKen Raeburn <raeburn@mit.edu>
Tue, 10 Apr 2001 04:04:09 +0000 (04:04 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 10 Apr 2001 04:04:09 +0000 (04:04 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13154 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/des425/ChangeLog
src/lib/des425/Makefile.in
src/lib/des425/k4_glue.c [deleted file]

index 15efee53b1ddd3d2147f643e5a9a9e9a152b98a5..412dc648433430991b1983c5316dc6b6fb2f7b6a 100644 (file)
@@ -1,3 +1,10 @@
+2001-04-10  Ken Raeburn  <raeburn@mit.edu>
+
+       * Makefile.in (STLIBOBJS, OBJS, SRCS): Delete references to
+       k4_glue.c etc.
+       (clean): Remove t_quad and t_pcbc object files and test programs.
+       * k4_glue.c: Deleted.
+
 2001-04-09  Ken Raeburn  <raeburn@mit.edu>
 
        * t_pcbc.c: New file.
index 60ee9bba6092435e08b731196b147eb3fc573c16..70ce858d2671aa2623c00573d14359e69f93568a 100644 (file)
@@ -41,8 +41,7 @@ STLIBOBJS=cksum.o     \
        str_to_key.o    \
        unix_time.o     \
        util.o          \
-       weak_key.o      \
-       k4_glue.o
+       weak_key.o
 
 
 OBJS=  $(OUTPRE)cksum.$(OBJEXT)        \
@@ -58,8 +57,7 @@ OBJS= $(OUTPRE)cksum.$(OBJEXT)        \
        $(OUTPRE)str_to_key.$(OBJEXT)   \
        $(OUTPRE)unix_time.$(OBJEXT)    \
        $(OUTPRE)util.$(OBJEXT)         \
-       $(OUTPRE)weak_key.$(OBJEXT)     \
-       $(OUTPRE)k4_glue.$(OBJEXT)
+       $(OUTPRE)weak_key.$(OBJEXT)
 
 SRCS=  $(srcdir)/cksum.c       \
        $(srcdir)/des.c         \
@@ -74,8 +72,7 @@ SRCS= $(srcdir)/cksum.c       \
        $(srcdir)/str_to_key.c  \
        $(srcdir)/unix_time.c   \
        $(srcdir)/util.c        \
-       $(srcdir)/weak_key.c    \
-       $(srcdir)/k4_glue.c
+       $(srcdir)/weak_key.c
 
 all-unix:: all-liblinks
 all-mac:: $(OBJS)
@@ -104,7 +101,9 @@ check-unix:: verify t_quad t_pcbc
 check-windows::
 
 clean:: 
-       $(RM) $(OUTPRE)verify$(EXEEXT) $(OUTPRE)verify.$(OBJEXT)
+       $(RM) $(OUTPRE)verify$(EXEEXT) $(OUTPRE)verify.$(OBJEXT) \
+               $(OUTPRE)t_quad$(EXEEXT) $(OUTPRE)t_quad.$(OBJEXT) \
+               $(OUTPRE)t_pcbc$(EXEEXT) $(OUTPRE)t_pcbc.$(OBJEXT)
 
 clean-unix:: clean-liblinks clean-libs clean-libobjs
 
diff --git a/src/lib/des425/k4_glue.c b/src/lib/des425/k4_glue.c
deleted file mode 100644 (file)
index cab1891..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * lib/des425/k4_glue.c
- *
- * Copyright 1995 by the Massachusetts Institute of Technology.
- * All Rights Reserved.
- *
- * Export of this software from the United States of America may
- *   require a specific license from the United States Government.
- *   It is the responsibility of any person or organization contemplating
- *   export to obtain such a license before exporting.
- *
- * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
- * distribute this software and its documentation for any purpose and
- * without fee is hereby granted, provided that the above copyright
- * notice appear in all copies and that both that copyright notice and
- * this permission notice appear in supporting documentation, and that
- * the name of M.I.T. not be used in advertising or publicity pertaining
- * to distribution of the software without specific, written prior
- * permission.  Furthermore if you modify this software you must label
- * your software as modified software and not distribute it in such a
- * fashion that it might be confused with the original M.I.T. software.
- * M.I.T. makes no representations about the suitability of
- * this software for any purpose.  It is provided "as is" without express
- * or implied warranty.
- *
- */
-
-/*
- * k4_glue.c   - The glue which holds us together with old versions of K4.
- */
-
-/*
- * This is here because old versions of the Kerberos version 4 library
- * reference this symbol.  It's just a dangling reference which is supposed
- * to be defined by referencing modules.  For the purpose of building shared
- * libraries, we'll need a definition, and since the des425 library is
- * required for K4 compatability, this is as good a place as any.
- *
- * In an effort to keep this bit of (ahem) logic from being too intrusive,
- * we use #pragma weak, if available, otherwise just go with a normal def.
- */
-
-#if    HAVE_PRAGMA_WEAK
-#pragma weak req_act_vno = des425_req_act_vno
-const int des425_req_act_vno = 4;
-#else  /* HAVE_PRAGMA_WEAK */
-const int req_act_vno = 4;
-#endif /* HAVE_PRAGMA_WEAK */