search for: ttychar

Displaying 7 results from an estimated 7 matches for "ttychar".

Did you mean: ttychars
2001 Nov 25
0
Errors compiling on Sun Solaris 2.7
Using Sun Forte C Compiling smbd/server.c "/usr/include/sys/termios.h", line 38: macro CTRL redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 76 "/usr/include/sys/termios.h", line 164: macro CEOT redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 87 "/usr/include/sys/termios.h", line 167: macro CEOF redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 86...
1998 Jan 27
1
1.9.18p2 compile problem
I just grabbed 1.9.18p2 and tried compiling with gcc 2.7.2.1 for a Solaris 2.5 box, but it didn't get too far - after a bunch of macro re-defines (eg. "/usr/include/sys/termios.h", line 32: macro CTRL redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 65 "/usr/include/sys/termios.h", line 150: macro CINTR redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 71 it gave up in smb.h with the following: "./smb.h", line 547: major: argument mismatch "./smb.h", line 548: minor: arg...
2018 Feb 12
2
User manipulation of tty mode opcodes / IUTF8 incompatibilities
On Sun, Feb 11, 2018 at 11:27 PM, Darren Tucker <dtucker at dtucker.net> wrote: > Sigh. If you could provide the server's identity string (eg from "ssh > -v yourthing") we could add a bug bit to stop it from being sent. $ ssh -v nathan at 10.0.0.1 OpenSSH_7.4p1, LibreSSL 2.5.0 [snip] debug1: Local version string SSH-2.0-OpenSSH_7.4 debug1: Remote protocol version
2000 Sep 12
0
OpenSSH 2.2.0p1 port to QNX 4
...********* *** 32,37 **** --- 32,41 ---- * is only intended for including from ttymodes.c. */ + #if defined(__QNX__) && !defined(__QNXNTO__) + #include "qnx-term.h" + #endif /* __QNX__ && !__QNXNTO__ */ + /* termios macro */ /* sgtty macro */ /* name, op */ TTYCHAR(VINTR, 1) SGTTYCHAR(tiotc.t_intrc, 1)
2003 Oct 08
4
OS/390 openssh
...ULDBLOCK) error("accept: %.100s", strerror(errno)); continue; diff -bur openssh-3.7.1p2.orig/ttymodes.c openssh-3.7.1p2/ttymodes.c --- openssh-3.7.1p2.orig/ttymodes.c Wed May 14 05:40:07 2003 +++ openssh-3.7.1p2/ttymodes.c Tue Oct 7 08:22:02 2003 @@ -287,7 +287,7 @@ #define TTYCHAR(NAME, OP) \ debug3("tty_make_modes: %d %d", OP, tio.c_cc[NAME]); \ buffer_put_char(&buf, OP); \ - put_arg(&buf, tio.c_cc[NAME]); + put_arg(&buf, ASC(tio.c_cc[NAME])); #define TTYMODE(NAME, FIELD, OP) \ debug3("tty_make_modes: %d %d", OP, ((tio.FIELD & NA...
2003 Dec 01
0
No subject
...> > (Solaris 2.7, Sun CC) > HEAD or 2.2? The logs from our automated builds look on on Solaris 8. > What is the error? 2.2 Long output to follow Compiling smbd/server.c "/usr/include/sys/termios.h", line 38: macro CTRL redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 76 "/usr/include/sys/termios.h", line 164: macro CEOT redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 87 "/usr/include/sys/termios.h", line 167: macro CEOF redefines previous macro at "/usr/ucbinclude/sys/ttychars.h", line 86...
2003 Dec 01
0
No subject
..., 9 Jun 2001, Steve Kennedy wrote: > > > CVS doesn't seem to want to compile at the moment > > > (Solaris 2.7, Sun CC) > > Compiling smbd/server.c > "/usr/include/sys/termios.h", line 38: macro CTRL redefines previous > macro at "/usr/ucbinclude/sys/ttychars.h", line 76 ^^^^^^^^^^ If you are using Sun CC, make sure that you organise your PATH such that you end up running /opt/SUNWspro/bin/cc in preference to /usr/ucb/cc. The latter instance of the compiler links against the 4BSD "source compatibility" libraries in pref...