From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 128404 invoked by alias); 3 Mar 2019 22:43:54 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 128396 invoked by uid 89); 3 Mar 2019 22:43:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.7 required=5.0 tests=BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:NNFMP, dear, Dear, H*M:JavaMail X-HELO: nh605-vm0.bullet.mail.ssk.yahoo.co.jp Received: from nh605-vm0.bullet.mail.ssk.yahoo.co.jp (HELO nh605-vm0.bullet.mail.ssk.yahoo.co.jp) (182.22.90.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with SMTP; Sun, 03 Mar 2019 22:43:52 +0000 Received: from [182.22.66.106] by nh605.bullet.mail.ssk.yahoo.co.jp with NNFMP; 03 Mar 2019 22:43:49 -0000 Received: from [182.22.91.131] by t604.bullet.mail.ssk.yahoo.co.jp with NNFMP; 03 Mar 2019 22:43:49 -0000 Received: from [127.0.0.1] by omp604.mail.ssk.yahoo.co.jp with NNFMP; 03 Mar 2019 22:43:49 -0000 Received: from jws700001.mail.kks.yahoo.co.jp by sendmailws511.mail.kks.yahoo.co.jp; Mon, 04 Mar 2019 07:43:48 +0000; 1551653028.767 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1551653029; s=yj20110701; d=yahoo.co.jp; h=Date:From:Reply-To:To:Message-ID:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding:References; bh=f+52eyt+iLXgwpt0AP2U16w215DbQsKgls221VUENfk=; b=ZmX1gac+HKu0cMi8SYs2lCzrZJqOVo52rvFuxzztKuR9hZy33BZ3pxWoEqZeGbpK 7vDfw/VVlrdMzSwYWRfo1rBRsAGHaOFGocvzwqgyaCpisJ9pcqDesLaim0X01niYPQ7 lgN4fcW4Me0YjL9M6AhRLLA1AZnOpcGL3BtgQgZo= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20110701; d=yahoo.co.jp; h=Date:From:Reply-To:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:References; b=Pu8tZtnIptc/l9BaFIeFQu12jZTCAiqSVeQOBxy9sqBVCH6qw9/0zRE2nwBXa0EO eQqpC+ieRrYHfhhLwtjeYimIe4KOOQH7EuecBMWtJO7SxZ1YlgklQWWDOL38cF5ICro N22cu4in8YBfuObqW2DfjF7IkPQF2ffj4BGnXq74=; Date: Sun, 03 Mar 2019 22:43:00 -0000 From: Tatsuro MATSUOKA Reply-To: Tatsuro MATSUOKA To: , "yselkowitz@cygwin.com" , Achim Gratz Message-ID: <1439412702.1866573.1551653028041.JavaMail.yahoo@mail.yahoo.co.jp> Subject: Patch request to qt 5.9.4 (Re: [ANNOUNCEMENT] Qt 5.9.4) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable References: <1439412702.1866573.1551653028041.JavaMail.yahoo.ref@mail.yahoo.co.jp> X-IsSubscribed: yes X-SW-Source: 2019-03/txt/msg00022.txt.bz2 ----- Original Message ----- > From: Yaakov Selkowitz=C2=A0 > To: cygwin > Cc:=20 > Date: 2018/2/24, Sat 05:02 > Subject: [ANNOUNCEMENT] Qt 5.9.4 >=20 >T he following packages have been uploaded to the Cygwin distribution: > Dear=C2=A0Yaakov Selkowitz I ask alpply a patch the below which enables to use qt terminal on gnuplot = for Cygwin. (cygQt5Network-5.dll is affected.) --- a/qtbase-opensource-src-5.9.4/src/network/socket/qlocalsocket_unix.cpp +++ b/qtbase-opensource-src-5.9.4/src/network/socket/qlocalsocket_unix.cpp @@ -239,7 +239,7 @@ void QLocalSocket::connectToServer(OpenM =C2=A0=C2=A0=C2=A0 } =C2=A0=C2=A0=C2=A0 // create the socket -=C2=A0=C2=A0=C2=A0 if (-1 =3D=3D (d->connectingSocket =3D qt_safe_socket(P= F_UNIX, SOCK_STREAM, 0, O_NONBLOCK))) { +=C2=A0=C2=A0=C2=A0 if (-1 =3D=3D (d->connectingSocket =3D qt_safe_socket(P= F_UNIX, SOCK_STREAM, 0))) { =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 d->errorOccurred(UnsupportedSock= etOperationError, =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 QLatin1Stri= ng("QLocalSocket::connectToServer")); =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return; Tatsuro -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple