summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1994-07-13 01:04:39 +0000
committerTheodore Tso <tytso@mit.edu>1994-07-13 01:04:39 +0000
commita0ee97a6599f40608452a76e5eba0c0816ff57ee (patch)
treee243f65a57f48bd97a60e856d898bf4ef2e5771f /src
parent42caf5c6ac35c3b463f5a07195efef68082e269c (diff)
downloadkrb5-a0ee97a6599f40608452a76e5eba0c0816ff57ee.tar.gz
krb5-a0ee97a6599f40608452a76e5eba0c0816ff57ee.tar.xz
krb5-a0ee97a6599f40608452a76e5eba0c0816ff57ee.zip
Remove no longer used files...
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3965 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/autotools/default-in-prefix19
-rw-r--r--src/autotools/lndir97
-rw-r--r--src/autotools/makeaclocals14
-rw-r--r--src/autotools/reconf8
4 files changed, 0 insertions, 138 deletions
diff --git a/src/autotools/default-in-prefix b/src/autotools/default-in-prefix
deleted file mode 100644
index 0baddd1a7..000000000
--- a/src/autotools/default-in-prefix
+++ /dev/null
@@ -1,19 +0,0 @@
-SUBDIRS = @SUBDIRS@
-
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-DEFS = @DEFS@
-LIBS = @LIBS@
-
-CFLAGS = -g $(DEFS)
-LDFLAGS = -g
-
-RM = rm -f
-CP = cp
-
-BUILDTOP = ../../..
-SRCTOP = $(srcdir)/$(BUILDTOP)
-
-all:: $(OBJS)
-
diff --git a/src/autotools/lndir b/src/autotools/lndir
deleted file mode 100644
index e12503e1d..000000000
--- a/src/autotools/lndir
+++ /dev/null
@@ -1,97 +0,0 @@
-#! /bin/sh
-
-# lndir - create shadow link tree
-#
-# Time stamp <89/11/28 18:56:54 gildea>
-# By Stephen Gildea <gildea@bbn.com> based on
-# XConsortium: lndir.sh,v 1.1 88/10/20 17:37:16 jim Exp
-#
-# Used to create a copy of the a directory tree that has links for all non-
-# directories (except those named RCS). If you are building the distribution
-# on more than one machine, you should use this script.
-#
-# If your master sources are located in /usr/local/src/X and you would like
-# your link tree to be in /usr/local/src/new-X, do the following:
-#
-# % mkdir /usr/local/src/new-X
-# % cd /usr/local/src/new-X
-# % lndir ../X
-#
-# Note: does not link files beginning with "." Is this a bug or a feature?
-#
-# Improvements over R3 version:
-# Allows the fromdir to be relative: usually you want to say "../dist"
-# The name is relative to the todir, not the current directory.
-#
-# Bugs in R3 version fixed:
-# Do "pwd" command *after* "cd $DIRTO".
-# Don't try to link directories, avoiding error message "<dir> exists".
-# Barf with Usage message if either DIRFROM *or* DIRTO is not a directory.
-
-USAGE="Usage: $0 fromdir [todir]"
-
-if [ $# -lt 1 -o $# -gt 2 ]
-then
- echo "$USAGE"
- exit 1
-fi
-
-DIRFROM=$1
-
-if [ $# -eq 2 ];
-then
- DIRTO=$2
-else
- DIRTO=.
-fi
-
-if [ ! -d $DIRTO ]
-then
- echo "$0: $DIRTO is not a directory"
- echo "$USAGE"
- exit 2
-fi
-
-cd $DIRTO
-
-if [ ! -d $DIRFROM ]
-then
- echo "$0: $DIRFROM is not a directory"
- echo "$USAGE"
- exit 2
-fi
-
-pwd=`pwd`
-
-if [ `(cd $DIRFROM; pwd)` = $pwd ]
-then
- echo "$pwd: FROM and TO are identical!"
- exit 1
-fi
-
-for file in `ls $DIRFROM`
-do
- if [ ! -d $DIRFROM/$file ]
- then
- ln -s $DIRFROM/$file .
- else
- if [ $file != RCS -a $file != CVS -a $file != . -a $file != .. ]
- then
- echo $file:
- mkdir $file
- (cd $file
- pwd=`pwd`
- case "$DIRFROM" in
- /*) ;;
- *) DIRFROM=../$DIRFROM ;;
- esac
- if [ `(cd $DIRFROM/$file; pwd)` = $pwd ]
- then
- echo "$pwd: FROM and TO are identical!"
- exit 1
- fi
- $0 $DIRFROM/$file
- )
- fi
- fi
-done
diff --git a/src/autotools/makeaclocals b/src/autotools/makeaclocals
deleted file mode 100644
index 4c10a4579..000000000
--- a/src/autotools/makeaclocals
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-for i in `find . -type d ! -name CVS -print`; do
- k=`echo $i | sed -e 's/[^/]//g' \
- -e 's/\//..\//g' \
- -e 's/\(.*\)\/$/.\/\1/'`
- if test $i != . ; then
- echo match: $i $k
- cat >$i/aclocal.m4<<EOF
-sinclude([$k/aclocal.m4])dnl
-undefine([AC_BUILDTOP])dnl
-define(AC_BUILDTOP,[$k])dnl
-EOF
- fi
-done
diff --git a/src/autotools/reconf b/src/autotools/reconf
deleted file mode 100644
index d32af15df..000000000
--- a/src/autotools/reconf
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-for i in `find . -name configure.in -print`; do
- j=`echo $i | sed s/configure.in//`
- echo $j
- (cd $j; autoconf)
-done
-echo include/krb5
-(cd include/krb5; autoheader)