Re: Fullscreen application with Cygwin/X in multiwindow mode

2016-11-29 Thread Andrey Repin
Greetings, David Chamberlain! >> But ideally this would be fixed by adding support for >> _NET_WM_STATE_FULLSCREEN to the WM. > Any idea how much effort would be required to implement the fullscreen > support? Any major hurdles to overcome? It may be something I could > work on in my spare time.

Re: Retrieving per-process environment block?

2016-11-29 Thread Erik Bray
On Thu, Nov 17, 2016 at 3:00 PM, Corinna Vinschen wrote: > On Nov 17 14:30, Erik Bray wrote: >> Hi all, >> >> For a quick bit of background, I'm working on porting the highly >> useful psutil [1] Python library to Cygwin. This has proved an >> interesting exercise, as much of the functionality of

Re: Retrieving per-process environment block?

2016-11-29 Thread cyg Simple
On 11/29/2016 8:26 AM, Erik Bray wrote: > On Thu, Nov 17, 2016 at 3:00 PM, Corinna Vinschen > wrote: >> On Nov 17 14:30, Erik Bray wrote: >>> Hi all, >>> >>> For a quick bit of background, I'm working on porting the highly >>> useful psutil [1] Python library to Cygwin. This has proved an >>> int

DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread cyg Simple
I find this excerpt from cygwin-help a bit confusing. Notice the "yahoo.com" in the "Remote host said:" message. What's really going on here? Why is yahoo.com doing the authentication for a gmail.com address? Received: (qmail 130602 invoked for bounce); 17 Nov 2016 10:26:04 - Date: 17 Nov

Re: Retrieving per-process environment block?

2016-11-29 Thread Eliot Moss
On 11/29/2016 8:26 AM, Erik Bray wrote: On Thu, Nov 17, 2016 at 3:00 PM, Corinna Vinschen wrote: On Nov 17 14:30, Erik Bray wrote: Hi all, For a quick bit of background, I'm working on porting the highly useful psutil [1] Python library to Cygwin. This has proved an interesting exercise, as

Re: DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread Jack
On 2016.11.29 09:24, cyg Simple wrote: I find this excerpt from cygwin-help a bit confusing. Notice the "yahoo.com" in the "Remote host said:" message. What's really going on here? Why is yahoo.com doing the authentication for a gmail.com address? Received: (qmail 130602 invoked for bou

Re: Retrieving per-process environment block?

2016-11-29 Thread Erik Bray
On Tue, Nov 29, 2016 at 3:28 PM, Eliot Moss wrote: > On 11/29/2016 8:26 AM, Erik Bray wrote: >> >> On Thu, Nov 17, 2016 at 3:00 PM, Corinna Vinschen >> wrote: >>> >>> On Nov 17 14:30, Erik Bray wrote: Hi all, For a quick bit of background, I'm working on porting the highly >>>

Re: DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread David Macek
On 29. 11. 2016 15:24, cyg Simple wrote: > I find this excerpt from cygwin-help a bit confusing. Notice the > "yahoo.com" in the "Remote host said:" message. What's really going on > here? Why is yahoo.com doing the authentication for a gmail.com address? > > > Received: (qmail 130602 invoked

Re: Retrieving per-process environment block?

2016-11-29 Thread Andrey Repin
Greetings, Erik Bray! > Thanks for the reply. The issue here isn't getting the Windows > process environment--that can be done, albeit trickily [1]. While > it's true there are security implications, in this case that is > handled at the OpenProcess call required to obtain a handle to the > proc

Re: DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread Erik Soderquist
On Tue, Nov 29, 2016 at 11:19 AM, David Macek wrote: > What happens is that ezmlm (the mailing list software) broadcasts this > message (after adding a bunch of links at the bottom) to everyone > subscribed, but with the sender unchanged. Yahoo has got a DMARC policy > set up that is supposed to en

php 7 upgrade -- segmentation fault

2016-11-29 Thread 59yfvs+f4bkzvgzw
I just updated from php5.6.27-1 to php7.0.13-1 . A previously working script now segfaults and the stackdump isn't terribly helpful in tracing the issue: $ cat php.exe.stackdump Exception: STATUS_ACCESS_VIOLATION at eip=FFBC0008 eax=80155DA0 ebx=80165AC8 ecx=00289080 edx=0004 esi=FFBC0008 ed

Re: php 7 upgrade -- segmentation fault

2016-11-29 Thread 59yfvs+f4bkzvgzw
I've isolated the issue to a regular expression match! This line: $command = ( preg_match('#^(?:\:.*? )?(.*?) #', $buffer, $matches) ) ? $matches[1] : ''; causes the segfaulting. BUT WHY? Again this worked fine in php5.x . There is something broken with PCRE in this build. Sent using

Re: php 7 preg_match always causes segmentation fault

2016-11-29 Thread 59yfvs+f4bkzvgzw
It's more serious than I thought as ANY use of preg_match causes the segfaulting, even in interactive mode. $ php -a Interactive shell php > $msg="!Hello"; if ( preg_match('#^!Hello\b#', $msg) ) echo "wee"; Segmentation fault (core dumped) php > if ( preg_match('/d/', 'dba') ) echo "wee"; Segmen

