Re: trouble running Apache 1.3.33-2 as a service

2008-11-24 Thread René Berber
David Christensen wrote: > I have a fresh install of Cygwin on Windows XP Professional SP3, > including Apache. > > I have created a Windows account "www" and updated /etc/passwd: > > $ mkpasswd -l | grep www >> /etc/passwd This is usually done with "mkpasswd -l -u www >> /etc/passwd" and makin

trouble running Apache 1.3.33-2 as a service

2008-11-24 Thread David Christensen
cygwin: I have a fresh install of Cygwin on Windows XP Professional SP3, including Apache. I have created a Windows account "www" and updated /etc/passwd: $ mkpasswd -l | grep www >> /etc/passwd I have edited /etc/apache/httpd.conf: $ cvs diff -r 1.1 httpd.conf Index: httpd.conf

Re: [ANNOUNCEMENT] Updated: {ghostscript/gs8/gs-devel}-8.62-3 - GPL PostScript interpreter

2008-11-24 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dr. Volker Zell wrote: > o Recompiled against latest X11R7.4 > o Implemented the suggestions from Yaakow, see > http://cygwin.com/ml/cygwin/2008-11/msg00411.html > > - Removed the native/X11 split > (ghostscript-base and ghostscript-x11 pack

Re: Viewing postscript files in Cygwin without X

2008-11-24 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Fergus wrote: > The recent update to ghostscript prompts me to ask: is there supplied > with Cygwin a viewer that will permit viewing of postscript files > without running X? (Can use gv when running X.) Thanks to the X11 modularization, the new gho

Re: Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Mark J. Reed
On Mon, Nov 24, 2008 at 5:53 PM, Buchbinder, Barry (NIH/NIAID) [E] wrote: > I'm not sure how symbolic links work with find . -type f, so this might not > be a problem. find ignores symlinks by default; but if you specify -follow, then it will descend into symbolic links to directories and retur

RE: Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Buchbinder, Barry (NIH/NIAID) [E]
The following may technically be off-topic. If so, I apologize. Matthew Woehlke wrote on Monday, November 24, 2008 12:46 PM: > Bartolomeo Nicolotti wrote: >> but the command >> >> find . -type f | xargs md5sum >> >> has problems with blanks in the name of the files: >> [snip examples] > > find

Re: Using cygport for a local install

2008-11-24 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ken Brown wrote: > Suppose I want to modify and rebuild a cygwin package that was created > using cygport. I may want to install it in /usr/local to avoid conflict > with the official version. One way to do this (I think) is to add > options like -

Using cygport for a local install

2008-11-24 Thread Ken Brown
Suppose I want to modify and rebuild a cygwin package that was created using cygport. I may want to install it in /usr/local to avoid conflict with the official version. One way to do this (I think) is to add options like --prefix=/usr/local, --bindir=/usr/local/bin, etc., to the call to cygc

Re: [OT] Re: Opening a (cygwin-ised) DLL

2008-11-24 Thread Brian Dessent
"Yaakov (Cygwin Ports)" wrote: > John Emmas wrote: > > Oops, I meant to ask another question (almost a variation on the same > > theme). Does Cygwin itself (or more correctly, its linker) link > > automatically to any of the standard Windows libs (such as kernel32.lib, > > user32.lib etc). > > k

Re: Building for cygwin/win32 under Linux

