Re: Composer segfault on multiple configurations

2017-05-25 Thread Sky Diver
On Mon, May 22, 2017 at 9:38 PM, Richard H Lee wrote: > Just in case Sky Diver or anyone else is interested in compiling php from > Cygports, here are some simple steps to do so. Thanks Richard, I may try this at some point, but am currently experiencing other instabilities. For some reason, I sta

Re: Mintty does not close after "exit" command

2017-05-25 Thread Sky Diver
On Wed, May 24, 2017 at 11:42 AM, Dani Moncayo wrote: > To reproduce the problem, just open the standard cygwin terminal (e.g. > by double-clicking the desktop icon), an then type the "exit" command > in the bash shell. > > I see a "logout" message for a fraction of a second, then the terminal > be

RE: Bug: bash -e misbehaves with several nested

2017-05-25 Thread Pavel Fedin
Hello! > > Hello! I'd like to report a strange bug in 64-bit bash. The following > > script: > > > > cut --- > > #/bin/bash -e > > > > DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" > > echo Works: $DIR > > cut --- > > > > Simply exits and produces no output (never reaches ec

Re: Bug: bash -e misbehaves with several nested

2017-05-25 Thread Marco Atzeri
On 25/05/2017 11:57, Pavel Fedin wrote: Hello! Hello! I'd like to report a strange bug in 64-bit bash. The following script: cut --- #/bin/bash -e DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" echo Works: $DIR cut --- Simply exits and produces no output (never reaches e

Re: too many environment variables on self-compiled xar archiver

