Re: ssh -nN or console less cygwin apps?

2005-06-29 Thread Igor Pechtchanski
On Thu, 30 Jun 2005, Jason Pyeron wrote: > ssh domain.com -L 5901:localhost:5900 -nN > > man ssh reports > > -N Do not execute a remote command. > -n Redirects stdin from /dev/null > > but I will still get a console window open, but what if you dont want it? > (also with xemacs) > > ho

ssh -nN or console less cygwin apps?

2005-06-29 Thread Jason Pyeron
ssh domain.com -L 5901:localhost:5900 -nN man ssh reports -N Do not execute a remote command. -n Redirects stdin from /dev/null but I will still get a console window open, but what if you dont want it? (also with xemacs) how can a cygwin app be run without a console window opening

Mysterious random crashes with latest snapshots

2005-06-29 Thread Igor Pechtchanski
Hi, I've been experiencing intermittent crashes on my Windows XP laptop with the past few DLL versions (from 1.5.16 to the latest snapshot). These are extremely hard to reproduce, and happen seemingly at random, with various applications (most often bash, but I've seen it happen with xargs, man,

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Igor Pechtchanski
On Wed, 29 Jun 2005, Dharanyava wrote: > Okay. Setting CYGWIN=tty did not work as expected. (Just FYI, I could > not locate the README you referred to - none of the ones installed on my > system) seem to contain a reference CYGWIN environment variable. A very unfortunate placement of parenthese

Re: Build/Compile problems with ApachPHP on Cygwin MS-XP

2005-06-29 Thread Chris Oxenreider
On Wed, 29 Jun 2005, Gerrit P. Haase wrote: My other problem with compiling PHP still persists though. After modifying the Make file to have libtool go in to debug mode LIBTOOL = $(SHELL) $(top_builddir)/libtool --debug --preserve-dup-deps and modifying the libtool script so that it did

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Brian Dessent
[EMAIL PROTECTED] wrote: > Result: setting CYGWIN=tty in a Win Cmd32 shell and running bash/Cygwin > works properly. Is the indication, then, that I should set this as a Win > environment variable instead of it being in my .bash_profile? It has to be set before bash starts. You can do that by e

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Larry Hall
At 08:15 PM 6/29/2005, you wrote: >Larry Hall wrote: > >>At 05:44 PM 6/29/2005, you wrote: >>>Okay. Setting CYGWIN=tty did not work as expected. >> >> >>So you started a command prompt without any Cygwin shell running in it, >>set CYGWIN="tty" and then started bash? > >No - I set it in my .bas

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Dharanyava
Larry Hall wrote: >At 05:44 PM 6/29/2005, you wrote: >>Okay. Setting CYGWIN=tty did not work as expected. > > >So you started a command prompt without any Cygwin shell running in it, >set CYGWIN="tty" and then started bash? No - I set it in my .bash_profile and exported it, then started Cygw

Re: problems building subversion 1.20

2005-06-29 Thread Max Bowsher
[EMAIL PROTECTED] wrote: Quoting Max Bowsher <[EMAIL PROTECTED]>: [EMAIL PROTECTED] wrote: Hello, I am attempting to build svn 1.20 under cygwin (latest) To get mod_dav_svn.so, I assume? Some of the output below leads me to believe that you are not using the Cygwin source package as a sta

Re: Problem compiling simple Ada program

