]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Move pty library from util/pty to appl/libpty; update Makefile.in and
authorKen Raeburn <raeburn@mit.edu>
Tue, 11 Apr 2006 19:53:48 +0000 (19:53 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 11 Apr 2006 19:53:48 +0000 (19:53 +0000)
configure.in files accordingly.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17887 dc483132-0cff-0310-8789-dd5450dbe970

28 files changed:
src/ChangeLog
src/appl/ChangeLog
src/appl/configure.in
src/appl/libpty/.Sanitize [moved from src/util/pty/.Sanitize with 100% similarity]
src/appl/libpty/ChangeLog [moved from src/util/pty/ChangeLog with 99% similarity]
src/appl/libpty/Makefile.in [moved from src/util/pty/Makefile.in with 99% similarity]
src/appl/libpty/README [moved from src/util/pty/README with 100% similarity]
src/appl/libpty/cleanup.c [moved from src/util/pty/cleanup.c with 100% similarity]
src/appl/libpty/configure.in [moved from src/util/pty/configure.in with 100% similarity]
src/appl/libpty/dump-utmp.c [moved from src/util/pty/dump-utmp.c with 100% similarity]
src/appl/libpty/getpty.c [moved from src/util/pty/getpty.c with 100% similarity]
src/appl/libpty/init.c [moved from src/util/pty/init.c with 100% similarity]
src/appl/libpty/init_slave.c [moved from src/util/pty/init_slave.c with 100% similarity]
src/appl/libpty/libpty.h [moved from src/util/pty/libpty.h with 100% similarity]
src/appl/libpty/logwtmp.c [moved from src/util/pty/logwtmp.c with 100% similarity]
src/appl/libpty/open_ctty.c [moved from src/util/pty/open_ctty.c with 100% similarity]
src/appl/libpty/open_slave.c [moved from src/util/pty/open_slave.c with 100% similarity]
src/appl/libpty/pty-int.h [moved from src/util/pty/pty-int.h with 100% similarity]
src/appl/libpty/pty_err.et [moved from src/util/pty/pty_err.et with 100% similarity]
src/appl/libpty/pty_paranoia.c [moved from src/util/pty/pty_paranoia.c with 100% similarity]
src/appl/libpty/sane_hostname.c [moved from src/util/pty/sane_hostname.c with 100% similarity]
src/appl/libpty/update_utmp.c [moved from src/util/pty/update_utmp.c with 100% similarity]
src/appl/libpty/update_wtmp.c [moved from src/util/pty/update_wtmp.c with 100% similarity]
src/appl/libpty/vhangup.c [moved from src/util/pty/vhangup.c with 100% similarity]
src/appl/libpty/void_assoc.c [moved from src/util/pty/void_assoc.c with 100% similarity]
src/configure.in
src/util/ChangeLog
src/util/Makefile.in

index acebdf25f6027fafb80a1f1c4a2e1aa47d44aeac..fc076b3142a2a5751c2e1cc41736300f1053ad31 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-11  Ken Raeburn  <raeburn@mit.edu>
+
+       * configure.in: Don't configure pty library.  Use one invocation
+       of AC_CONFIG_SUBDIRS instead of two in a row.
+
 2006-04-08  Ken Raeburn  <raeburn@mit.edu>
 
        * aclocal.m4 (CONFIG_RULES): Don't define KRB5_PRIVATE or
index e35d1862625ef417e4a8bcd6b64f349fe5326c45..11a16a734a3db45c3af64f10aa33a47064b7674a 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-11  Ken Raeburn  <raeburn@mit.edu>
+
+       * libpty: Directory moved from util/pty.
+       * configure.in: Configure libpty.
+
 2006-03-27  Ken Raeburn  <raeburn@mit.edu>
 
        * configure.in: Supply comment template in AC_DEFINE calls.
index 8b96bff50d140643cc156c44a17f709db86e016b..e8d2f65129ec1a3b970ea8f45eeb12ec54d0973e 100644 (file)
@@ -17,5 +17,5 @@ dnl
 KRB5_GETSOCKNAME_ARGS
 KRB5_GETPEERNAME_ARGS
 KRB5_BUILD_PROGRAM
-AC_CONFIG_SUBDIRS(bsd gssftp telnet)
+AC_CONFIG_SUBDIRS(libpty bsd gssftp telnet)
 V5_AC_OUTPUT_MAKEFILE(. sample sample/sclient sample/sserver simple simple/client simple/server gss-sample user_user)
similarity index 99%
rename from src/util/pty/ChangeLog
rename to src/appl/libpty/ChangeLog
index fc026843ef743bd8fb44fd50270f949b77869fd1..2e42f7c993dd828dd2941db33c24a817ed05c095 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-11  Ken Raeburn  <raeburn@mit.edu>
+
+       * Move directory from util/pty to appl/libpty.
+       * Makefile.in (myfulldir, RELDIR): Updated.
+
 2006-04-05  Tom Yu  <tlyu@mit.edu>
 
        * configure.in: Add prerequisites for sys/ptyvar.h.
similarity index 99%
rename from src/util/pty/Makefile.in
rename to src/appl/libpty/Makefile.in
index 4277a5217de7403badc0ff1c7dcf591286fea6ef..3c3ca3828df1a98fa02f64e2322229fc0a2625c5 100644 (file)
@@ -1,8 +1,8 @@
 thisconfigdir=.
-myfulldir=util/pty
+myfulldir=appl/libpty
 mydir=.
 BUILDTOP=$(REL)..$(S)..
-RELDIR=../util/pty
+RELDIR=../appl/libpty
 
 SED = sed
 
similarity index 100%
rename from src/util/pty/README
rename to src/appl/libpty/README
similarity index 100%
rename from src/util/pty/init.c
rename to src/appl/libpty/init.c
index 8b75fff4d492ddbf3612021729634edeb1d26eac..857d6fe54a54a3deb2ef41e78c2c17882b7a013a 100644 (file)
@@ -613,8 +613,7 @@ fi
 if test "$SS_VERSION" = k5 ; then
   AC_CONFIG_SUBDIRS(util/ss)
 fi
-AC_CONFIG_SUBDIRS(util/profile util/pty)
-AC_CONFIG_SUBDIRS(lib/crypto lib/krb5 lib/des425 lib/apputils)
+AC_CONFIG_SUBDIRS(util/profile lib/crypto lib/krb5 lib/des425 lib/apputils)
 if test -n "$KRB4_LIB"; then
   AC_CONFIG_SUBDIRS(lib/krb4)
 fi
index 0b81219d48393b0a866949a9d72e3b1e1f8c92de..89eff938bde6007880eeed4bafd57a163c0f87f6 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-11  Ken Raeburn  <raeburn@mit.edu>
+
+       * pty: Directory moved to appl/libpty.
+       * Makefile.in (LOCAL_SUBDIRS): Remove pty.
+
 2006-03-30  Ken Raeburn  <raeburn@mit.edu>
 
        * depfix.pl (uniquify): Sort dependencies, so little tweaks to
index c9fd1d8ce6cb5dbf223d1ccf9b295dce6f689ea7..0ded4f35d4c6a23df52c9bd3334332789ede4f85 100644 (file)
@@ -7,7 +7,7 @@ mydir=util
 ##WIN32### below in the 'all-windows' target anyways, so just hide this.
 ##WIN32##!if 0
 LOCAL_SUBDIRS=support $(MAYBE_ET_@COM_ERR_VERSION@) $(MAYBE_SS_@SS_VERSION@) \
-       profile pty send-pr
+       profile send-pr
 ##WIN32##!endif
 BUILDTOP=$(REL)..