* Makefile.in (clean-unix): Remove krb_err_txt.c on clean. Update
authorEzra Peisach <epeisach@mit.edu>
Fri, 28 Feb 2003 19:42:59 +0000 (19:42 +0000)
committerEzra Peisach <epeisach@mit.edu>
Fri, 28 Feb 2003 19:42:59 +0000 (19:42 +0000)
dependencies

* g_pw_in_tkt.c: Include krb4int.h for krb_get_keyprocs() prototype.

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

src/lib/krb4/ChangeLog
src/lib/krb4/Makefile.in
src/lib/krb4/g_pw_in_tkt.c

index 56516c8b28425fa422813f57b08f3af0a356f11d..6ae5f55eb1188180c81e8ac04853d5a6fed5995d 100644 (file)
@@ -1,3 +1,10 @@
+2003-02-28  Ezra Peisach  <epeisach@bu.edu>
+
+       * Makefile.in (clean-unix): Remove krb_err_txt.c on clean. Update
+       dependencies
+
+       * g_pw_in_tkt.c: Include krb4int.h for krb_get_keyprocs() prototype.
+
 2003-02-25  Ken Raeburn  <raeburn@mit.edu>
 
        * in_tkt.c: Include k5-util.h.
index 8d896e301d3583f2970954f44dde68b0b634e9cc..3f58247374e1ae773883d056971e564dd77bcede 100644 (file)
@@ -232,6 +232,7 @@ $(EHDRDIR)$(S)kadm_err.h: kadm_err.h
 clean-unix::
        $(RM) $(EHDRDIR)/krb_err.h
        $(RM) $(EHDRDIR)/kadm_err.h
+       $(RM) krb_err_txt.c
 
 clean::
        -$(RM) $(OBJS)
@@ -294,7 +295,8 @@ g_ad_tkt.so g_ad_tkt.po $(OUTPRE)g_ad_tkt.$(OBJEXT): g_ad_tkt.c $(SRCTOP)/includ
 g_pw_in_tkt.so g_pw_in_tkt.po $(OUTPRE)g_pw_in_tkt.$(OBJEXT): g_pw_in_tkt.c $(BUILDTOP)/include/krb5.h \
   $(COM_ERR_DEPS) $(SRCTOP)/include/kerberosIV/krb.h \
   $(SRCTOP)/include/kerberosIV/des.h $(KRB_ERR_H_DEP) \
-  $(BUILDTOP)/include/profile.h $(SRCTOP)/include/kerberosIV/prot.h
+  $(BUILDTOP)/include/profile.h krb4int.h $(SRCTOP)/include/port-sockets.h \
+  $(BUILDTOP)/include/krb5/autoconf.h $(SRCTOP)/include/kerberosIV/prot.h
 g_phost.so g_phost.po $(OUTPRE)g_phost.$(OBJEXT): g_phost.c $(SRCTOP)/include/kerberosIV/krb.h \
   $(SRCTOP)/include/kerberosIV/des.h $(KRB_ERR_H_DEP) \
   $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h $(SRCTOP)/include/port-sockets.h \
@@ -436,10 +438,12 @@ tf_util.so tf_util.po $(OUTPRE)tf_util.$(OBJEXT): tf_util.c $(SRCTOP)/include/ke
   krb4int.h
 dest_tkt.so dest_tkt.po $(OUTPRE)dest_tkt.$(OBJEXT): dest_tkt.c $(SRCTOP)/include/kerberosIV/krb.h \
   $(SRCTOP)/include/kerberosIV/des.h $(KRB_ERR_H_DEP) \
-  $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h
+  $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h $(SRCTOP)/include/k5-util.h \
+  $(BUILDTOP)/include/krb5/autoconf.h
 in_tkt.so in_tkt.po $(OUTPRE)in_tkt.$(OBJEXT): in_tkt.c $(SRCTOP)/include/kerberosIV/krb.h \
   $(SRCTOP)/include/kerberosIV/des.h $(KRB_ERR_H_DEP) \
-  $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h
+  $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h $(SRCTOP)/include/k5-util.h \
+  $(BUILDTOP)/include/krb5/autoconf.h
 tkt_string.so tkt_string.po $(OUTPRE)tkt_string.$(OBJEXT): tkt_string.c $(SRCTOP)/include/kerberosIV/krb.h \
   $(SRCTOP)/include/kerberosIV/des.h $(KRB_ERR_H_DEP) \
   $(COM_ERR_DEPS) $(BUILDTOP)/include/profile.h $(SRCTOP)/include/port-sockets.h \
index fc3f70c55e8f9dc351893c5add90059cd2ffd277..54f97ff72c851dced1c11f9edf08921fa04c39e6 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <krb5.h>
 #include "krb.h"
+#include "krb4int.h"
 #include "krb_err.h"
 #include "prot.h"
 #include <string.h>