Re: php 7 preg_match always causes segmentation fault

2016-11-29 Thread Yaakov Selkowitz
On 2016-11-29 12:02, 59yfvs+f4bkzv...@guerrillamail.com wrote: It's more serious than I thought as ANY use of preg_match causes the segfaulting, even in interactive mode. This does not occur for me with either 32-bit or 64-bit cygwin. -- Yaakov -- Problem reports: http://cygwin.com/prob

Re: php 7 upgrade -- segmentation fault

2016-11-29 Thread Yaakov Selkowitz
On 2016-11-29 11:50, 59yfvs+f4bkzvgzw at guerrillamail.com wrote: I've isolated the issue to a regular expression match! This line: $command = ( preg_match('#^(?:\:.*? )?(.*?) #', $buffer, $matches) ) ? $matches[1] : ''; causes the segfaulting. BUT WHY? Again this worked fine in php5.x . Ther

Re: DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread cyg Simple
On 11/29/2016 10:28 AM, Jack wrote: > On 2016.11.29 09:24, cyg Simple wrote: >> I find this excerpt from cygwin-help a bit confusing. Notice the >> "yahoo.com" in the "Remote host said:" message. What's really going on >> here? Why is yahoo.com doing the authentication for a gmail.com address?

Re: Re: php 7 upgrade -- segmentation fault

2016-11-29 Thread 59yfvs+f4bkzvgzw
I can revert to php5 (insecure) and the problem is gone. I just performed a full rebase which did nothing for this problem. Are you saying that on a Windows 7 64 bit Home system with 32 bit cygwin you are not having any issues? I found a solution that is not really satisfying. If I go into Win

Re: DMARC - gmail.com or is it yahoo.com

2016-11-29 Thread Stephen John Smoogen
On 29 November 2016 at 11:59, Erik Soderquist wrote: > On Tue, Nov 29, 2016 at 11:19 AM, David Macek wrote: >> What happens is that ezmlm (the mailing list software) broadcasts this >> message (after adding a bunch of links at the bottom) to everyone >> subscribed, but with the sender unchanged. Y

Re: php 7 upgrade -- segmentation fault

2016-11-29 Thread Yaakov Selkowitz
On 2016-11-29 12:22, 59yfvs+f4bkzv...@guerrillamail.com wrote: I can revert to php5 (insecure) and the problem is gone. I just performed a full rebase which did nothing for this problem. Are you saying that on a Windows 7 64 bit Home system with 32 bit cygwin you are not having any issues? I w

Re: php 7 upgrade -- segmentation fault

2016-11-29 Thread 5a1dvi+28lxtut1an
Ahh! I disabled pcre.jit in the new php.ini, and now it's working fine without the DEP exception. Thanks for that tip. I can live with the performance hit vs the security. Thanks again for working through it with me. Sent using Guerrillamail.com Block or report abuse: https://www.gu

Re: Cygwin 64 problem

2016-11-29 Thread Ken Brown
On 11/27/2016 11:02 AM, Ken Brown wrote: > On 11/27/2016 9:03 AM, Girish Joglekar wrote: >> Hi Ken, >> Thank you for your reply on the Cygwin mailing list. I have created a >> slightly smaller test example smaller than what I had created in Feb. >> Attached is a tar file. After make insall if you r

Re: Retrieving per-process environment block?

2016-11-29 Thread Herbert Stocker
Hi, On 29.11.2016 17:27, Andrey Repin wrote: Greetings, Erik Bray! Thanks for the reply. The issue here isn't getting the Windows process environment--that can be done, albeit trickily [1]. While it's true there are security implications, in this case that is handled at the OpenProcess call

Re: Cygwin TCP slow

2016-11-29 Thread Daniel Havey
Okay, I will find some time to produce a patch. It might take a while though because I have a day job :). BTW, what the heck is an STC? Here is an experiment with three machines like this: OOO The one in the middle has a 50ms of delay (25ms in each direction). Here are the results from C

Re: Cygwin TCP slow

2016-11-29 Thread Sam Habiel
"Then we made a private build of Windows that ignores SO_RCVBUF and SO_SNDBUF and just always uses autotuning no matter what the app does." Out of curiosity, how did you do that? Do you work for Microsoft, or is there something fantastic I missed about building your own modified DLLs? On Tue, Nov

Re: Retrieving per-process environment block?

2016-11-29 Thread Eliot Moss
On 11/29/2016 7:28 PM, Herbert Stocker wrote: Or we simply copy the variables unconverted to the Windows environment block, as the Windows env block is not used for anything else - up to now it is not updated at all. Maybe we could stash them inside one large variable? Would that help at all?

Re: Cygwin TCP slow

2016-11-29 Thread Brian Inglis
On 2016-11-29 19:38, Sam Habiel wrote: > On Tue, Nov 29, 2016 at 8:08 PM, Daniel Havey wrote: >> On Mon, Nov 28, 2016 at 12:51 PM, Brian Inglis >> wrote: >>> On 2016-11-28 12:54, Daniel Havey wrote: We have had complaints from several large hardware vendors that Windows networking is sl