2005-06-29 Thread Michael Swanson
Thanks for the solution. Gnatmake seems to have fixed it. Mike Swanson Gerrit P. Haase wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* Michael Swanson wrote: I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: Hell

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Larry Hall
At 05:44 PM 6/29/2005, you wrote: >Okay. Setting CYGWIN=tty did not work as expected. So you started a command prompt without any Cygwin shell running in it, set CYGWIN="tty" and then started bash? >(Just FYI, I could not locate the README you referred to - none of the ones >installed on

Re: Problem compiling simple Ada program

2005-06-29 Thread Gerrit P. Haase
Michael Swanson wrote: I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: Hello.adb: with Text_IO; Procedure Hello is begin Text_IO.Put_Line("Hello"); end; This compiles fine, but when I try to link the hello.o file, I get this error: hello.o:

Re: cron issue

2005-06-29 Thread Larry Hall
At 05:25 PM 6/29/2005, you wrote: >Imran Merali wrote: > >> I am trying to get cron to execute a bash script at a certain time, >> but it is not doing so. The script itself works well, but it doesn't >> seem to want to run when i set it up as a cron job. The same thing >> happens when I try to do s

Re: Build/Compile problems with ApachPHP on Cygwin MS-XP

2005-06-29 Thread Gerrit P. Haase
Chris Oxenreider wrote: Thank you for your reply. Sorry for the delay in getting back to you. I was trying to resolve some of these myself. The good news is that I can compile apache. The bad news is that I continue to have issues with PHP 5. On Tue, 28 Jun 2005, Gerrit P. Haase wrote: The

Re: problems building subversion 1.20

2005-06-29 Thread hkatz
Quoting Max Bowsher <[EMAIL PROTECTED]>: [EMAIL PROTECTED] wrote: Hello, I am attempting to build svn 1.20 under cygwin (latest) To get mod_dav_svn.so, I assume? Some of the output below leads me to believe that you are not using the Cygwin source package as a starting point - perhaps this

Re: Emacs 21.3.50 problem on XP

2005-06-29 Thread Dharanyava
Okay. Setting CYGWIN=tty did not work as expected. (Just FYI, I could not locate the README you referred to - none of the ones installed on my system) seem to contain a reference CYGWIN environment variable.It allows emacs to catch the C-x C-c, but after exiting Emacs, my tty (bash shell) no l

Re: problems building subversion 1.20

2005-06-29 Thread hkatz
Quoting Max Bowsher <[EMAIL PROTECTED]>: [EMAIL PROTECTED] wrote: Hello, I am attempting to build svn 1.20 under cygwin (latest) To get mod_dav_svn.so, I assume? Some of the output below leads me to believe that you are not using the Cygwin source package as a starting point - perhaps this

Re: cron issue

2005-06-29 Thread René Berber
Imran Merali wrote: > I am trying to get cron to execute a bash script at a certain time, > but it is not doing so. The script itself works well, but it doesn't > seem to want to run when i set it up as a cron job. The same thing > happens when I try to do something simple like output a timestamp

Re: problems building subversion 1.20

2005-06-29 Thread Max Bowsher
[EMAIL PROTECTED] wrote: Hello, I am attempting to build svn 1.20 under cygwin (latest) To get mod_dav_svn.so, I assume? Some of the output below leads me to believe that you are not using the Cygwin source package as a starting point - perhaps this would be a good idea? If you don't want

RE: announce missed clamav

2005-06-29 Thread Gary R. Van Sickle
[snip] > So, you thought it was a good idea to notify the spammers of > that fact just in case they didn't have your email address > and cygwin-announce email address? > > cgf > Just so I'm clear here: is it officially *not* ok to quote the cygwin list addresses? I thought it didn't matter, es

RE: Problem compiling simple Ada program

2005-06-29 Thread Michael Swanson
I am trying to compile and link a simple Ada program on Cygwin. The code for this looks like: Hello.adb: with Text_IO; Procedure Hello is begin Text_IO.Put_Line("Hello"); end; This compiles fine, but when I try to link the hello.o file, I get this error: hello.o:hello.adb:(.text+0x18

Re: tar 1.13.25: extracts of files using hardlinks w/i same win32 directory lost

2005-06-29 Thread Brian Dessent
[EMAIL PROTECTED] wrote: > When I tar xvf tarfile.tar into a NTFS, Win Server 2003, directory all > files that define hardlinks within the same directory name are lost. If > the hardlink is located in another directory, the links appears to work. > When watching the extraction, the files appear t

Re: tar 1.13.25: extracts of files using hardlinks w/i same win32 directory lost

2005-06-29 Thread Larry Hall
At 03:42 PM 6/29/2005, you wrote: >tar (GNU tar) 1.13.25 >When I tar xvf tarfile.tar into a NTFS, Win Server 2003, directory all >files that define hardlinks within the same directory name are lost. If >the hardlink is located in another directory, the links appears to work. >When watching the ext

tar 1.13.25: extracts of files using hardlinks w/i same win32 directory lost

2005-06-29 Thread rkoroly
tar (GNU tar) 1.13.25 When I tar xvf tarfile.tar into a NTFS, Win Server 2003, directory all files that define hardlinks within the same directory name are lost. If the hardlink is located in another directory, the links appears to work. When watching the extraction, the files appear to be extract

problems building subversion 1.20

2005-06-29 Thread hkatz
Hello, I am attempting to build svn 1.20 under cygwin (latest) and am encountering this: /usr/src/rpm/SOURCES/subversion-1.2.0/subversion/libsvn_subr/xml.c:377: undefined reference to `_apr_pool_destroy' .libs/xml.o: In function `svn_xml_make_open_tag_v': /usr/src/rpm/SOURCES/subversion-1.2.0/

RE: Gdb and stopping at assert or segmentation faults

2005-06-29 Thread Dave Korn
Original Message >From: Kris Thielemans >Sent: 29 June 2005 17:24 > However, what I was saying is that I would like to be able to backtrace > when I launch a program from within gdb: > > Gdb myprog > Run > > Info stack Odd, I would have thought this should work. Anyway, "break __

RE: Gdb and stopping at assert or segmentation faults

2005-06-29 Thread Kris Thielemans
Hi Brian > You need to set the 'error_start' parameter of the CYGWIN > environment variable to the (windows) path of gdb. > I think what you're saying is that if I do this, it will launch gdb on the crash? Ok. However, what I was saying is that I would like to be able to backtrace when I launc

[ANNOUNCEMENT] Updated: clamav-0.86.1-1

2005-06-29 Thread Reini Urban
I've updated the version of clamav to 0.86.1-1 About: Clam AntiVirus is an anti-virus toolkit for Unix. The main purpose of this software is the integration with mail servers (attachment scanning). The package provides a flexible and scalable multi-threaded daemon, a commandline scanner, and a to

Re: announce missed clamav

2005-06-29 Thread Christopher Faylor
On Wed, Jun 29, 2005 at 06:38:43AM +0200, Reini Urban wrote: >2005-06-26 11:00 MEST I sent to cygwin-announce, which didn't went through. > >From - Sun Jun 26 11:00:51 2005 >Message-ID: <[EMAIL PROTECTED]> >Date: Sun, 26 Jun 2005 11:00:50 +0200 >From: Reini Urban SNIP >User-Agent: Mozilla/5.0 (Wind

Re: Gdb and stopping at assert or segmentation faults

2005-06-29 Thread Brian Dessent
Kris Thielemans wrote: > I need to debug a program that throws up an assert(). On Linux, I'm used to > be able to run the program in gdb, and when the assert happens, the program > stops (in the assert function) and I can do a back trace (e.g. info stack). > On cygwin on the other hand, I just get

[Ghostscript] Request: Add CFAX device for SFF support

2005-06-29 Thread Gerrit P. Haase
Please add a GhostScript CFAX device for SFF output This patch adds the option for the CFAX device to GhostScript. You need it to produce raw fax files (SFF): http://www.shellbang.org/files/ghostscript-gnu-cfax.diff diff -urN ghostscript-gnu.orig/scripts/configure ghostscript-gnu/scripts/conf

Re: LS and spaces in path names (the xth)

2005-06-29 Thread Thorsten Kampe
http://cygwin.com/acronyms/#PCYMTWLL PLEASE! * Andreas Eibach (2005-06-28 14:14 +0100) > Yes, this is the umpteenth time this gets asked, but also the umpteenth plead > to fix this in cygwin (as it _definitely_ works in Linux, also with vfat and > non-Linux partitions!!) This is probably the um

Gdb and stopping at assert or segmentation faults

2005-06-29 Thread Kris Thielemans
Hi I need to debug a program that throws up an assert(). On Linux, I'm used to be able to run the program in gdb, and when the assert happens, the program stops (in the assert function) and I can do a back trace (e.g. info stack). On cygwin on the other hand, I just get the assert message, and the