Re: whole-word matches searches of mailing list archive & packages

2006-01-29 Thread Gmane User
Gmane User wrote: > Brian Dessent wrote: > >>Fred Ma wrote: >> >>>I was searching for whether the current cygwin has the "stat" command. >>>This is for future reference, since I am unable to update my old >>>cygwin installation at the moment. I eventually found that "stat" >>>resides in coreutils

La vie : une question d'assurance et de confiance

2006-01-29 Thread Olivier Rogier
Bonjour et bonne année 2006. J'ai rédigé une pétition de soutien en raison d'une affaire grave d'agressions, d'accidents de la circulation, et de mauvaises gestions médicales et administratives, qui est exposée sur le site internet : http://orogier.free.fr N'hésitez pas à transmettre ce message

Re: SSH Local Port Forwarding

2006-01-29 Thread Corinna Vinschen
On Jan 27 09:56, Corinna Vinschen wrote: > On Jan 26 16:53, Jon Dixon wrote: > >I have Cygwin version 1.5.18-1 installed on a Windows 2003 Server > > System. My question is in regard to the SSH Local Port Forwarding > > feature. I activate the ssh local port forwarding with the command > > li

Re: Cygwin Bash window disappear?!

2006-01-29 Thread Igor Peshansky
Ugh, top-posting... Reformatted. On Sun, 29 Jan 2006, Hammond, Robin-David%KB3IEN wrote: > On Fri, 27 Jan 2006, Daniel mark wrote: > > > Date: Fri, 27 Jan 2006 21:04:29 + (UTC) > > From: Daniel mark <[EMAIL PROTECTED]> > > To: [EMAIL PROTECTED] Daniel,

where is 'chere'

2006-01-29 Thread Fredrik Lundgren
Dear list, I recently reinstalled cygwin in its base configuration and added 'nano' and 'rxvt'. everything works as expected but bash doesn't recognize 'chere' as a command. I don't remeber that I had to do something special to use 'chere' in my previous setup. Any help? Fredrik -- Unsubscri

Re: where is 'chere'

2006-01-29 Thread Fredrik Lundgren
Thanks! Yes, I found it. Didn't remeber that it was a special package. Found it easily when doing it right. Fredrik - Original Message - From: "Brett Serkez" <[EMAIL PROTECTED]> To: "Fredrik Lundgren" <[EMAIL PROTECTED]> Sent: Sunday, January 29, 2006 5:10 PM Subject: Re: where is 'che

Re: bizarre g++ behavior after reinstalling cygwin

2006-01-29 Thread Igor Peshansky
On Sun, 29 Jan 2006, Vadim Oganesyan wrote: I just reinstalled cygwin on my laptop (running winXP) and g++ is acting most peculiar. The code that has been working fine for thepast 2~3 months no longer works (the programs are still working on other machines). the seem to compile OK, but don't ge

Re: bizarre g++ behavior after reinstalling cygwin

2006-01-29 Thread Brett Serkez
> "i=i++" is either a no-op or nonsense, depending on the > interpretation. You should either use "i=i+1" or "i++" (those should > be equivalent in modern compilers). The strick interpretation of i=i++ starts by evaluating the right side "i++" to compute a r-value (right value). Since the ++ is

problems with latest cygwin version CYGWIN_NT-5.1 ELEPHANT 1.5.19(0.150/4/2) 2006-01-20 13:28 i686 Cygwin

2006-01-29 Thread Ron Rice & Helga Holtmann
Since updating Cygwin using setup.exe, I have not been able to run either Xwin or WindowMaker:   $startxwin.sh   [EMAIL PROTECTED] ~ $ C:\cygwin\usr\X11R6\bin\XWin.exe (2536): *** proc magic mismatch detected - 0C87757A7/0xD94C588A. This problem is probably due to using incompatible versions of th

Re: Native letters in Cygwin zsh

2006-01-29 Thread Joshua Daniel Franklin
On 1/27/06, Wojciech Pietron wrote: > After a few hours spent in 'bindkey', 'stty' and similar stuff I am not > very familiar with, I found out that after running a command 'setopt nozle' > I am able to produce all Polish letters. Of course, I loose all > functionality associated with 'Zsh Line Edi

Re: problems with latest cygwin version CYGWIN_NT-5.1 ELEPHANT 1.5.19(0.150/4/2) 2006-01-20 13:28 i686 Cygwin

2006-01-29 Thread Larry Hall (Cygwin)
Ron Rice & Helga Holtmann wrote: Since updating Cygwin using setup.exe, I have not been able to run either Xwin or WindowMaker: $startxwin.sh [EMAIL PROTECTED] ~ $ C:\cygwin\usr\X11R6\bin\XWin.exe (2536): *** proc magic mismatch detected - 0C87757A7/0xD94C588A. This problem is probably due t

Re: bizarre g++ behavior after reinstalling cygwin

2006-01-29 Thread Brian Dessent
Vadim Oganesyan wrote: > Digging in I found that none of the "i=i++" calls inside for-loops work. I Please get a book on C and then read it. "i=i++" is undefined behavior according to the standard, and upon seeing this the compiler is allowed to do anything it wants -- it could generate code to

RE: LD_PRELOAD regression on 1.5.19-4 ? no more loaded library in child process

2006-01-29 Thread Louis Lecaroz
I can't help you, but I can see that there's a lot of information missing here. You're right. > What did you actually *do* to get from one step to the next in the > above? Where does your MSVC-linked DLL come into it? What loads that > DLL? What is your system like (the information requested i

Re: bizarre g++ behavior after reinstalling cygwin

2006-01-29 Thread Igor Peshansky
On Sun, 29 Jan 2006, Brett Serkez wrote: > > > "i=i++" is either a no-op or nonsense, depending on the > > interpretation. You should either use "i=i+1" or "i++" (those should > > be equivalent in modern compilers). > > The strick interpretation of i=i++ starts by evaluating the right side > "i++