[qt5] Patch for src/network/socket/qlocalsocket_unix.cpp

2018-03-12 Thread Tatsuro MATSUOKA
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/socke

Re: Files with attribute temporary invisible in cygwin

2018-03-12 Thread Pavel Kudrna
On 9/3/2018 21:29, Corinna Vinschen wrote: On Mar 9 21:04, Corinna Vinschen wrote: On Mar 9 14:56, Pavel Kudrna wrote: On 9/3/2018 10:26, Corinna Vinschen wrote: On Mar 9 00:43, Pavel Kudrna wrote: There exist files in windows 7 which can't be deleted using cygwin "rm" command. Files are v

Cygwin / Elastica Reach

2018-03-12 Thread Ingolf Markhof
Hi! I cannot use X for Cygwin (version 2.10.0) anymore since I recently got Elastica Reach installed on my Laptop running windows 10. This machine is my company provided (and software managed) laptop, so I don't have a lot of control over (in fact, I don't have hardly any control) what gets "pus

Unexpected behavior of HOME value

2018-03-12 Thread Joseph L. Casale
Looking at /etc/profile, I see the following: # Here is how HOME is set, in order of priority, when starting from Windows # 1) From existing HOME in the Windows environment, translated to a Posix path # 2) from /etc/passwd, if there is an entry with a non empty directory field # 3) fro

Re: Unexpected behavior of HOME value

2018-03-12 Thread Joseph L. Casale
> Does anybody have an idea what could be different on this one system that > I could check? The system in question is a laptop and the behavior works as expected when the laptop is connected to the domain, however it breaks when not. Starting a vpn session when remote brings the behavior back to

xmgrace fails, cannot find base type1 fonts

2018-03-12 Thread Hunter, Kendall
Hello, I am experiencing the same problem mentioned in this post: xmgrace fails on cygwin64. It simply doesn't start, even if GRACE_HOME is properly set to /usr/share/grace. I believe I've found a fix for this issue; it is associated with rec

Problem running Cygwin on Windows 10

2018-03-12 Thread Stanley Friesen
I have just installed, or tried to install, Cygwin on my Windows 10 machine.  I have run into a series of odd behaviors, and cannot get any of the Cygwin apps to run. First, the setup program appeared to hang near the end, but the log file indicates in finished normally, with no error, and the

Re: Problem running Cygwin on Windows 10

2018-03-12 Thread Andrey Repin
Greetings, Stanley Friesen! > I have just installed, or tried to install, Cygwin on my Windows 10 > machine.  I have run into a series of odd behaviors, and cannot get any > of the Cygwin apps to run. > First, the setup program appeared to hang near the end, but the log file > indicates in fin

Re: xmgrace fails, cannot find base type1 fonts

2018-03-12 Thread Brian Inglis
On 2018-03-12 10:11, Hunter, Kendall wrote: > I am experiencing the same problem mentioned in this > post: xmgrace fails on > cygwin64. It simply doesn't start, even if GRACE_HOME is properly set to > /usr/share/grace. I believe I've found a fi

Re: Cygwin / Elastica Reach

2018-03-12 Thread Achim Gratz
Ingolf Markhof writes: > I cannot use X for Cygwin (version 2.10.0) anymore since I recently > got Elastica Reach installed on my Laptop running windows 10. Whatever type of snake oil that is… https://cygwin.com/ml/cygwin/2018-02/msg00247.html > Any pointers for a fix/workaround? Well, try to c

Meet New Buyers of Montreal Golf expo

2018-03-12 Thread Michelle Vang
Hi, Hope this email finds you well. I understand that you are one of the Exhibitors of upcoming event "Montreal Golf expo, Laval, Canada". I thought I'd check if you are interested in acquiring the "Montreal Golf expo 2018- Attendees List" for pre-show marketing campaign, Meeting Setting, Ne

Re: Cygwin / Elastica Reach

2018-03-12 Thread Marco Atzeri
On 12/03/2018 19:55, Achim Gratz wrote: Ingolf Markhof writes: I cannot use X for Cygwin (version 2.10.0) anymore since I recently got Elastica Reach installed on my Laptop running windows 10. Whatever type of snake oil that is… https://www.linkedin.com/company/elastica/ another Symantec BL

