From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28404 invoked by alias); 24 Feb 2012 14:17:09 -0000 Received: (qmail 28394 invoked by uid 22791); 24 Feb 2012 14:17:07 -0000 X-SWARE-Spam-Status: No, hits=0.5 required=5.0 tests=AWL,BAYES_50,FSL_RCVD_USER,MSGID_MULTIPLE_AT,TW_DJ,TW_GP,TW_JG X-Spam-Check-By: sourceware.org Received: from mailhost.u-strasbg.fr (HELO mailhost.u-strasbg.fr) (130.79.200.157) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 24 Feb 2012 14:16:54 +0000 Received: from md1.u-strasbg.fr (md1.u-strasbg.fr [IPv6:2001:660:2402::186]) by mailhost.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id q1OEGiW6093147 ; Fri, 24 Feb 2012 15:16:44 +0100 (CET) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from mailserver.u-strasbg.fr (ms6.u-strasbg.fr [130.79.204.15]) by md1.u-strasbg.fr (8.14.4/jtpda-5.5pre1) with ESMTP id q1OEGh71042473 ; Fri, 24 Feb 2012 15:16:43 +0100 (CET) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from E6510Muller (gw-ics.u-strasbg.fr [130.79.210.225]) (user=mullerp mech=LOGIN) by mailserver.u-strasbg.fr (8.14.4/jtpda-5.5pre1) with ESMTP id q1OEGgdZ006788 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) ; Fri, 24 Feb 2012 15:16:43 +0100 (CET) (envelope-from pierre.muller@ics-cnrs.unistra.fr) From: "Pierre Muller" To: "'Pierre Muller'" , Cc: References: <008101ccdde8$d71f84e0$855e8ea0$@muller@ics-cnrs.unistra.fr> In-Reply-To: <008101ccdde8$d71f84e0$855e8ea0$@muller@ics-cnrs.unistra.fr> Subject: PING [RFA] Fix djgpp gdb-7.4 (and probably trunk) build failure in readline Date: Fri, 24 Feb 2012 14:19:00 -0000 Message-ID: <005901ccf2fe$eeb0a230$cc11e690$@muller@ics-cnrs.unistra.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-02/txt/msg00565.txt.bz2 I have got no reaction on bug-readline mailing list regarding this issue... What should I do next? Pierre Muller GDB pascal language maintainer > -----Message d'origine----- > De=A0: gdb-patches-owner@sourceware.org [mailto:gdb-patches- > owner@sourceware.org] De la part de Pierre Muller > Envoy=E9=A0: samedi 28 janvier 2012 19:15 > =C0=A0: bug-readline@gnu.org > Cc=A0: gdb-patches@sourceware.org > Objet=A0: [RFA] Fix djgpp gdb-7.4 (and probably trunk) build failure in > readline >=20 > Jan Kratochvil suggested me to submit my patch directly to bug-readline > mailing list. >=20 > The bug appeared while trying to compile the nw GDB release 7.4 > version on a Dos DJGPP target, that does not have > SIGWINCH signal. GDB now uses readline version 6.2, > so this patch is against this version of readline library. >=20 > >>> > >>> Starting here is the original post to gdb-patches: > >>> >=20 > DJGPP has no SIGWINCH > but despite this being checked by configure, > the code in readline/signal.c > is incompatible with a system that doesn't define SIGWINCH. > I found this problem while trying to compile GDB-7.4 sources for DJGPP. > Trunk source seems to be the same... >=20 > I don't know what is the master readline repository... > I am also unsure about proper ChangeLog entry for this... >=20 > Pierre Muller > GDB pascal language maintainer >=20 > ChangeLog entry: > 2012-01-27 Pierre Muller >=20 > * signals.c (_rl_block_sigwinch, _rl_release_sigwinch): Add > conditional SIGWINCH around functions. >=20 > --- readline/signals.c 2011-05-12 01:38:39.000000000 +0200 > +++ readline/signals.c.new 2012-01-27 17:47:06.837454200 +0100 > @@ -580,6 +580,7 @@ _rl_release_sigint () > sigint_blocked =3D 0; > } >=20 > +#ifdef SIGWINCH > /* Cause SIGWINCH to not be delivered until the corresponding call to > release_sigwinch(). */ > void > @@ -627,6 +628,7 @@ _rl_release_sigwinch () >=20 > sigwinch_blocked =3D 0; > } > +#endif /* SIGWINCH */ >=20 > /* **************************************************************** */ > /* */ >=20