- Timestamp:
- 03/18/08 20:54:29 (9 months ago)
- Location:
- lang/c/partty/trunk
- Files:
-
- 8 modified
-
configure.in (modified) (2 diffs)
-
src/captty.cc (modified) (2 diffs)
-
src/cmd_captty.cc (modified) (1 diff)
-
src/cmd_gate.cc (modified) (1 diff)
-
src/cmd_host.cc (modified) (1 diff)
-
src/cmd_server.cc (modified) (1 diff)
-
src/emtelnet.cc (modified) (1 diff)
-
src/ptyshell.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/c/partty/trunk/configure.in
r7968 r8087 3 3 4 4 AC_PREREQ(2.61) 5 AC_INIT(partty, 0.3. 0, fr _at_ syuki.skr.jp)6 AM_INIT_AUTOMAKE(partty, 0.3. 0)5 AC_INIT(partty, 0.3.1, fr _at_ syuki.skr.jp) 6 AM_INIT_AUTOMAKE(partty, 0.3.1) 7 7 AC_CONFIG_SRCDIR(src/partty.h) 8 8 AC_CONFIG_HEADER(config.h) … … 15 15 #AC_CHECK_LIB(z,compress,,AC_MSG_ERROR(Test for libz failed.)) 16 16 17 AC_CHECK_HEADERS(pty.h,have_pty_h=1) 17 AC_CHECK_HEADERS(pty.h,have_pty_h=1) # Mac OS X 18 AC_CHECK_HEADERS(libutil.h,have_pty_h=1) # FreeBSD 18 19 if test "$have_pty_h" = 1; then 19 20 AC_CHECK_LIB(util,openpty) 20 21 else 21 AC_CHECK_HEADERS(util.h) 22 AC_CHECK_HEADERS(util.h) # Linux 22 23 fi 23 24 -
lang/c/partty/trunk/src/captty.cc
r7867 r8087 22 22 #include <zlib.h> 23 23 #include <stdio.h> 24 #include <stdlib.h> 24 25 #include <fcntl.h> 25 26 #include <fstream> … … 31 32 #ifdef HAVE_UTIL_H 32 33 #include <util.h> 34 #endif 35 #ifdef HAVE_LIBUTIL_H 36 #include <libutil.h> 33 37 #endif 34 38 #ifdef HAVE_PTY_H -
lang/c/partty/trunk/src/cmd_captty.cc
r7867 r8087 19 19 20 20 #include "captty.h" 21 #include <string.h> 22 #include <stdlib.h> 21 23 22 24 void usage() -
lang/c/partty/trunk/src/cmd_gate.cc
r7867 r8087 21 21 #include "uniext.h" 22 22 #include <kazuhiki/network.h> 23 #include <stdlib.h> 23 24 24 25 void usage(void) -
lang/c/partty/trunk/src/cmd_host.cc
r8076 r8087 25 25 #include <string> 26 26 #include <stdio.h> 27 #include <stdlib.h> 27 28 #include <unistd.h> 28 29 #include <pwd.h> -
lang/c/partty/trunk/src/cmd_server.cc
r7867 r8087 23 23 #include <kazuhiki/network.h> 24 24 #include <string.h> 25 #include <stdlib.h> 25 26 #include <string> 26 27 #include <limits.h> -
lang/c/partty/trunk/src/emtelnet.cc
r7867 r8087 25 25 #include "emtelnet.h" 26 26 #include <cstring> 27 #include <stdlib.h> 27 28 28 29 -
lang/c/partty/trunk/src/ptyshell.cc
r7867 r8087 31 31 #ifdef HAVE_UTIL_H 32 32 #include <util.h> 33 #endif 34 #ifdef HAVE_LIBUTIL_H 35 #include <libutil.h> 33 36 #endif 34 37 #ifdef HAVE_PTY_H
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)