[bug] coreutils: potentially dangerous: $(realpath //) != /

2018-03-12 Thread Mikhail Usenko via cygwin
coreutils-8.26-2 cygwin-2.10.0-1 Test case 1: --- $ realpath // // --- Expected output: / Test case 2: --- $ MYDIR=// $ test "$(realpath -e "$MYDIR" )" != / && echo rm -rf "$MYDIR"/* rm -rf ///bin ///cygdrive ///Cygwin.bat ///Cygwin.ico ///Cygwin-

Re: [bug] coreutils: potentially dangerous: $(realpath //) != /

2018-03-12 Thread Eric Blake
On 03/12/2018 03:28 PM, Mikhail Usenko via cygwin wrote: coreutils-8.26-2 cygwin-2.10.0-1 Test case 1: --- $ realpath // // Correct. --- Expected output: / Wrong. On cygwin, '/' and '//' are two different directories, as allowed by POSIX. Converting // int

Re: [bug] coreutils: potentially dangerous: $(realpath //) != /

2018-03-12 Thread Achim Gratz
Mikhail Usenko via cygwin writes: > coreutils-8.26-2 > cygwin-2.10.0-1 > > Test case 1: > --- > $ realpath // > // > --- > Expected output: / Adjust your expectations, a double slash at the beginning signifies a network path (as expressedly allowed for in POSIX) and

Re: [bug] coreutils: potentially dangerous: $(realpath //) != /

2018-03-12 Thread Mikhail Usenko via cygwin
On Mon, 12 Mar 2018 21:47:09 +0100 Achim Gratz <...> wrote: > This goes to show that you really, really, really want to understand the > corner > cases in this script. On Mon, 12 Mar 2018 15:41:00 -0500 Eric Blake <...> wrote: > On cygwin, '/' and '//' are two different directories, as allowed by

gnuplot dev shapshot for Cygwin With qt terminal

2018-03-12 Thread Tatsuro MATSUOKA
I have added experimental Cygwin binary packages of gnuplot development snapshot with Qt terminal. http://www.tatsuromatsuoka.com/gnuplot/Eng/cygbin/ Tatsuro -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cyg

Re: [bug] coreutils: potentially dangerous: $(realpath //) != /

2018-03-12 Thread Eric Blake
On 03/12/2018 06:38 PM, Mikhail Usenko via cygwin wrote: Well, guys my expextations are that the program/script execution conditions in Cygwin should be the same as in other popular POSIX systems (namely it is Linux) POSIX says that the behavior of leading // is implementation-defined (that is

[ANNOUNCEMENT] Updated: poco-1.9.0-1

2018-03-12 Thread David Stacey
The following packages have been updated in the Cygwin distribution: * libpoco-devel-1.9.0-1 * libpoco60-1.9.0-1 * poco-1.9.0-1 * poco-doc-1.9.0-1 The POCO C++ Libraries are open source C++ class libraries that simplify and accelerate the development of network-centric, portable applications in

[ANNOUNCEMENT] clamav 0.99.4-1

2018-03-12 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * clamav-0.99.4-1 * clamav-doc-0.99.4-1 * libclamav7-0.99.4-1 * libclamav-devel-0.99.4-1 * clamav-db-daily-24388.319-1 Clam AntiVirus is a GPL anti-virus toolkit for UNIX, featuring command-line scanner, fast, multi-threaded d

Mismatch between the program and library build versions detected. for wxWidgets

2018-03-12 Thread Tatsuro MATSUOKA
I have met following warning gnuplot build with wxt terminal gnuplot> pl x 12:43:09: Warning: Mismatch between the program and library build versions detected. The library used 3.0 (wchar_t,compiler with C++ ABI 1009,wx containers,compatible with 2.8), and your program used 3.0 (wchar_t,compiler

(solved) Re: Mismatch between the program and library build versions detected. for wxWidgets

2018-03-12 Thread Tatsuro MATSUOKA
I found the workaround https://github.com/eranif/codelite/issues/825 Add CPPFLAGS=-D__GXX_ABI_VERSION=\"1009\" to configure script erase warining. Tatsuro ** previous post (edited typo ) *** I have met following warning gnuplot build with wxt terminal gnuplot> pl x 12:4