From owner-freebsd-current@FreeBSD.ORG Wed Jun 25 14:34:29 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DCB210656CE for ; Wed, 25 Jun 2008 14:34:29 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:610:652::211]) by mx1.freebsd.org (Postfix) with ESMTP id 647868FC0C for ; Wed, 25 Jun 2008 14:34:29 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 558031CD13; Wed, 25 Jun 2008 16:34:28 +0200 (CEST) Date: Wed, 25 Jun 2008 16:34:28 +0200 From: Ed Schouten To: Mark Atkinson Message-ID: <20080625143428.GI93496@hoeg.nl> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zfsaV+LVqEQKX7k4" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD Current , kde-freebsd@freebsd.kde.org Subject: Re: 8-current/kde3 stty defaults incorrect under konsole X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Jun 2008 14:34:29 -0000 --zfsaV+LVqEQKX7k4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Mark, * Mark Atkinson wrote: > Hi, >=20 > Is anyone else running freebsd-current with kde3 (and has rebuilt both > recently)? I can only suspect this is related to recent changes in > current in prep for mpsafe tty, but in konsole, the defaults turn out to = be > this (note the missing '^' on intr and quit): >=20 > cchars: discard =3D ^O; dsusp =3D ^Y; eof =3D ^D; eol =3D ; > eol2 =3D ; erase =3D ^?; erase2 =3D ^H; intr =3D C; kill = =3D ^U; > lnext =3D ^V; min =3D 1; quit =3D \; reprint =3D ^R; start =3D ^Q; > status =3D ^T; stop =3D ^S; susp =3D ^Z; time =3D 0; werase =3D ^= W; >=20 > xterm and the freebsd console are fine. >=20 > Maybe related to this commit? Blegh. I always hate those applications using non-documented extensions in a non-standard way. ;-) Anyway, could you store this patch in the files/ dir of the kdelibs3 port and see what happens? Thanks! :) %%% --- kdecore/kpty.cpp +++ kdecore/kpty.cpp @@ -128,9 +128,8 @@ #include // locate =20 // not defined on HP-UX for example -#ifndef CTRL -# define CTRL(x) ((x) & 037) -#endif +#undef CTRL +#define CTRL(x) ((x) & 037) =20 #define TTY_GROUP "tty" =20 %%% Yours, --=20 Ed Schouten WWW: http://80386.nl/ --zfsaV+LVqEQKX7k4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkhiV3QACgkQ52SDGA2eCwUxfgCfUBLNiwpiGpHkzBLwux5q2wBZ RxwAniMlOjsYLGoQphrOS60DdQZzuBGg =A0XZ -----END PGP SIGNATURE----- --zfsaV+LVqEQKX7k4--