configure.in: Removed and tests moved up to appl/configure.in
authorTheodore Tso <tytso@mit.edu>
Fri, 13 Nov 1998 21:08:45 +0000 (21:08 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 13 Nov 1998 21:08:45 +0000 (21:08 +0000)
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

12 files changed:
src/appl/gss-sample/ChangeLog
src/appl/gss-sample/Makefile.in
src/appl/gss-sample/configure.in [deleted file]
src/appl/sample/ChangeLog
src/appl/sample/Makefile.in
src/appl/sample/configure.in [deleted file]
src/appl/simple/ChangeLog
src/appl/simple/Makefile.in
src/appl/simple/configure.in [deleted file]
src/appl/user_user/ChangeLog
src/appl/user_user/Makefile.in
src/appl/user_user/configure.in [deleted file]

index bdf6e8d71a3f006e8d6a3cebd21bf706e2a5374b..80e6a0bf3dca649763a971a8d742a8ab78c9d27d 100644 (file)
@@ -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
index 0f13cfa68ca5451909b7a20ae6c40b34fedb59d2..adeec69d28eef0314c09b6c1f18ac62540c69006 100644 (file)
@@ -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 (file)
index dd77600..0000000
+++ /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
index 50c3161ddde631d1f73fbfd4fc2157161367c86f..7a3bc3f40a23892c58836d4d1a12e71c54a585f4 100644 (file)
@@ -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
index b75ed970602cf7a47e8a1e202a53e5651bbb383b..dceddc25c52bcaa74429458cb32d9a21d7f40e2c 100644 (file)
@@ -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 (file)
index 62ad4cb..0000000
+++ /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
index 6f8e3c5f629ca36105863dbe75f73af57510ade4..7c6a2f244dd7c12694e0e3172140e4c875b467f1 100644 (file)
@@ -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
index 583b3a1c04b59ce60366381b4cdf9ee13791deec..2457c11212f3079440da169480253e0021207b11 100644 (file)
@@ -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 (file)
index 75fab10..0000000
+++ /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
index d26f5bbe00e0eac20d16539e2cdb11ae282ab28b..c98c21b0fb66f6376b6f6f321b6516f49c7b5bf1 100644 (file)
@@ -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
index 1a96261a4b14ce512e8a6b3114427b1e472f91db..4ec264edbbb9e113b1e4ce99c2181a381b2862f7 100644 (file)
@@ -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 (file)
index 32d7800..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-AC_INIT(client.c)
-CONFIG_RULES
-AC_PROG_INSTALL
-KRB5_BUILD_PROGRAM
-V5_AC_OUTPUT_MAKEFILE