Re: automated cygwin install

2011-09-09 Thread Greg Chicares
On 2011-09-09 13:52Z, Andrew Schulman wrote: [...] > setup.exe ^ > --no-shortcuts ^ > --quiet-mode ^ > --disable-buggy-antivirus ^ > --packages ^ > aria2,^ > atool,^ I wanted to make a similar .BAT file write a custom /etc/fstab as well, so I needed it to wait for 'setup' to finish first. This wor

Re: 1.7.9(0.237/5/3): not seeing some Windows files

2011-09-14 Thread Greg Chicares
On 2011-09-14 21:35Z, Robert Perlberg wrote: > Microsoft Windows XP > Professional x64 Edition > Version 2003 > Service Pack 2 [and some files in C:\WINDOWS\system32 aren't seen by 'ls'] Perhaps some files are "hidden" as described here: http://cygwin.com/ml/cygwin/2006-01/msg00444.html -- Pro

Re: Dealing with Symlinks

2011-09-18 Thread Greg Chicares
On 2011-09-18 13:28Z, tedthetool wrote: > > I am trying to compile openssl. It's already available as a Cygwin package, BTW. > When I run make and make test, I get trivial > compile errors. See, > > error: expected identifier or '(' before '!' token > error: stray '\377' in program > error: str

Re: libc project ports

2011-09-20 Thread Greg Chicares
On 2011-09-20 10:51Z, toto titi wrote: > > I sent a few years ago a question to the libc project ports mailing > list (http://cygwin.com/ml/libc-ports/) without knowing this email > would be stored and made available to everyone on the internet. My > name and main email address clearly appears in

Re: stdio.h: broken standard compliance.

2011-10-11 Thread Greg Chicares
On 2011-10-10 18:42Z, Kaz Kylheku wrote: > > Corinna Vinschen writes: > >> > $ gcc -Wall -ansi -D_POSIX_C_SOURCE=2 posix-ansi.c > ^ >> fileno and pclose are *not* ANSI functions. Therefore, if you define >> -ansi, you get the below errors. The newlib headers have explicit >> #ifndef __STRICT

Re: linker error libcygwin

2011-11-10 Thread Greg Chicares
On 2011-11-10 20:39Z, Kraus Philipp wrote: > > I try to build a program with g++ under Cygwin. I added this libraries to the > linker: > -lcygboost_system Shouldn't that be '-lboost_system'? Run 'info ld' and search for '--dll-search-prefix': 'cyg-' is a typical default prefix that the '-l' opti

Re: linker error libcygwin

2011-11-10 Thread Greg Chicares
On 2011-11-10 21:22Z, Philipp Kraus wrote: > On 2011-11-10 22:11:48 +0100, Greg Chicares said: > >> On 2011-11-10 20:39Z, Kraus Philipp wrote: >>> >>> undefined reference to `_WinMain@16' >>> collect2: ld returned 1 exit status >> >> D

Re: How to get std::strtoull (unsigned long long)?

2011-11-29 Thread Greg Chicares
On 2011-11-29 10:22Z, Csaba Raduly wrote: > On Tue, Nov 29, 2011 at 11:04 AM, Markus Selve wrote: >> >> $ g++ -Wall -o tt tt.cpp >> tt.cpp: In function 'int main(int, char**)': >> tt.cpp:7:9: error: 'strtoull' is not a member of 'std' The default C++ dialect is based on the 1998 standard, which l

Re: Starting Z-shell via telnet connection to XP box

2011-12-09 Thread Greg Chicares
On 2011-12-09 15:31Z, Mike Brown wrote: > > I found no section in the user guide regarding converting from 1.5 to 1.7. > The last thing I want to do is make my current install non-functional. You can leave your 1.5 version undisturbed and install 1.7 in parallel. Read the instructions in this mes

setup 2.761 regression: '--quiet-mode' conflicts with '--packages'

2011-12-21 Thread Greg Chicares
It appears that some recent change to setup.exe has unintentionally made '--quiet-mode' incompatible with '--packages' for command-line installs. A similar problem was reported here: http://sourceware.org/ml/cygwin/2011-12/msg00244.html Using current setup.exe version 2.761, this no longer works

Re: setup 2.761 regression: '--quiet-mode' conflicts with '--packages'

2011-12-22 Thread Greg Chicares
On 2011-12-22 18:08Z, Jon TURNEY wrote: >>> On 12/21/2011 12:15 PM, Greg Chicares wrote: >>>> It appears that some recent change to setup.exe has unintentionally made >>>> '--quiet-mode' incompatible with '--packages' for command-line installs

subversion 1.9.3-1 segfault

2016-02-09 Thread Greg Chicares
'svn' segfaulted on a routine command: /lmi/mirror/lmi[0]$svn status --show-updates svn: E170013: Unable to connect to a repository at URL 'http://svn.savannah.nongnu.org/svn/lmi/lmi/trunk' svn: E000104: Error running context: Connection reset by peer svn update Updating '.': zsh: segmentat

Re: subversion 1.9.3-1 segfault

2016-02-09 Thread Greg Chicares
On 02/09/2016 08:55 PM, Andrey Repin wrote: > Greetings, Greg Chicares! > >> 'svn' segfaulted on a routine command: > >> zsh: segmentation fault (core dumped) > > So, was it svn or zsh that crashed? It was svn that crashed. I was running it in zsh, which

Re: subversion 1.9.3-1 segfault

2016-02-19 Thread Greg Chicares
On 2016-02-13 18:41, David Rothenberger wrote: > On 2/9/2016 9:39 AM, Greg Chicares wrote: >> 'svn' segfaulted on a routine command: >> >> /lmi/mirror/lmi[0]$svn status --show-updates >> >> svn: E170013: Unable to connect to a repository at URL >

Re: subversion 1.9.3-1 segfault

2016-02-19 Thread Greg Chicares
On 2016-02-19 16:28, David Rothenberger wrote: > Greg Chicares wrote: [...] >> /lmi/mirror/lmi[1]$svn update >> Updating '.': >> zsh: segmentation fault (core dumped) svn update [...non-helpful stackdump...] >> I'll try running 'svn'

Re: grep and the -f switch

2012-11-26 Thread Greg Chicares
On 2012-11-26 19:08Z, Roy Jensen wrote: > I've created a text file (in Windows) with the text patterns I wish to > search for. Using the -f switch, grep only searches for the last > pattern in the file. If there is a blank line at the end, grep finds > nothing. > > grep -a -A 4 -f pattern.txt my.f

Re: cygwin make fails when calling mkdir in Windows 7

2013-01-04 Thread Greg Chicares
On 2013-01-04 16:34Z, cpow wrote: [...] > Warren Young wrote >> What happens if you just re-start the make operation? Does it persist >> in failing to get past that point, or does re-starting it sometimes get >> you past the problem? > > If I restart the make operation without doing mkdir mysel

Re: Deterministic builds

2016-05-04 Thread Greg Chicares
On 2016-05-04 13:38, Ken Brown wrote: > Is it possible to build an executable on Cygwin so that subsequent > builds (with no change in source) produce identical results? Currently, > the timestamp embedded in executables prevents this. (I don't know if > that's the only obstacle.) '-fno-guess

<    1   2   3