svn rev #3254: trunk/ gssftp/ftp/ gssftp/ftpd/ libpty/ telnet/libtelnet/ telnet/telnetd/
ghudson@MIT.EDU
ghudson at MIT.EDU
Thu Jul 9 12:01:12 EDT 2009
Commit By: ghudson
Log Message:
Add missing depfix.pl for "make depend", and run make depend.
Changed Files:
A trunk/depfix.pl
U trunk/gssftp/ftp/deps
U trunk/gssftp/ftpd/deps
U trunk/libpty/deps
U trunk/telnet/libtelnet/deps
U trunk/telnet/telnetd/deps
Added: trunk/depfix.pl
===================================================================
--- trunk/depfix.pl 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/depfix.pl 2009-07-09 16:01:11 UTC (rev 3254)
@@ -0,0 +1,223 @@
+#!env perl -w
+#
+# Copyright 1995,2001,2002,2003,2004,2005,2009 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.
+#
+
+eval 'exec perl -S $0 ${1+"$@"}'
+ if 0;
+$0 =~ s/^.*?(\w+)[\.\w+]*$/$1/;
+
+# Input: srctop thisdir srcdir buildtop libgccfilename stlibobjs
+
+# Notes: myrelativedir is something like "lib/krb5/asn.1" or ".".
+# stlibobjs will usually be empty, or include spaces.
+
+# A typical set of inputs, produced with srcdir=.. at top level:
+#
+# SRCTOP = ../../../util/et/../..
+# thisdir = util/et
+# srcdir = ../../../util/et
+# BUILDTOP = ../..
+# libgcc file name = /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/libgcc.a
+# STLIBOBJS = error_message.o et_name.o com_err.o
+
+my($SRCTOP,$thisdir,$srcdir,$BUILDTOP,$libgccpath,$STLIBOBJS) = @ARGV;
+
+if (0) {
+ print STDERR "SRCTOP = $SRCTOP\n";
+ print STDERR "BUILDTOP = $BUILDTOP\n";
+ print STDERR "STLIBOBJS = $STLIBOBJS\n";
+}
+
+$libgccincdir = $libgccpath;
+$libgccincdir =~ s,libgcc\.[^ ]*$,include,;
+$libgccincdir = quotemeta($libgccincdir);
+#$srcdirpat = quotemeta($srcdir);
+
+# Tweak here if you need to ignore additional directories.
+#my(@ignoredirs) = ( $libgccincdir, "/var/raeburn/openldap/Install/include" );
+my(@ignoredirs) = ( $libgccincdir );
+
+my($extrasuffixes) = ($STLIBOBJS ne "");
+
+sub my_qm {
+ my($x) = @_;
+ $x = quotemeta($x);
+ $x =~ s,\\/,/,g;
+ return $x;
+}
+
+sub strrep {
+ my($old,$new,$s) = @_;
+ my($l) = "strrep('$old','$new','$s')";
+ my($out) = "";
+ while ($s ne "") {
+ my($i) = index($s, $old);
+ if ($i == -1) {
+ $out .= $s;
+ $s = "";
+ } else {
+ $out .= substr($s, 0, $i) . $new;
+ if (length($s) > $i + length($old)) {
+ $s = substr($s, $i + length($old));
+ } else {
+ $s = "";
+ }
+ }
+ }
+# print STDERR "$l = '$out'\n";
+ return $out;
+}
+
+sub do_subs {
+ local($_) = @_;
+ s,\\$, \\,g; s, + \\$, \\,g;
+ s,//+,/,g; s, \./, ,g;
+ if ($extrasuffixes) {
+ # Only care about the additional prefixes if we're building
+ # shared libraries.
+ s,^([a-zA-Z0-9_\-]*)\.o:,$1.so $1.po \$(OUTPRE)$1.\$(OBJEXT):,;
+ } else {
+ s,^([a-zA-Z0-9_\-]*)\.o:,\$(OUTPRE)$1.\$(OBJEXT):,;
+ }
+ # Drop GCC include files, they're basically system headers.
+ my ($x);
+ foreach $x (@ignoredirs) {
+ s,$x/[^ ]* ,,g;
+ s,$x/[^ ]*$,,g;
+ }
+ # Recognize $(SRCTOP) and variants.
+ my($srct) = $SRCTOP . "/";
+ $_ = strrep(" $srct", " \$(SRCTOP)/", $_);
+# s, $pat, \$(SRCTOP)/,go;
+ while ($srct =~ m,/[a-z][a-zA-Z0-9_.\-]*/\.\./,) {
+ $srct =~ s,/[a-z][a-zA-Z0-9_.\-]*/\.\./,/,;
+ $_ = strrep(" $srct", " \$(SRCTOP)/", $_);
+ }
+ # Now try to produce pathnames relative to $(srcdir).
+ if ($thisdir eq ".") {
+ # blah
+ } else {
+ my($pat) = " \$(SRCTOP)/$thisdir/";
+ my($out) = " \$(srcdir)/";
+ $_ = strrep($pat, $out, $_);
+ while ($pat =~ m,/[a-z][a-zA-Z0-9_.\-]*/$,) {
+ $pat =~ s,/[a-z][a-zA-Z0-9_.\-]*/$,/,;
+ $out .= "../";
+ if ($pat ne " \$(SRCTOP)/") {
+ $_ = strrep($pat, $out, $_);
+ }
+ }
+ }
+ # Now substitute for BUILDTOP:
+ $_ = strrep(" $BUILDTOP/", " \$(BUILDTOP)/", $_);
+ return $_;
+}
+
+sub do_subs_2 {
+ local($_) = @_;
+ # Add a trailing space.
+ s/$/ /;
+ # Remove excess spaces.
+ s/ */ /g;
+ # Delete Tcl-specific headers.
+ s;/[^ ]*/tcl\.h ;;g;
+ s;/[^ ]*/tclDecls\.h ;;g;
+ s;/[^ ]*/tclPlatDecls\.h ;;g;
+ # Delete system-specific or compiler-specific files.
+ s;/os/usr/include/[^ ]* ;;g;
+ s;/usr/include/[^ ]* ;;g;
+ s;/usr/lib/[^ ]* ;;g;
+ # Remove foo/../ sequences.
+ while (m/\/[a-z][a-z0-9_.\-]*\/\.\.\//) {
+ s//\//g;
+ }
+ # Use VPATH.
+ s;\$\(srcdir\)/([^ /]* );$1;g;
+
+ # Allow override of some util dependencies in case local tools are used.
+ s;\$\(BUILDTOP\)/include/com_err.h ;\$(COM_ERR_DEPS) ;g;
+ s;\$\(BUILDTOP\)/include/ss/ss.h \$\(BUILDTOP\)/include/ss/ss_err.h ;\$(SS_DEPS) ;g;
+ s;\$\(BUILDTOP\)/include/db.h \$\(BUILDTOP\)/include/db-config.h ;\$(DB_DEPS) ;g;
+
+ $_ = &uniquify($_);
+
+ # Delete trailing whitespace.
+ s; *$;;g;
+
+ return $_;
+}
+
+sub uniquify {
+ # Apparently some versions of gcc -- like
+ # "gcc version 3.4.4 20050721 (Red Hat 3.4.4-2)"
+ # -- will sometimes emit duplicate header file names.
+ local($_) = @_;
+ my(@sides) = split ": ", $_;
+ my($lhs) = "";
+ if ($#sides == 1) {
+ $lhs = $sides[0] . ": ";
+ $_ = $sides[1];
+ }
+ my(@words) = split " ", $_;
+ my($w);
+ my($result) = "";
+ my(%seen);
+ undef %seen;
+ foreach $w (sort { $a cmp $b; } @words) {
+ next if defined($seen{$w});
+ $seen{$w} = 1;
+ if ($result ne "") { $result .= " "; }
+ $result .= $w;
+ }
+ return $lhs . $result . " ";
+}
+
+sub split_lines {
+ local($_) = @_;
+ s/(.{50}[^ ]*) /$1 \\\n /g;
+ return $_ . "\n";
+}
+
+print <<EOH ;
+#
+# Generated makefile dependencies follow.
+#
+EOH
+my $buf = '';
+while (<STDIN>) {
+ # Strip newline.
+ chop;
+ next if /^\s*#/;
+ # Do directory-specific path substitutions on each filename read.
+ $_ = &do_subs($_);
+ if (m/\\$/) {
+ chop;
+ $buf .= $_;
+ } else {
+ $buf = &do_subs_2($buf . $_);
+ print &split_lines($buf);
+ $buf = '';
+ }
+}
+exit 0;
Modified: trunk/gssftp/ftp/deps
===================================================================
--- trunk/gssftp/ftp/deps 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/gssftp/ftp/deps 2009-07-09 16:01:11 UTC (rev 3254)
@@ -4,21 +4,22 @@
$(OUTPRE)cmds.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
$(SRCTOP)/port-sockets.h $(srcdir)/../arpa/ftp.h cmds.c \
ftp_var.h pathnames.h
-$(OUTPRE)cmdtab.$(OBJEXT): cmdtab.c ftp_var.h
-$(OUTPRE)domacro.$(OBJEXT): domacro.c ftp_var.h
+$(OUTPRE)cmdtab.$(OBJEXT): $(BUILDTOP)/autoconf.h cmdtab.c \
+ ftp_var.h
+$(OUTPRE)domacro.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ domacro.c ftp_var.h
$(OUTPRE)ftp.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
$(SRCTOP)/port-sockets.h $(srcdir)/../arpa/ftp.h $(srcdir)/../arpa/telnet.h \
- /me/base/include/com_err.h /me/base/include/gssapi/gssapi.h \
- /me/base/include/gssapi/gssapi_ext.h /me/base/include/gssapi/gssapi_generic.h \
- /me/base/include/gssapi/gssapi_krb5.h /me/base/include/krb5.h \
- /me/base/include/krb5/krb5.h ftp.c ftp_var.h secure.h
-$(OUTPRE)getpass.$(OBJEXT): ftp_var.h getpass.c
+ ftp.c ftp_var.h secure.h
+$(OUTPRE)getpass.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ ftp_var.h getpass.c
$(OUTPRE)glob.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
ftp_var.h glob.c
$(OUTPRE)main.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/port-sockets.h \
$(srcdir)/../arpa/ftp.h ftp_var.h main.c
-$(OUTPRE)radix.$(OBJEXT): ftp_var.h radix.c
-$(OUTPRE)ruserpass.$(OBJEXT): ftp_var.h ruserpass.c
+$(OUTPRE)radix.$(OBJEXT): $(BUILDTOP)/autoconf.h ftp_var.h \
+ radix.c
+$(OUTPRE)ruserpass.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ ftp_var.h ruserpass.c
$(OUTPRE)secure.$(OBJEXT): $(BUILDTOP)/autoconf.h $(srcdir)/../arpa/ftp.h \
- /me/base/include/gssapi/gssapi.h /me/base/include/gssapi/gssapi_generic.h \
secure.c secure.h
Modified: trunk/gssftp/ftpd/deps
===================================================================
--- trunk/gssftp/ftpd/deps 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/gssftp/ftpd/deps 2009-07-09 16:01:11 UTC (rev 3254)
@@ -4,24 +4,18 @@
$(OUTPRE)ftpd.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
$(SRCTOP)/k5-util.h $(SRCTOP)/libpty/libpty.h $(SRCTOP)/port-sockets.h \
$(srcdir)/../arpa/ftp.h $(srcdir)/../arpa/telnet.h \
- /me/base/include/com_err.h /me/base/include/gssapi/gssapi.h \
- /me/base/include/gssapi/gssapi_ext.h /me/base/include/gssapi/gssapi_generic.h \
- /me/base/include/gssapi/gssapi_krb5.h /me/base/include/krb5.h \
- /me/base/include/krb5/krb5.h ftpd.c ftpd_var.h pathnames.h \
- secure.h
-$(OUTPRE)ftpcmd.$(OBJEXT): $(srcdir)/../arpa/ftp.h \
- $(srcdir)/../arpa/telnet.h /me/base/include/gssapi/gssapi.h \
- /me/base/include/gssapi/gssapi_generic.h ftpcmd.c ftpd_var.h
-$(OUTPRE)popen.$(OBJEXT): /me/base/include/gssapi/gssapi.h \
- /me/base/include/gssapi/gssapi_generic.h ftpd_var.h \
+ ftpd.c ftpd_var.h pathnames.h secure.h
+$(OUTPRE)ftpcmd.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
+ $(srcdir)/../arpa/ftp.h $(srcdir)/../arpa/telnet.h \
+ ftpcmd.c ftpd_var.h
+$(OUTPRE)popen.$(OBJEXT): $(BUILDTOP)/autoconf.h ftpd_var.h \
popen.c
$(OUTPRE)vers.$(OBJEXT): vers.c
$(OUTPRE)glob.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
$(srcdir)/../ftp/ftp_var.h $(srcdir)/../ftp/glob.c
-$(OUTPRE)radix.$(OBJEXT): $(srcdir)/../ftp/ftp_var.h \
+$(OUTPRE)radix.$(OBJEXT): $(BUILDTOP)/autoconf.h $(srcdir)/../ftp/ftp_var.h \
$(srcdir)/../ftp/radix.c
$(OUTPRE)secure.$(OBJEXT): $(BUILDTOP)/autoconf.h $(srcdir)/../arpa/ftp.h \
- $(srcdir)/../ftp/secure.c $(srcdir)/../ftp/secure.h \
- /me/base/include/gssapi/gssapi.h /me/base/include/gssapi/gssapi_generic.h
+ $(srcdir)/../ftp/secure.c $(srcdir)/../ftp/secure.h
$(OUTPRE)getdtablesize.$(OBJEXT): $(SRCTOP)/bsd/getdtablesize.c
$(OUTPRE)setenv.$(OBJEXT): $(SRCTOP)/bsd/setenv.c
Modified: trunk/libpty/deps
===================================================================
--- trunk/libpty/deps 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/libpty/deps 2009-07-09 16:01:11 UTC (rev 3254)
@@ -1,40 +1,30 @@
#
# Generated makefile dependencies follow.
#
-$(OUTPRE)pty_err.$(OBJEXT): pty_err.c
$(OUTPRE)cleanup.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h cleanup.c libpty.h pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h cleanup.c libpty.h pty-int.h
$(OUTPRE)getpty.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/k5-platform.h \
- $(SRCTOP)/port-sockets.h getpty.c libpty.h pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h getpty.c libpty.h pty-int.h
$(OUTPRE)init_slave.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h init_slave.c libpty.h pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h init_slave.c libpty.h pty-int.h
$(OUTPRE)open_ctty.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h open_ctty.c pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h libpty.h open_ctty.c pty-int.h
$(OUTPRE)open_slave.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h open_slave.c pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h libpty.h open_slave.c pty-int.h
$(OUTPRE)update_utmp.$(OBJEXT): $(BUILDTOP)/autoconf.h \
$(SRCTOP)/k5-platform.h $(SRCTOP)/port-sockets.h libpty.h \
- pty-int.h pty_err.h update_utmp.c
+ pty-int.h update_utmp.c
$(OUTPRE)update_wtmp.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h pty-int.h pty_err.h \
- update_wtmp.c
+ $(SRCTOP)/port-sockets.h libpty.h pty-int.h update_wtmp.c
$(OUTPRE)vhangup.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h pty-int.h pty_err.h \
- vhangup.c
+ $(SRCTOP)/port-sockets.h libpty.h pty-int.h vhangup.c
$(OUTPRE)void_assoc.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h pty-int.h pty_err.h \
- void_assoc.c
+ $(SRCTOP)/port-sockets.h libpty.h pty-int.h void_assoc.c
$(OUTPRE)logwtmp.$(OBJEXT): $(BUILDTOP)/autoconf.h \
- $(SRCTOP)/port-sockets.h libpty.h logwtmp.c pty-int.h \
- pty_err.h
+ $(SRCTOP)/port-sockets.h libpty.h logwtmp.c pty-int.h
$(OUTPRE)init.$(OBJEXT): $(BUILDTOP)/autoconf.h $(SRCTOP)/port-sockets.h \
- init.c libpty.h pty-int.h pty_err.h
+ init.c libpty.h pty-int.h
+$(OUTPRE)err.$(OBJEXT): err.c libpty.h
$(OUTPRE)sane_hostname.$(OBJEXT): $(BUILDTOP)/autoconf.h \
$(SRCTOP)/fake-addrinfo.h $(SRCTOP)/k5-platform.h $(SRCTOP)/port-sockets.h \
- $(SRCTOP)/socket-utils.h libpty.h pty-int.h pty_err.h \
- sane_hostname.c
+ $(SRCTOP)/socket-utils.h libpty.h pty-int.h sane_hostname.c
Modified: trunk/telnet/libtelnet/deps
===================================================================
--- trunk/telnet/libtelnet/deps 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/telnet/libtelnet/deps 2009-07-09 16:01:11 UTC (rev 3254)
@@ -1,31 +1,37 @@
#
# Generated makefile dependencies follow.
#
-$(OUTPRE)auth.$(OBJEXT): $(srcdir)/../arpa/telnet.h \
+$(OUTPRE)auth.$(OBJEXT): $(BUILDTOP)/autoconf.h $(srcdir)/../arpa/telnet.h \
auth-proto.h auth.c auth.h enc-proto.h encrypt.h misc-proto.h
-$(OUTPRE)encrypt.$(OBJEXT): $(srcdir)/../arpa/telnet.h \
- enc-proto.h encrypt.c encrypt.h misc-proto.h misc.h
-$(OUTPRE)genget.$(OBJEXT): genget.c misc-proto.h misc.h
-$(OUTPRE)misc.$(OBJEXT): auth-proto.h auth.h enc-proto.h \
- encrypt.h misc-proto.h misc.c misc.h
+$(OUTPRE)encrypt.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ $(srcdir)/../arpa/telnet.h enc-proto.h encrypt.c encrypt.h \
+ misc-proto.h misc.h
+$(OUTPRE)genget.$(OBJEXT): $(BUILDTOP)/autoconf.h genget.c \
+ misc-proto.h misc.h
+$(OUTPRE)misc.$(OBJEXT): $(BUILDTOP)/autoconf.h auth-proto.h \
+ auth.h enc-proto.h encrypt.h misc-proto.h misc.c misc.h
$(OUTPRE)kerberos5.$(OBJEXT): $(BUILDTOP)/autoconf.h \
$(SRCTOP)/k5-platform.h $(srcdir)/../arpa/telnet.h \
- /me/base/include/com_err.h /me/base/include/krb5.h \
- /me/base/include/krb5/krb5.h auth-proto.h auth.h enc-proto.h \
- encrypt.h kerberos5.c krb5forw.h misc-proto.h misc.h
-$(OUTPRE)forward.$(OBJEXT): /me/base/include/com_err.h \
- /me/base/include/krb5.h /me/base/include/krb5/krb5.h \
+ auth-proto.h auth.h enc-proto.h encrypt.h kerberos5.c \
+ krb5forw.h misc-proto.h misc.h
+$(OUTPRE)forward.$(OBJEXT): $(BUILDTOP)/autoconf.h \
forward.c krb5forw.h
-$(OUTPRE)enc_des.$(OBJEXT): $(srcdir)/../arpa/telnet.h \
- /me/base/include/com_err.h /me/base/include/krb5.h \
- /me/base/include/krb5/krb5.h enc-proto.h enc_des.c \
- encrypt.h key-proto.h misc-proto.h
-$(OUTPRE)setenv.$(OBJEXT): misc-proto.h setenv.c
-$(OUTPRE)getent.$(OBJEXT): getent.c gettytab.h
-$(OUTPRE)parsetos.$(OBJEXT): misc-proto.h parsetos.c
-$(OUTPRE)strdup.$(OBJEXT): strdup.c
-$(OUTPRE)strcasecmp.$(OBJEXT): strcasecmp.c
-$(OUTPRE)strchr.$(OBJEXT): strchr.c
-$(OUTPRE)strrchr.$(OBJEXT): strrchr.c
-$(OUTPRE)strftime.$(OBJEXT): strftime.c
-$(OUTPRE)strerror.$(OBJEXT): strerror.c
+$(OUTPRE)enc_des.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ $(srcdir)/../arpa/telnet.h enc-proto.h enc_des.c encrypt.h \
+ key-proto.h misc-proto.h
+$(OUTPRE)setenv.$(OBJEXT): $(BUILDTOP)/autoconf.h misc-proto.h \
+ setenv.c
+$(OUTPRE)getent.$(OBJEXT): $(BUILDTOP)/autoconf.h getent.c \
+ gettytab.h
+$(OUTPRE)parsetos.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ misc-proto.h parsetos.c
+$(OUTPRE)strdup.$(OBJEXT): $(BUILDTOP)/autoconf.h strdup.c
+$(OUTPRE)strcasecmp.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ strcasecmp.c
+$(OUTPRE)strchr.$(OBJEXT): $(BUILDTOP)/autoconf.h strchr.c
+$(OUTPRE)strrchr.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ strrchr.c
+$(OUTPRE)strftime.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ strftime.c
+$(OUTPRE)strerror.$(OBJEXT): $(BUILDTOP)/autoconf.h \
+ strerror.c
Modified: trunk/telnet/telnetd/deps
===================================================================
--- trunk/telnet/telnetd/deps 2009-07-09 15:59:01 UTC (rev 3253)
+++ trunk/telnet/telnetd/deps 2009-07-09 16:01:11 UTC (rev 3254)
@@ -6,9 +6,8 @@
$(SRCTOP)/port-sockets.h $(SRCTOP)/socket-utils.h $(srcdir)/../arpa/telnet.h \
$(srcdir)/../libtelnet/auth-proto.h $(srcdir)/../libtelnet/auth.h \
$(srcdir)/../libtelnet/enc-proto.h $(srcdir)/../libtelnet/encrypt.h \
- $(srcdir)/../libtelnet/misc-proto.h /me/base/include/com_err.h \
- /me/base/include/krb5.h /me/base/include/krb5/krb5.h \
- defs.h ext.h pathnames.h telnetd.c telnetd.h
+ $(srcdir)/../libtelnet/misc-proto.h defs.h ext.h pathnames.h \
+ telnetd.c telnetd.h
$(OUTPRE)termio-tn.$(OBJEXT): $(BUILDTOP)/autoconf.h \
termio-tn.c
$(OUTPRE)termios-tn.$(OBJEXT): $(BUILDTOP)/autoconf.h \
@@ -28,9 +27,7 @@
$(SRCTOP)/k5-platform.h $(SRCTOP)/libpty/libpty.h $(SRCTOP)/port-sockets.h \
$(SRCTOP)/socket-utils.h $(srcdir)/../arpa/telnet.h \
$(srcdir)/../libtelnet/auth-proto.h $(srcdir)/../libtelnet/auth.h \
- /me/base/include/com_err.h /me/base/include/krb5.h \
- /me/base/include/krb5/krb5.h defs.h ext.h pathnames.h \
- sys_term.c telnetd.h
+ defs.h ext.h pathnames.h sys_term.c telnetd.h
$(OUTPRE)utility.$(OBJEXT): $(BUILDTOP)/autoconf.h \
$(SRCTOP)/k5-platform.h $(SRCTOP)/port-sockets.h $(SRCTOP)/socket-utils.h \
$(srcdir)/../arpa/telnet.h $(srcdir)/../libtelnet/auth-proto.h \
More information about the Krb5-appl-commits
mailing list