summaryrefslogtreecommitdiffstats
path: root/src/appl/simple
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 /src/appl/simple
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
Diffstat (limited to 'src/appl/simple')
-rw-r--r--src/appl/simple/ChangeLog9
-rw-r--r--src/appl/simple/Makefile.in4
-rw-r--r--src/appl/simple/configure.in13
3 files changed, 12 insertions, 14 deletions
diff --git a/src/appl/simple/ChangeLog b/src/appl/simple/ChangeLog
index 6f8e3c5f6..7c6a2f244 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 583b3a1c0..2457c1121 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 75fab10d7..000000000
--- 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