X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:message-id:in-reply-to:references :subject:mime-version:content-type:content-transfer-encoding; q= dns; s=default; b=hFwb4XXSPqBEHw1c4BaFmLbuDXObq64PX2/tLMWEg0atEk 14Zpu8ziX6QNhil9+OYXmzZe2PAlaFKRGkXTHoIBY6XN4VLL9ey+xa9LTrTg4e+r nH78zraZhazm4BBa9HB/oaF6gef9FBRKgbFu/OWAcN0IREPA1Dm65UwDLRHbQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:message-id:in-reply-to:references :subject:mime-version:content-type:content-transfer-encoding; s= default; bh=XxWipGUHdyfGXC4oB1Qx+KnBtaM=; b=PvyCvPvxy1/Gd9R3/JON KGpeTcuuF99k1aN8Rboqd9U/kjdl83EDpU4Edk6OjdOqJvpcouDO2/0Fvr7hQJ1Z ohjHnKRmPNtmhsAtHVQ2oeLJipj7jJyfu/UXT3MsiNht1ss4GgozNU+wLosuFoiD Tnh/m7/no0dOUqPmSpsFKK4= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com 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=contacted, H*r:NNFMP, Hx-languages-length:1544, sk:wwwmai X-HELO: nh605-vm8.bullet.mail.ssk.yahoo.co.jp DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1551790641; s=yj20110701; d=yahoo.co.jp; h=Date:From:To:Message-ID:In-Reply-To:References:Subject:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=EEQctzASs6IxQS6yf4sBHQGTgutAl/y76HGFzlTPWRg=; b=S4Oywa6hmbCJFFTcQOYo5sTP++Folrh0/MfR/o9+9j6SxErzmm7yONB5fBrKvLJo azWKyGR3ebLR9L50AcXzcS1PcvuLtEfezy4mnJpP5PnXhIL0AP3LBgu52PQx/bULsbK Nwm1/ZQvnMJWKeTreqV7f934/li3YGVllQEXx2D4= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20110701; d=yahoo.co.jp; h=Date:From:Message-ID:In-Reply-To:References:MIME-Version:Content-Type:Content-Transfer-Encoding; b=hQo66BgxSfC+ZqJw7bnOFq/3aSc8wAxicWVsWjfEY1DOVNCrX/VABS05UqxDNHou tYnZr7BPUcclA1HdWKfQCiblb7pDK0CrmjoLRavz+6HJZjuFxPgAiEf5qRMGCwTSeYx iigwfYXlh7jLtWaYXWIkvziK68CCUVg56Hi8tr/w=; Date: Tue, 5 Mar 2019 21:57:19 +0900 (JST) From: Tatsuro MATSUOKA To: Yaakov Selkowitz , "cygwin AT cygwin DOT com" Message-ID: <1885179468.2217358.1551790639928.JavaMail.yahoo@mail.yahoo.co.jp> In-Reply-To: <0faa5fb55a0af4803fcdff786dba8be440355609.camel@cygwin.com> References: <1439412702 DOT 1866573 DOT 1551653028041 DOT JavaMail DOT yahoo DOT ref AT mail DOT yahoo DOT co DOT jp> <1439412702 DOT 1866573 DOT 1551653028041 DOT JavaMail DOT yahoo AT mail DOT yahoo DOT co DOT jp> <0faa5fb55a0af4803fcdff786dba8be440355609 DOT camel AT cygwin DOT com> Subject: Re: Re: 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: 7bit X-IsSubscribed: yes --- yselkowitz wrote: > On Mon, 2019-03-04 at 07:43 +0900, Tatsuro MATSUOKA wrote: > > Dear Yaakov 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 > > } > > // create the socket > > - if (-1 == (d->connectingSocket = qt_safe_socket(PF_UNIX, SOCK_STREAM, 0, O_NONBLOCK))) { > > + if (-1 == (d->connectingSocket = qt_safe_socket(PF_UNIX, SOCK_STREAM, 0))) { > > d->errorOccurred(UnsupportedSocketOperationError, > > QLatin1String("QLocalSocket::connectToServer")); > > return; > > > > It seems we keep going in circles on this point. If there is a bug in > O_NONBLOCK, then please either narrow it down to an STC, or provide a > patch to Cygwin. > > -- > Yaakov > > > I contacted with Enrico who tells me the patch that I have shown. His reply is the below. ********************************** Dear Tatsuro, unfortunately I do not have an STC other than the evidence that the above patch works for gnuplot. I have always had problems with O_NONBLOCK on cygwin. For example, see https://www.mail-archive.com/cygwin AT cygwin DOT com/msg104221.html -- Enrico ********************************** At this moment, the above is that I can do for this matter. 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