Strange errors from grep pipeline

2004-12-07 Thread Parker, Ron
Hi, I am running Windows XP SP2 and am having some strange issues when I use find...|xargs grep For example "find|xargs grep string" yields: ... (standard input):./butlradv/res/strings.rc (standard input):./butlrcmn/Debug/string.obj (standard input):./butlrcmn/Debug/stringlist.obj (standard

RE: Strange symlink and mv interaction

2004-02-20 Thread Parker, Ron
> From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] > Tilde expansion is usually done by the shell. However, > judging from the > rest of your message, you meant the above to say > > mv -- --1.2 ../tla--escapes--1.2 I did. > This is the expected behavior. The symlink takes you to the

Strange symlink and mv interaction

2004-02-19 Thread Parker, Ron
>From inside of ~/src/myprojects I did a: mv -- --1.2 ~/tla--escapes--1.2 where "--1.2" was a directory in ~/src/myprojects. This did not move ~/src/myprojects/--1.2 to ~/src/tla--escapes--1.2. What it did do was move it to /cygdrive/c/tla--escapes--1.2. Here are the pertinent paths:

RE: Patch and directions for compiling GNU screen 3.9.15 on cygwi n

2003-11-25 Thread Parker, Ron
> From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] > Indeed. Mine was a bit more complex (see > ), but I > think it may > have enabled some features that this one doesn't. In any > case, I think > the attach feature won't work with this patch

RE: Patch and directions for compiling GNU screen 3.9.15 on cygwi n

2003-11-25 Thread Parker, Ron
> From: Christopher Faylor > Wow, that was *it*? It seems like a pretty simple patch if > this really gets > things working. Can I entice you into being the package > maintainer for screen? > There's a gold star in it for you! I may consider doing it, if I can get a couple of issues resolved

Patch and directions for compiling GNU screen 3.9.15 on Cygwin

2003-11-21 Thread Parker, Ron
I created a patch for GNU screen 3.9.15 that will allow it to be compiled and installed on Cygwin. The patch is attached below, the basic build and install procedure is: $ tar xzf {tar-path}/screen-3.9.15.tar.gz $ cd screen-3.9.15 $ patch -p1 -s <{patch-path}/screen-3.9.15

Debugging cygwin1.dll startup

2003-09-24 Thread Parker, Ron
I have made some local changes to the source for cygwin1.dll and would like to debug it, as the first Cygwin process, bash, begins. I know about using a gdb-startup.cmd setup for JIT debugging applications, but this does not seem to work for debugging Cygwin prior to reaching a bash prompt. Is th

RE: setup.ini corrupted on sources.redhat.com

2003-09-19 Thread Parker, Ron
Chris, thank you for correcting this quickly. I am back up and running again. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Setup Parse Errors

2003-09-19 Thread Parker, Ron
I am attempting to run setup version 2.340.2.5, which I just downloaded from cygwin.com, and I am receiving a number of different "Parse Errors" processing setup.bz2. They all read: (null) line X: syntax error, unexpected NL, expecting STRING (null) line X: unrecognized line X

RE: Aliases no longer defined?

2003-03-31 Thread Parker, Ron
> http://cs.nyu.edu/~pechtcha/ > |\ _,,,---,,_ [EMAIL PROTECTED] > ZZZzz /,`.-'`'-. ;-;;,_ [EMAIL PROTECTED] > |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski > '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Me

RE: Mozilla 1.3 built on cygwin?

2003-03-31 Thread Parker, Ron
> Noone has explained, however, *why* the copy-on-write > implementation was > slower. Perhaps we have just been using the wrong tests. Does > copy-on-write > actually perform slower in "real world" tests? I don't know, > because I only While I never posted anything about it to the list. I tri

RE: accessing drives at block level in win98

2003-03-27 Thread Parker, Ron
> -Original Message- > From: Rolf Campbell [mailto:[EMAIL PROTECTED] > [EMAIL PROTECTED] wrote: > > Can win98 access /dev/sda directly? the article here > suggests that only NT+ > > can do this??? > > http://www.cygwin.com/cygwin-ug-net/using-specialnames.html > > That article is corr

RE: Cygwin Network Programming Problem

2002-12-16 Thread Parker, Ron
> -Original Message- > From: Elfyn McBratney [mailto:[EMAIL PROTECTED]] > I tried your source, looks o.k. at first glance, and it works > perfectly. I tried to reproduce your problem, about 10 times, > and I always got: > > Hello, world! > > Connection closed I did have the la

Cygwin Network Programming Problem

2002-12-13 Thread Parker, Ron
I have taken what looks to be a common network programming sample from the Internet and compiled it on Cygwin. Upon reaching 'accept' for the second time I receive the following output: accept: No children I have spent a few days perusing the Net and have found no solution to this proble

RXVT Font Question

2002-01-09 Thread Parker, Ron
The Windows 2000 console can use two different fonts. The one is "Lucida Console". The other is "Terminal". Is it possible to use "Terminal" in say the 8x12 size with rxvt? I think it does the right thing with box characters and while it is not as smooth has a heavier weight and is easier on my e

RE: C++ Link Errors

2002-01-04 Thread Parker, Ron
Solution found. I had built and installed various alternate versions of gcc into /usr/local. Despite the fact that I placed /usr/local/bin after /usr/bin in my path so that I would get the default cygwin gcc for this project, /usr/bin/gcc was still passing -L/usr/local/lib before -L/usr/lib whe

RE: C++ Link Errors

2002-01-04 Thread Parker, Ron
> > g++ -Wl,--enable-auto-import -ftemplate-depth-99 -O2 -o uml.exe > [...] > > After a number of auto-import warnings, which I expect, like: > > Warning: resolving QString::shared_null by linking to > > __imp___7QString$shared_null (auto-import) > > > I receive a series of messages, which I do

C++ Link Errors

2002-01-03 Thread Parker, Ron
I am trying to build the Linux UML modeler with cygwin. Everything works until I link. Libtool tries adding -ldl to the g++ linking call. If I enter g++ command by hand without the -ldl everything is fine, except I get a number of C++ related linking errors. My command line is: g++ -Wl,--enable