2008-11-24 Thread Brian Dessent
Rich Simonis wrote: > I don't know if I'm missing another include directive or a compiler switch, or > just if my assumption that I can use the Linux g++ to cross-compile to Win32 > is > wrong. Your assumption is wrong. You need to build an actual cross-compiler (and cross-assembler, cross-link

Building for cygwin/win32 under Linux

2008-11-24 Thread Rich Simonis
I'm a newbie to Cygwin. I'm porting a Linux app to win32, and saw Cygwin as a efficient way to do it. I used the NetBeans C/C++ IDE with Cygwin as the toolbase, and it worked wonderfully. Now, I need to move the "build process" onto one of Linux servers. I moved the project over enmasse, hoping th

Re:

2008-11-24 Thread [EMAIL PROTECTED]
руский секс любители www.dnspensednst.nm.ru Заглянешь на минутку – останешься здесь надолго! Самое горячее порно здесь! Егиазаров Александр Борисович -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation:

Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Matthew Woehlke
Bartolomeo Nicolotti wrote: but the command find . -type f | xargs md5sum has problems with blanks in the name of the files: [snip examples] find . -type f -print0 | xargs -0 md5sum ...tells find to output \0-separated lines instead of \n-separated lines, and tells xargs to expect \0-separ

Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Mark J. Reed
On Mon, Nov 24, 2008 at 11:09 AM, Bartolomeo Nicolotti wrote: > > Hi, > > but the command > > find . -type f | xargs md5sum > > has problems with blanks in the name of the files: This isn't a general help list for UNIX tools; they work the same on Cygwin as on UNIX. I recommend you search for tu

Re: [OT] Re: Opening a (cygwin-ised) DLL

2008-11-24 Thread Yaakov (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 John Emmas wrote: > Oops, I meant to ask another question (almost a variation on the same > theme). Does Cygwin itself (or more correctly, its linker) link > automatically to any of the standard Windows libs (such as kernel32.lib, > user32.lib etc).

Re: python package missing _sqlite3.dll in /usr/lib/python2.5/sqlite3

2008-11-24 Thread Jason Tishler
On Thu, Nov 20, 2008 at 11:52:33AM -0700, Warren Young wrote: > Tim Hoel wrote: > >But when I did "import sqlite3", I > >got the following error: > > > > ImportError: No module named _sqlite3 > > I thought this was fixed 2 months ago: > > http://cygwin.com/ml/cygwin/2008-08/msg00156.htm

RE: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Bartolomeo Nicolotti
Great! the command /usr/bin/find . -type f -exec md5sum '{}' \\; takes 3min 10s the command /usr/bin/find . -type f -exec md5sum \{} + takes 25s. the command find . -type f | xargs md5sum takes 17s Many thanks, best regards! B.Nicolotti Il giorno lun, 24/11/2008 alle 16.35 +0100, Jörg

RE: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Bartolomeo Nicolotti
Hi, but the command find . -type f | xargs md5sum has problems with blanks in the name of the files: md5sum: ./Pdf/1226503623_Offerta: No such file or directory md5sum: Speciale: No such file or directory md5sum: Vilnius.pdf: No such file or directory md5sum: ./DynPkg/Fly/Old/Copy: No such fil

Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Spiro Trikaliotis
Hello Bartolomeo, * On Mon, Nov 24, 2008 at 04:27:29PM +0100 Bartolomeo Nicolotti wrote: > /usr/bin/find . -type f -exec md5sum '{}' \\; [...] > Could some one help me to speed-up things on windows+cygwin? Just a guess: /usr/bin/find . -type f|xargs md5sum (Background: I expect the execution

Re: [ANNOUNCEMENT] Updated: {ghostscript/gs8/gs-devel}-8.62-3 - GPL PostScript interpreter

2008-11-24 Thread Ken Brown
On 11/23/2008 7:53 PM, Dr. Volker Zell wrote: New versions of 'ghostscript/gs8/gs-devel' have been uploaded to a server near you. The second and third packages appear to be called libgs8 and libgs-devel. Ken -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Marco Atzeri
--- Bartolomeo Nicolotti ha scritto: > Hi, > > I'm using the command: > > /usr/bin/find . -type f -exec md5sum '{}' \\; > try this find . -type f | xargs md5sum > to compare the content of two subtree(161Mbytes) on > different systems, > one linux, and the other on windows with cygwin. >

find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow!

2008-11-24 Thread Bartolomeo Nicolotti
Hi, I'm using the command: /usr/bin/find . -type f -exec md5sum '{}' \\; to compare the content of two subtree(161Mbytes) on different systems, one linux, and the other on windows with cygwin. The command on linux takes some seconds, while on windows+cygwin takes some minutes. Could some one

[OT] Re: Opening a (cygwin-ised) DLL

2008-11-24 Thread John Emmas
- Original Message - From: "John Emmas" Sent: 24 November 2008 14:01 Subject: Re: Opening a (cygwin-ised) DLL Thanks Eric. That confirms my gut feeling but I just wanted to be sure :-) John Oops, I meant to ask another question (almost a variation on the same theme). Does Cygwin it

Re: Opening a (cygwin-ised) DLL

2008-11-24 Thread John Emmas
Thanks Eric. That confirms my gut feeling but I just wanted to be sure :-) John -- 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/

Re: Opening a (cygwin-ised) DLL

2008-11-24 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to John Emmas on 11/24/2008 2:28 AM: > Suppose I'm building a Linux app under Cygwin and that app builds an > executable and a DLL. At run time, what would be the preferred method > for the executable to open the DLL under Cygwin - LoadLibra

Re: Solution or workaround for "file name too long" problem ?

2008-11-24 Thread Václav Haisman
Klaus Tiedemann wrote: > Hello cygwin, > > is there any progress on the "file name too long" problem ? > I think a lot of people would like to use rsync under cygwin for backup > or replication, but as long as cygwin can't handle long path names this > is not a serious option ... > > Is there at

Re: Bash process hangs around forever after ssh disconnect

2008-11-24 Thread Dmitry Semyonov
Michael, On Sat, Nov 22, 2008 at 22:49, Michael Hipp <[EMAIL PROTECTED]> wrote: > I'm logging in to a W2k server via cygwin sshd and using Putty as my > terminal emulator. If my ssh connection gets dropped for any reason the > bash.exe process on the host just stays there forever. Also, anything

Opening a (cygwin-ised) DLL

2008-11-24 Thread John Emmas
Suppose I'm building a Linux app under Cygwin and that app builds an executable and a DLL. At run time, what would be the preferred method for the executable to open the DLL under Cygwin - LoadLibrary() or dlopen() ? I'm assuming that dlopen() is better for portability - but given that the DLL i

Solution or workaround for "file name too long" problem ?

2008-11-24 Thread Klaus Tiedemann
Hello cygwin, is there any progress on the "file name too long" problem ? I think a lot of people would like to use rsync under cygwin for backup or replication, but as long as cygwin can't handle long path names this is not a serious option ... Is there at least a workaround you can recommend

Re: Viewing postscript files in Cygwin without X

2008-11-24 Thread Henry S. Thompson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Fergus writes: > The recent update to ghostscript prompts me to ask: is there supplied > with Cygwin a viewer that will permit viewing of postscript files > without running X? (Can use gv when running X.) I just do ps2pdf and use acroread, which almo

Re: "du -b --files0-from=-" running out of memory

2008-11-24 Thread Jim Meyering
Eric Blake <[EMAIL PROTECTED]> wrote: > [adding the upstream coreutils list] > According to Barry Kelly on 11/23/2008 6:24 AM: >> I have a problem with du running out of memory. >> >> I'm feeding it a list of null-separated file names via standard input, >> to a command-line that looks like: >> >>

Viewing postscript files in Cygwin without X

2008-11-24 Thread Fergus
The recent update to ghostscript prompts me to ask: is there supplied with Cygwin a viewer that will permit viewing of postscript files without running X? (Can use gv when running X.) Up to now I use gsview32 (version 2.7 December 1998) which is fine and seems to be the latest version that does