- Timestamp:
- 02/26/08 20:59:41 (5 years ago)
- Location:
- lang/c/partty/trunk
- Files:
-
- 3 added
- 1 removed
- 2 modified
-
Makefile (deleted)
-
Makefile.am (added)
-
autosetup.sh (added)
-
configure.in (added)
-
partty.h (modified) (3 diffs)
-
ptyshell.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/c/partty/trunk/partty.h
r7167 r7170 1 1 #ifndef PARTTY_H__ 2 2 #define PARTTY_H__ 1 3 4 #ifdef HAVE_CONFIG_H 5 #include "config.h" 6 #endif 3 7 4 8 #include <stddef.h> … … 69 73 70 74 71 static const charVERSION[] = "0.0";72 static const charREVISION[] = "0";75 //static const char PARTTY_VERSION[] = "0.0"; 76 //static const char PARTTY_REVISION[] = "0"; 73 77 static const uint8_t PROTOCOL_VERSION = 1; 74 78 … … 156 160 readonly_password_length (src.readonly_password_length), 157 161 writable_password_length (src.writable_password_length), 162 user_name (src.user_name ), 158 163 session_name (src.session_name ), 159 164 readonly_password (src.readonly_password ), -
lang/c/partty/trunk/ptyshell.cc
r6963 r7170 5 5 #include <termios.h> 6 6 #include <sys/ioctl.h> 7 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif 11 12 #ifdef HAVE_UTIL_H 7 13 #include <util.h> 8 // FIXME Linuxではutil.hの代わりにpty.hで-lutil 14 #endif 15 #ifdef HAVE_PTY_H 16 #include <pty.h> 17 #endif 9 18 10 19 namespace Partty {
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)