summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-01-27 06:04:47 +0000
committerTheodore Tso <tytso@mit.edu>1999-01-27 06:04:47 +0000
commit34a68f6d0a8d5545c4c20c79e351a9e8a4d0c101 (patch)
tree00c337c353bd5a68137ae036cbcc62b3db391ed2 /src/util
parent3724c81eb8a92c0e06b164760a5f802a831decdb (diff)
downloadkrb5-34a68f6d0a8d5545c4c20c79e351a9e8a4d0c101.tar.gz
krb5-34a68f6d0a8d5545c4c20c79e351a9e8a4d0c101.tar.xz
krb5-34a68f6d0a8d5545c4c20c79e351a9e8a4d0c101.zip
Makefile.in, configure.in: Move the responsibility for generating
Makefile files for the following subdirectories to the top-level: util, util/send-pr, util/dyn, lib, config-files, and gen-manpages. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11132 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
-rw-r--r--src/util/ChangeLog7
-rw-r--r--src/util/Makefile.in5
-rw-r--r--src/util/configure.in17
-rw-r--r--src/util/dyn/ChangeLog7
-rw-r--r--src/util/dyn/Makefile.in5
-rw-r--r--src/util/dyn/configure.in10
-rw-r--r--src/util/send-pr/ChangeLog7
-rw-r--r--src/util/send-pr/Makefile.in5
-rw-r--r--src/util/send-pr/configure.in6
9 files changed, 33 insertions, 36 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog
index d9eab6f9a..0dd9117f3 100644
--- a/src/util/ChangeLog
+++ b/src/util/ChangeLog
@@ -1,3 +1,10 @@
+1999-01-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * Makefile.in, configure.in: Move the responsibility for
+ generating the Makefile in this directory to the top-level
+ configure script. The local configure.in script has been
+ deleted.
+
Thu Sep 24 20:05:33 1998 Tom Yu <tlyu@mit.edu>
* mkrel: Add fixes to deal with "tails" on release directories,
diff --git a/src/util/Makefile.in b/src/util/Makefile.in
index 5d900c710..9777d7972 100644
--- a/src/util/Makefile.in
+++ b/src/util/Makefile.in
@@ -1,4 +1,7 @@
-thisconfigdir=.
+thisconfigdir=./..
+myfulldir=util
+mydir=util
+MY_SUBDIRS=et ss profile pty dyn db2 send-pr
BUILDTOP=$(REL)$(U)
CFLAGS = $(CCOPTS)
diff --git a/src/util/configure.in b/src/util/configure.in
deleted file mode 100644
index ba97bdc96..000000000
--- a/src/util/configure.in
+++ /dev/null
@@ -1,17 +0,0 @@
-AC_INIT(configure.in)
-CONFIG_RULES
-AC_PROG_ARCHIVE
-AC_PROG_ARCHIVE_ADD
-if test $krb5_cv_prog_gcc = yes ; then
- HAVE_GCC=yes
- else HAVE_GCC=
-fi
-
-AC_SUBST(HAVE_GCC)
-HOST_TYPE=$krb5_cv_host
-AC_SUBST(HOST_TYPE)
-SHLIB_TAIL_COMP=$krb5_cv_shlibs_tail_comp
-AC_SUBST(SHLIB_TAIL_COMP)
-
-AC_CONFIG_SUBDIRS(et ss profile pty dyn db2 send-pr)
-V5_AC_OUTPUT_MAKEFILE
diff --git a/src/util/dyn/ChangeLog b/src/util/dyn/ChangeLog
index 49a61fcbf..d5102d5a5 100644
--- a/src/util/dyn/ChangeLog
+++ b/src/util/dyn/ChangeLog
@@ -1,3 +1,10 @@
+1999-01-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * Makefile.in, configure.in: Move the responsibility for
+ generating the Makefile in this directory to the top-level
+ configure script. The local configure.in script has been
+ deleted.
+
Wed Feb 18 16:32:41 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
diff --git a/src/util/dyn/Makefile.in b/src/util/dyn/Makefile.in
index 59b97394a..00315e371 100644
--- a/src/util/dyn/Makefile.in
+++ b/src/util/dyn/Makefile.in
@@ -1,4 +1,7 @@
-thisconfigdir=.
+thisconfigdir=./../..
+myfulldir=util/dyn
+mydir=util/dyn
+MY_SUBDIRS=.
BUILDTOP=$(REL)$(U)$(S)$(U)
RELDIR=../util/dyn
CFLAGS = $(CCOPTS) $(DEFS)
diff --git a/src/util/dyn/configure.in b/src/util/dyn/configure.in
deleted file mode 100644
index 7b4770c1b..000000000
--- a/src/util/dyn/configure.in
+++ /dev/null
@@ -1,10 +0,0 @@
-AC_INIT(dyn.h)
-CONFIG_RULES
-AC_PROG_ARCHIVE
-AC_PROG_ARCHIVE_ADD
-AC_PROG_RANLIB
-AC_PROG_INSTALL
-AC_CHECK_FUNCS(memmove)
-KRB5_BUILD_LIBOBJS
-KRB5_BUILD_LIBRARY
-V5_AC_OUTPUT_MAKEFILE
diff --git a/src/util/send-pr/ChangeLog b/src/util/send-pr/ChangeLog
new file mode 100644
index 000000000..066fea240
--- /dev/null
+++ b/src/util/send-pr/ChangeLog
@@ -0,0 +1,7 @@
+1999-01-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * Makefile.in, configure.in: Move the responsibility for
+ generating the Makefile in this directory to the top-level
+ configure script. The local configure.in script has been
+ deleted.
+
diff --git a/src/util/send-pr/Makefile.in b/src/util/send-pr/Makefile.in
index 5a74290e2..bafa04504 100644
--- a/src/util/send-pr/Makefile.in
+++ b/src/util/send-pr/Makefile.in
@@ -1,4 +1,7 @@
-thisconfigdir=.
+thisconfigdir=./../..
+myfulldir=util/send-pr
+mydir=util/send-pr
+MY_SUBDIRS=.
BUILDTOP=$(REL)$(U)$(S)$(U)
#
# Makefile for building a standalone send-pr.
diff --git a/src/util/send-pr/configure.in b/src/util/send-pr/configure.in
deleted file mode 100644
index 58a989c5b..000000000
--- a/src/util/send-pr/configure.in
+++ /dev/null
@@ -1,6 +0,0 @@
-AC_INIT(configure.in)
-CONFIG_RULES
-
-
-
-V5_AC_OUTPUT_MAKEFILE