summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1998-11-13 21:08:45 +0000
committerTheodore Tso <tytso@mit.edu>1998-11-13 21:08:45 +0000
commite812d05c58837dbaa4cfc4b433929d0c18f279ba (patch)
tree34ca1211d9952be374cab7dd08e013c7aebbef7d
parent9af6e475823c3ef3fb245fc2deee656354168c56 (diff)
downloadkrb5-e812d05c58837dbaa4cfc4b433929d0c18f279ba.tar.gz
krb5-e812d05c58837dbaa4cfc4b433929d0c18f279ba.tar.xz
krb5-e812d05c58837dbaa4cfc4b433929d0c18f279ba.zip
configure.in: Removed and tests moved up to appl/configure.in
Makefile.in: Set the myfulldir and mydir variables (which are relative to buildtop and thisconfigdir, respectively.) Add a MY_SUBDIRS macro set to '.' to indicate that there are no subdirectories to be processed by the Makefile. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11030 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/appl/gss-sample/ChangeLog9
-rw-r--r--src/appl/gss-sample/Makefile.in3
-rw-r--r--src/appl/gss-sample/configure.in7
-rw-r--r--src/appl/sample/ChangeLog9
-rw-r--r--src/appl/sample/Makefile.in4
-rw-r--r--src/appl/sample/configure.in11
-rw-r--r--src/appl/simple/ChangeLog9
-rw-r--r--src/appl/simple/Makefile.in4
-rw-r--r--src/appl/simple/configure.in13
-rw-r--r--src/appl/user_user/ChangeLog9
-rw-r--r--src/appl/user_user/Makefile.in3
-rw-r--r--src/appl/user_user/configure.in5
12 files changed, 48 insertions, 38 deletions
diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog
index bdf6e8d71a..80e6a0bf3d 100644
--- a/src/appl/gss-sample/ChangeLog
+++ b/src/appl/gss-sample/ChangeLog
@@ -1,3 +1,12 @@
+1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * configure.in: Removed and tests moved up to appl/configure.in
+
+ * Makefile.in: Set the myfulldir and mydir variables (which are
+ relative to buildtop and thisconfigdir, respectively.)
+ Add a MY_SUBDIRS macro set to '.' to indicate that there
+ are no subdirectories to be processed by the Makefile.
+
1998-10-24 Marc Horowitz <marc@mit.edu>
* gss-server.c (sign_server): fix the text heuristic to recognize
diff --git a/src/appl/gss-sample/Makefile.in b/src/appl/gss-sample/Makefile.in
index 0f13cfa68c..adeec69d28 100644
--- a/src/appl/gss-sample/Makefile.in
+++ b/src/appl/gss-sample/Makefile.in
@@ -1,4 +1,7 @@
thisconfigdir=.
+myfulldir=appl/gss-sample
+mydir=.
+MY_SUBDIRS=.
BUILDTOP=$(REL)$(U)$(S)$(U)
CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) -DUSE_AUTOCONF_H -DGSSAPI_V2
PROG_LIBPATH=-L$(TOPLIBD)
diff --git a/src/appl/gss-sample/configure.in b/src/appl/gss-sample/configure.in
deleted file mode 100644
index dd77600c59..0000000000
--- a/src/appl/gss-sample/configure.in
+++ /dev/null
@@ -1,7 +0,0 @@
-AC_INIT(gss-client.c)
-CONFIG_RULES
-AC_CHECK_HEADERS(unistd.h stdlib.h string.h)
-AC_CONST
-AC_PROG_INSTALL
-KRB5_BUILD_PROGRAM
-V5_AC_OUTPUT_MAKEFILE
diff --git a/src/appl/sample/ChangeLog b/src/appl/sample/ChangeLog
index 50c3161ddd..7a3bc3f40a 100644
--- a/src/appl/sample/ChangeLog
+++ b/src/appl/sample/ChangeLog
@@ -1,3 +1,12 @@
+1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * configure.in: Removed and tests moved up to appl/configure.in
+
+ * Makefile.in: Set the myfulldir and mydir variables (which are
+ relative to buildtop and thisconfigdir, respectively.)
+ Add a MY_SUBDIRS definition to control the directories
+ which are recursively descended by the Makefile.
+
Wed Feb 18 15:31:44 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
diff --git a/src/appl/sample/Makefile.in b/src/appl/sample/Makefile.in
index b75ed97060..dceddc25c5 100644
--- a/src/appl/sample/Makefile.in
+++ b/src/appl/sample/Makefile.in
@@ -1,5 +1,7 @@
thisconfigdir=.
+myfulldir=appl/sample
+mydir=.
+MY_SUBDIRS = sclient sserver
BUILDTOP=$(REL)$(U)$(S)$(U)
-LOCAL_SUBDIRS = sclient sserver
CFLAGS = $(CCOPTS)
diff --git a/src/appl/sample/configure.in b/src/appl/sample/configure.in
deleted file mode 100644
index 62ad4cb0fb..0000000000
--- a/src/appl/sample/configure.in
+++ /dev/null
@@ -1,11 +0,0 @@
-AC_INIT(sample.h)
-CONFIG_RULES
-CONFIG_RULES
-AC_PROG_INSTALL
-AC_CHECK_HEADERS(stdlib.h)
-KRB5_BUILD_PROGRAM
-K5_GEN_MAKEFILE(.)
-K5_GEN_MAKEFILE(sclient)
-K5_GEN_MAKEFILE(sserver)
-K5_OUTPUT_FILES
-dnl AC_OUTPUT to keep autoreconf happy
diff --git a/src/appl/simple/ChangeLog b/src/appl/simple/ChangeLog
index 6f8e3c5f62..7c6a2f244d 100644
--- a/src/appl/simple/ChangeLog
+++ b/src/appl/simple/ChangeLog
@@ -1,3 +1,12 @@
+1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * configure.in: Removed and tests moved up to appl/configure.in
+
+ * Makefile.in: Set the myfulldir and mydir variables (which are
+ relative to buildtop and thisconfigdir, respectively.)
+ Add a MY_SUBDIRS definition to control the directories
+ which are recursively descended by the Makefile.
+
Wed Feb 18 15:33:49 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
diff --git a/src/appl/simple/Makefile.in b/src/appl/simple/Makefile.in
index 583b3a1c04..2457c11212 100644
--- a/src/appl/simple/Makefile.in
+++ b/src/appl/simple/Makefile.in
@@ -1,5 +1,7 @@
thisconfigdir=.
+myfulldir=appl/simple
+mydir=.
+MY_SUBDIRS = client server
BUILDTOP=$(REL)$(U)$(S)$(U)
-LOCAL_SUBDIRS = client server
CFLAGS = $(CCOPTS)
diff --git a/src/appl/simple/configure.in b/src/appl/simple/configure.in
deleted file mode 100644
index 75fab10d72..0000000000
--- a/src/appl/simple/configure.in
+++ /dev/null
@@ -1,13 +0,0 @@
-AC_INIT(configure.in)
-CONFIG_RULES
-AC_PROG_INSTALL
-AC_CHECK_HEADERS(stdlib.h)
-if test "$ac_cv_lib_socket" = "yes" -a "$ac_cv_lib_nsl" = "yes"; then
- AC_DEFINE(BROKEN_STREAMS_SOCKETS)
-fi
-KRB5_BUILD_PROGRAM
-K5_GEN_MAKEFILE(.)
-K5_GEN_MAKEFILE(client)
-K5_GEN_MAKEFILE(server)
-K5_OUTPUT_FILES
-dnl AC_OUTPUT to keep autoreconf happy
diff --git a/src/appl/user_user/ChangeLog b/src/appl/user_user/ChangeLog
index d26f5bbe00..c98c21b0fb 100644
--- a/src/appl/user_user/ChangeLog
+++ b/src/appl/user_user/ChangeLog
@@ -1,3 +1,12 @@
+1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * configure.in: Removed and tests moved up to appl/configure.in
+
+ * Makefile.in: Set the myfulldir and mydir variables (which are
+ relative to buildtop and thisconfigdir, respectively.)
+ Add a MY_SUBDIRS macro set to '.' to indicate that there
+ are no subdirectories to be processed by the Makefile.
+
Tue Sep 29 18:58:46 1998 Theodore Y. Ts'o <tytso@mit.edu>
* client.c (main): Don't use h_errno at all; it doesn't work on
diff --git a/src/appl/user_user/Makefile.in b/src/appl/user_user/Makefile.in
index 1a96261a4b..4ec264edbb 100644
--- a/src/appl/user_user/Makefile.in
+++ b/src/appl/user_user/Makefile.in
@@ -1,4 +1,7 @@
thisconfigdir=.
+myfulldir=appl/user_user
+mydir=.
+MY_SUBDIRS=.
BUILDTOP=$(REL)$(U)$(S)$(U)
CFLAGS = $(CCOPTS) $(DEFS) -DDEBUG
PROG_LIBPATH=-L$(TOPLIBD)
diff --git a/src/appl/user_user/configure.in b/src/appl/user_user/configure.in
deleted file mode 100644
index 32d78005d0..0000000000
--- a/src/appl/user_user/configure.in
+++ /dev/null
@@ -1,5 +0,0 @@
-AC_INIT(client.c)
-CONFIG_RULES
-AC_PROG_INSTALL
-KRB5_BUILD_PROGRAM
-V5_AC_OUTPUT_MAKEFILE