2017-05-25 Thread Andrey Repin
Greetings, Hans-Bernhard Bröker! > Am 24.05.2017 um 12:01 schrieb Andrey Repin: >>> Did you notice this entry and does anyone know where this comes from? >>> !C:=C:\cygwin\bin >> This is coming from CMD, and denotes current working directory on an >> indicated >> drive. > And for (mos

Re: Bug: bash -e misbehaves with several nested

2017-05-25 Thread Andrey Repin
Greetings, Pavel Fedin! >> > Hello! I'd like to report a strange bug in 64-bit bash. The following >> > script: >> > >> > cut --- >> > #/bin/bash -e >> > >> > DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" >> > echo Works: $DIR >> > cut --- >> > >> > Simply exits and produces

Re: Apache rebase trouble

2017-05-25 Thread Michael Lemke
On Wed, 24 May 2017 01:56:55 +0200, Michael Enright wrote: On Tue, May 23, 2017 at 3:59 PM, Michael Lemke wrote: Lacking further clues I did the trial and error thing and removed some stuff I thought I didn't need (like GNOME). Not sure yet what I broke but my Apache is working again. Thanks

UTF-8 compatibility between Windows and Cygwin

2017-05-25 Thread Nellis, Kenneth
I have (BOM-less) UTF-8 text files that I can read fine in Cygwin, but not Windows. When I create text files in Windows containing non-ASCII characters, I cannot read them in Cygwin. I understand why, but wondering the best way to be able to share text files across the two environments. I'm p

Clueless! sshd ONLY fails at system startup (XP/SP3) ...

2017-05-25 Thread Houder
Hi, YES, I know, XP is NOT supported anymore ... However, I started out on XP ... and it has sshd running as a Window service, installed and configured (as approved by Corinna :-) ... some time ago I may have upgraded openssh over there (yes, I am now running W7) ... I cannot really remembe

Re: Clueless! sshd ONLY fails at system startup (XP/SP3) ...

2017-05-25 Thread Andrey Repin
Greetings, Houder! > Hi, > YES, I know, XP is NOT supported anymore ... However, I started > out on XP ... and it has sshd running as a Window service, > installed and configured (as approved by Corinna :-) > ... some time ago I may have upgraded openssh over there (yes, I > am now running

Re: UTF-8 compatibility between Windows and Cygwin

2017-05-25 Thread Andrey Repin
Greetings, Nellis, Kenneth! > I have (BOM-less) UTF-8 text files that I can read fine in > Cygwin, but not Windows. When I create text files in Windows > containing non-ASCII characters, I cannot read them in > Cygwin. I understand why, but wondering the best way to be > able to share text fil

Re: bug in lrint [was: FW: Printing long int in C program under cygwin64]

2017-05-25 Thread Brian Inglis
On 2017-05-24 19:31, Steven Penny wrote: > On Wed, 24 May 2017 16:36:03, Steven Penny wrote: >> Aren’t both wrong? By definition %i is a signed integer, and size_t is >> unsigned. >> So %zu or %llu would be more correct: >> http://wikipedia.org/wiki/C_data_types >> They all seem to do the job thoug

Re: too many environment variables on self-compiled xar archiver

2017-05-25 Thread Brian Inglis
On 2017-05-24 15:18, Hans-Bernhard Bröker wrote: > Am 24.05.2017 um 12:01 schrieb Andrey Repin: > >>> Did you notice this entry and does anyone know where this comes from? >>> !C:=C:\cygwin\bin > >> This is coming from CMD, and denotes current working directory on an >> indicated >> driv

[ANNOUNCEMENT] Updated: lyx-2.2.3-1

2017-05-25 Thread Marco Atzeri
New version 2.2.3-1 of lyx is available in the Cygwin distribution: CHANGES Last upstream release. http://www.lyx.org/announce/2_2_3.txt DESCRIPTION LyX is a document processor that encourages an approach to writing based on the structure of your documents (WYSIWYM) and not simply their appe

Re: Bug: bash -e misbehaves with several nested

2017-05-25 Thread Brian Inglis
On 2017-05-25 08:40, Andrey Repin wrote: > Greetings, Pavel Fedin! Hello! I'd like to report a strange bug in 64-bit bash. The following script: cut --- #/bin/bash -e DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" echo Works: $DIR cut ---

Re: High cpu usage by at-spi-bus-launcher and xwin-xdg-menu

2017-05-25 Thread miserable variable
When I kill xwin-xdg-menu the X server does not exit. I have often found the X applications menu to not appear at startup at all, I will check next time if that correlates with high cpu. I will also check ~/.xsession-errors next time this happens. Right now I do not have at-spi-bus-launcher runni

Re: bug in lrint [was: FW: Printing long int in C program under cygwin64]

2017-05-25 Thread Eric Blake
On 05/24/2017 06:36 PM, Steven Penny wrote: > On Wed, 24 May 2017 07:33:27, Eric Blake wrote: >> Buggy. size_t should be printed with %zi, not %i (since size_t and int >> are not necessarily the same type). > > Aren’t both wrong? By definition %i is a signed integer, and size_t is > unsigned. > S

Problems with ssh-host-config and /var/run directory

2017-05-25 Thread Henning Peters
Hi, I switched from 32bit to 64 bis a week ago, moved "cygwin" to "cygwin32" and reinstalled from scratch into a new "cygwin" directory. Setup: Windows 7 Ultimate Ver 6.1 Build 7601 Service Pack 1 Cygwin DLL version info: DLL version: 2.8.0 DLL epoch: 19 DLL old

Re: Problems with ssh-host-config and /var/run directory

2017-05-25 Thread Hans-Bernhard Bröker
Am 25.05.2017 um 21:24 schrieb Henning Peters: Hi, I switched from 32bit to 64 bis a week ago, moved "cygwin" to "cygwin32" and reinstalled from scratch into a new "cygwin" directory. I don't think that was a good strategy. Cygwin does use some registry entries pointing to absolute paths, i.

Memcache/d (Orig: Re: Composer segfault on multiple configurations)

2017-05-25 Thread Richard H Lee
On 25/05/2017 08:50, Sky Diver wrote: Since then I went back in time and installed PHP 5.5.9, PHP 5.6.20 but the result is the same. PHP 5.5.9, PHP 5.6.2 on Cygwin? Were they even released on Cygwin? So I might end up following your steps in order to build PHP, hoping I could enable built-in m

Clueless! sshd ONLY fails at system startup (XP/SP3) ... minor correction

2017-05-25 Thread Houder
On 2017-05-25 17:36, Houder wrote: Hi, YES, I know, XP is NOT supported anymore ... However, I started out on XP ... and it has sshd running as a Window service, installed and configured (as approved by Corinna :-) ... some time ago I may have upgraded openssh over there (yes, I am now run

Re: Problems with ssh-host-config and /var/run directory

2017-05-25 Thread Brian Inglis
On 2017-05-25 13:24, Henning Peters wrote: > I switched from 32bit to 64 bis a week ago, moved "cygwin" to "cygwin32" and > reinstalled from scratch into a new "cygwin" directory. > when trying to setup sshd using ssh-host-config, I get this message when > using StrictModes (which I want to and did

Re: Another BLODA with Cylance PROTECT? Can't rebase

2017-05-25 Thread Tim McDaniel
On Tue, 23 May 2017, Brian Inglis wrote: On 2017-05-23 21:34, Tim McDaniel wrote: Back in ml/cygwin/2017-04/msg00238.html, Wed, 19 Apr 2017 14:25:26 -0400, "Another BLODA with Cylance PROTECT? Can't rebase", I noted that I couldn't install current cygwin, and asked for help on how to proceed.

System crontab with username containing a space

2017-05-25 Thread Gene Pavlovsky
Hey folks :) Due to circumstances beyond my control, I've got a user account on a remote PC which contains a space in the username, i.e. "Test Computer". I've set up Cygwin and cron, and am having problems with the system crontab. I can't figure out how to put the username in there, I've tried it

Re: bug in lrint [was: FW: Printing long int in C program under cygwin64]

2017-05-25 Thread Steven Penny
On Thu, 25 May 2017 13:17:30, Eric Blake wrote: Correct. Newer gcc's -Wformat-signedness will flag the discrepency. Uh, have you actually tried this? It doesnt do anything: $ cat alfa.c #define __USE_MINGW_ANSI_STDIO 1 #include int main() { printf("%zi %zu %llu\n", __SIZE_MA

Re: bug in lrint [was: FW: Printing long int in C program under cygwin64]

2017-05-25 Thread Steven Penny
On Thu, 25 May 2017 18:43:58, Steven Penny wrote: Uh, have you actually tried this? It doesnt do anything: $ cat alfa.c #define __USE_MINGW_ANSI_STDIO 1 #include int main() { printf("%zi %zu %llu\n", __SIZE_MAX__, __SIZE_MAX__, __SIZE_MAX__); } $ x86_64-w64-mingw3

Re: [cygwin] v1.7

2017-05-25 Thread Jason Pyeron
(I used to have a dadms account) Cygwin is open source, red hat has a paid support option. Your vendor support statement is not likely the best course of action. That being said, you may contact me directly or continue on list to help get the current version back in dadms. Ctr mail: jason.j.pyer

Re: Clueless! sshd ONLY fails at system startup (XP/SP3) ...

2017-05-25 Thread Houder
On 2017-05-25 17:59, Andrey Repin wrote: Hi Andrey, [snip] When the service is restarted after system startup, i.c. cygrunsrv -E sshd; cygrunsrv -S sshd it then works flawlessly (which amazes me, given the error in the sshd.log) What if you `net start "Cygwin sshd"` ? You mean af

Clueless! sshd ONLY fails at system startup (XP/SP3) -- FOLLOWUP

2017-05-25 Thread Houder
On 2017-05-25 23:21, Houder wrote: On 2017-05-25 17:36, Houder wrote: Hi, YES, I know, XP is NOT supported anymore ... However, I started out on XP ... and it has sshd running as a Window service, installed and configured (as approved by Corinna :-) ... some time ago I may have upgraded o