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:message-id:date:from:reply-to:subject:to :mime-version:content-type:content-transfer-encoding; q=dns; s= default; b=Dkt7cwZ8LfxZmodJctA//j0vR5qIzEZtF8M26zXGIyL7DQR3x9qVp Bg4rsK39Aypq/7ViiMZ/gdszxc+byp8QUsbZK89asDp7vJ1Xt1CFfvInDqoU162f gEACsvVbUIzO0b/sP4mewVzPOyYxbpkVBTtUEUdzrDDwGOkC7Dl7eM= 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:message-id:date:from:reply-to:subject:to :mime-version:content-type:content-transfer-encoding; s=default; bh=UTAcvhmu8giR4r5BFpZM+RFhGY4=; b=xsGQxNfezyjrEeIgPiMOzkXKEsNW oX03P33se93Y3/EbtVtwLPkxiLdffcNJX5Rpw7ndmtYah8jP97RXwRRx1fPOJz+L Qb85e6x6XKe87x7NRd3b5LcSy8AqwUTQLrJoDybcalVLsbuRp9iQQ1zl7acwvm/M 093EZLhLg+6WowI= 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-Virus-Found: No X-Spam-SWARE-Status: No, score=-8.1 required=5.0 tests=AWL,BAYES_50,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*Ad:D*co.jp, H*F:D*yahoo.co.jp, H*Ad:D*yahoo.co.jp, H*UA:sk:YahooMa X-HELO: nh603-vm13.bullet.mail.ssk.yahoo.co.jp Message-ID: <263441.95878.qm@web103106.mail.kks.yahoo.co.jp> X-YMail-JAS: TSYSmOQVM1mpTjTECiViOcvLI47CknU3I_uxbIDcGWBGJ3tMznvDtbEbggHDvX_mcrimTk7tt.YsSBwt5j.uQrziPhTsxMucRo807CjSJkhPsowuXxsBvAOtmoFr5j9JD45w Date: Mon, 12 Mar 2018 18:04:05 +0900 (JST) From: Tatsuro MATSUOKA Reply-To: Tatsuro MATSUOKA Subject: [qt5] Patch for src/network/socket/qlocalsocket_unix.cpp To: cygwin AT cygwin DOT com, tmacchant2 AT yahoo DOT co DOT jp, Enrico Forestieri MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-IsSubscribed: yes Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id w2C94MUt030983 I have been trying to build qt terminal for gnuplot on cygwin and not getting successful results. connection of two processes (gnuplot.exe and gnuplot_qt.exe) were in failure. Patch by Enrico Forestieri solves the problem (avoid using O_NONBLOCK) --- a/qtbase-everywhere-src-5.10.1/src/network/socket/qlocalsocket_unix.cpp +++ b/qtbase-everywhere-src-5.10.1/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; Can this patch appply to current Qt5 for cygwin? 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