Re: cygwin nfs-server hang on uClinux

2004-08-21 Thread jerry
Larry Hall wrote: At 03:48 AM 8/20/2004, you wrote: hi, greeting First, sorry for my poor english. I recently run cygwin nfs-server-2.2.47-2 on WINXP, all linux PC clients work nicely. But when I mount cygwin exported files on my uClinux box(ARM7 processor), some work and the others don't!(I

Cygwin Most Controversial Cheating Wife Site

2004-08-21 Thread Paneling O. Contortionist
Cygwin Current Cheating Wifes Available As Of 8/20/04(all girls chat for free) Age 18-24 Currently 2,945 online Age 25-30 Currently 8,334 online Age 31-40 Currently 12,393 online Age 41+ Currently 13,298 online They love to flirt and cheat on their husbands :)

Re: Updated: gcc-3.3.3-3

2004-08-21 Thread Gerrit P. Haase
Hello Christopher, Would it be possible to include protoize in the gcc distribution? Can I offer to help port that program if you need assistance? Go ahead. Send me your patches and all I need to test it. Doesn't --enable=protoize,... just work? Should do it, or

Re: Updated: gcc-3.3.3-3

2004-08-21 Thread Corinna Vinschen
On Aug 21 01:27, Gerrit P. Haase wrote: It is just a temporary fix. I hope that we can drop it with 3.4.x. I would be more interested if it helps to build cygserver. Yep. Thanks, Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader

Re: Compilation errors not shown properly in Cygwin

2004-08-21 Thread Tim Prince
At 11:32 AM 8/20/2004, Rajagopalan, Karthik wrote: Hi Cygwin_Techies, I have been trying to install working packages of Cygwin for our current project but fails in every attempt with some issues. Currently I find the Cygwin doesn't report the compilation errors from Microsoft Visual Studio C

Re: Updated: gcc-3.3.3-3

2004-08-21 Thread Christopher Faylor
On Sat, Aug 21, 2004 at 10:14:50AM +0200, Gerrit P. Haase wrote: Hello Christopher, Would it be possible to include protoize in the gcc distribution? Can I offer to help port that program if you need assistance? Go ahead. Send me your patches and all I need to test it. Doesn't

initdb and postgres both no longer work...

2004-08-21 Thread tsfu
I had no problem in using PostgreSQL before and both initdb and postgres do not work anymore as shown below: === [EMAIL PROTECTED] $ initdb -D data2/db1 The files belonging to this database system will be owned by user postgres.

Re: initdb and postgres both no longer work...

2004-08-21 Thread Reini Urban
[EMAIL PROTECTED] schrieb: I had no problem in using PostgreSQL before and both initdb and postgres do not work anymore as shown below: === [EMAIL PROTECTED] $ initdb -D data2/db1 The files belonging to this database system will

Re: initdb and postgres both no longer work...

2004-08-21 Thread tsfu
Just tried. == [EMAIL PROTECTED] ~ $ initdb -D data2/db1 -E LATIN1 The files belonging to this database system will be owned by user postgres. This user must also own the server process. The database cluster will be initialized with locale

Re: initdb and postgres both no longer work...

2004-08-21 Thread Corinna Vinschen
On Aug 21 23:29, [EMAIL PROTECTED] wrote: Just tried. Signal 12 == SIGSYS. Starting cygserver and setting CYGWIN=server in the client session might be helpful, after all. Corinna $ initdb -D data2/db1 -E LATIN1 The files belonging to this database system will be owned by user postgres.

grep: $ in PATTERN doesn't seem to work properly

2004-08-21 Thread Koduru, Seshasai
Hi, When $ is used in the PATTERN of grep command, it doesn't seem to work properly on my machine. I have run the following under cygwin.bat shell. $ cat tmp Line 1 Line 2 Line 3 Line 4 Line 5 $ grep '1$' tmp (Gives no output. It should give output as Line 1) $ grep -e '1$ tmp (Gives no

environment variable name converted to upper case

2004-08-21 Thread Koduru, Seshasai
Hi, An environment variable name defined in windows environment with lowercase is converted to uppercase by cygwin environment. Following is the test case: -start-- C:\set lowercase=Windows Variable C:\echo %lowercase% Windows Variable C:\which env /usr/bin/env C:\env | grep

Re: environment variable name converted to upper case

2004-08-21 Thread Christopher Faylor
On Sat, Aug 21, 2004 at 09:30:53PM +0530, Koduru, Seshasai wrote: An environment variable name defined in windows environment with lowercase is converted to uppercase by cygwin environment. Because of this behavior the shell scripts are not recognizing $lowercase variable. Is this the regular

RE: grep: $ in PATTERN doesn't seem to work properly

2004-08-21 Thread Buchbinder, Barry (NIH/NIAID)
Sounds like a it could be a line ending issue where grep is expecting \n (^J) at the end of a line but is being fed \r\n (^M^J). Does $ od -c tmp show \r\n line endings? How do the following work for you? $ grep '1.$' tmp and $ grep -v '^.$' tmp -Original

RE: environment variable name converted to upper case

2004-08-21 Thread Buchbinder, Barry (NIH/NIAID)
To expand on what Chris wrote, this is caused by the fact that in command.com (but not cmd.exe as supplied by XP - I don't know about earlier versions of cmd.exe) all user-setable Windows environmental variable are uppercase. Try this in command.com: set You will see all the

sed and dos format

2004-08-21 Thread james pentland
sed has the unfortunate property that it reduces dos format line endings to unix format line endings. thus, sed will change every line in a dos format file even if it had made no changes to the text. this makes sed unusable or undesirable for a large number of files i might want to edit. is this

BUSINESSREQUEST

2004-08-21 Thread TEODOROMBASOGO!!!
ATTN:CEO/PRESIDENT. I AM MR TEODORO NGUEMA MBASOGO {JRN}. THE SON OF PRESIDENT TEODORO OBIANG NGUEMA MBASOGO, THE PRESIDENT OF THE REPUBLIC OF EQUATORIAL GUINEA. AND I AM PRESENTLY LIVING IN {MADRID-SPAIN} EUROPE AND I SPEAK SPANISH VERY WELL AS OUR NATIONAL LANGUAGE IS SPANISH. MY FATHER HAS

sed and dos format

2004-08-21 Thread neal somos
James remarks that sed has the unfortunate property that it reduces dos format line endings to unix format line endings under cygwin and that this makes sed unusable or undesirable for a large number of files i might want to edit Cygwin-apps may be a more appropriate place for this question.

Problem with cygwin expect calling ssh.

2004-08-21 Thread Andrew Louder
To whom it may concern: My script works on a older cygwin software: expect == 5.26 ssh == OpenSSH_3.6.1p2 My script fails on a current cygwin software: expect == 5.26 ssh == OpenSSH_3.8.1p1 The symptons show that expect can not recognize the ssh output, so I will be prompted over and over

RE: grep: $ in PATTERN doesn't seem to work properly

2004-08-21 Thread Hannu E K Nevalainen
Koduru, Seshasai wrote: Hi, When $ is used in the PATTERN of grep command, it doesn't seem to work properly on my machine. I have run the following under cygwin.bat shell. $ cat tmp Line 1 Line 2 Line 3 Line 4 Line 5 $ grep '1$' tmp (Gives no output. It should give output as Line

RE: sshD fails to start as a service

2004-08-21 Thread david
On Wed, 9 Jun 2004, cygwin wrote: On Mon, Jun 07, 2004 at 11:50:40PM +0100, [EMAIL PROTECTED] wrote: sshd : PID 3576 : starting service `sshd' failed: execv: 255, error 255. I've encountered such problems when the binaries and libraries were not executable by SYSTEM. chmod 755

Re: Compilation errors not shown properly in Cygwin

2004-08-21 Thread Jacek Trzmiel
Larry Hall wrote: Sounds like a tty thing to me. Try adding to your CYGWIN environment variable 'notty' and starting a new cygwin.bat. I've added CYGWIN environment variable: System Properties/Advanced/Environment Variables/System variables/New... Variable Name: CYGWIN Variable Value: notty

RE: environment variable name converted to upper case

2004-08-21 Thread Igor Pechtchanski
On Sat, 21 Aug 2004, Buchbinder, Barry (NIH/NIAID) wrote: To expand on what Chris wrote, this is caused by the fact that in command.com (but not cmd.exe as supplied by XP - I don't know about earlier versions of cmd.exe) all user-setable Windows environmental variable are uppercase. That's

RE: grep: $ in PATTERN doesn't seem to work properly

2004-08-21 Thread Igor Pechtchanski
On Sat, 21 Aug 2004, Hannu E K Nevalainen wrote: Note that there is a difference depending on how you create the file; I'll hand over to cygwin-specialists to explain (or ponder on) why it has to be this way. I'm running BINARY mounts all over, still I get the behaviour below. [snip] ===

Re: grep: $ in PATTERN doesn't seem to work properly

2004-08-21 Thread Pierre A. Humblet
On Sat, Aug 21, 2004 at 07:07:21PM -0400, Igor Pechtchanski wrote: On Sat, 21 Aug 2004, Hannu E K Nevalainen wrote: Note that there is a difference depending on how you create the file; I'll hand over to cygwin-specialists to explain (or ponder on) why it has to be this way. I'm

Re: Python IDLE - toolbar doesn't show up

2004-08-21 Thread Jason Tishler
On Fri, Aug 20, 2004 at 01:15:11PM -0700, Greg Hersh wrote: Downloaded and installed the latest version of Cygwin with Python 2.3.4. Started IDLE, shell window came up fine, but toolbar on a top doesn't show up. Started IDLE in 'edit' mode, both shell and edit windows came up, again, no

Re: initdb and postgres both no longer work...

2004-08-21 Thread tsfu
Yes, Corinna! initdb now works. Does it mean that we should use cygserver with CYGWIN=server and forget about ipc-daemon2 from now on. Thanks! Jason = [EMAIL PROTECTED] ~ $ initdb -D data2/db1 The files belonging to

Re: ITP: mathomatic-11.3d (was Re: Call for a volunteer)

2004-08-21 Thread Corinna Vinschen
On Aug 20 17:13, George Gesslein II wrote: winam.zip has been deleted. Thanks, Corinna Regards, George George John Gesslein II http://www.mathomatic.com On Fri, 20 Aug 2004, Corinna Vinschen wrote: [...] erm... it's not enough to point to the Cygwin web

Please upload: openldap-2.2.15-2/libopenldap2_2_7-2.2.15-2/openldap-devel-2.2.15-2

2004-08-21 Thread Dr. Volker Zell
Hi Please upload at your earliest convinience and remove the following packages: openldap-2.2.15-1 libopenldap2-2-15-2.2.15-1 openldap-devel-2.2.15-1 There was a bug in the packaging of libopenldap. cut here #!/bin/bash

[ITP] ctetris

2004-08-21 Thread Reini Urban
Hi I would like to contribute and maintain the ctetris package: http://sourceforge.net/projects/ctetris http://prdownloads.sourceforge.net/ctetris/ctetris-0.29.tar.bz2?download Ciao Reini Urban -- Here is the setup.hint file: sdesc: Console mode tetris clone ldesc: ctetris is a beautiful tetris

Re: [ITP] ctetris

2004-08-21 Thread Christopher Faylor
On Sat, Aug 21, 2004 at 03:40:06PM +0200, Reini Urban wrote: I would like to contribute and maintain the ctetris package: http://sourceforge.net/projects/ctetris http://prdownloads.sourceforge.net/ctetris/ctetris-0.29.tar.bz2?download +1 from me. cgf

Re: [update] base-files and base-passwd

2004-08-21 Thread Pierre A. Humblet
On Sat, 14 Aug 2004 13:25:24 -0400 I wrote John, could you use cp -p in base-files-profile.sh? The postinstall exim.sh uses the non-existence of /etc/exim.conf as the sign that it's a fresh installation. That test doesn't work right if it happens to run after base-files-profile.sh, because it

Re: [ITP] ctetris

2004-08-21 Thread Igor Pechtchanski
On Sat, 21 Aug 2004, Reini Urban wrote: Hi I would like to contribute and maintain the ctetris package: http://sourceforge.net/projects/ctetris http://prdownloads.sourceforge.net/ctetris/ctetris-0.29.tar.bz2?download Ciao Reini Urban +1 Here is the setup.hint file: sdesc:

Re: [update] base-files and base-passwd

2004-08-21 Thread Igor Pechtchanski
On Sat, 21 Aug 2004, Pierre A. Humblet wrote: On Sat, 14 Aug 2004 13:25:24 -0400 I wrote John, could you use cp -p in base-files-profile.sh? The postinstall exim.sh uses the non-existence of /etc/exim.conf as the sign that it's a fresh installation. That test doesn't work right if it

Re: [ITP] ctetris

2004-08-21 Thread John Morrison
Hi I would like to contribute and maintain the ctetris package: +1 binary installs and runs OK, src rebuilds binary correctly (without the -1, I don't know if that's an issue...?) J.

Re: [update] base-files and base-passwd

2004-08-21 Thread John Morrison
On Sat, 21 Aug 2004, Pierre A. Humblet wrote: On Sat, 14 Aug 2004 13:25:24 -0400 I wrote John, could you use cp -p in base-files-profile.sh? The postinstall exim.sh uses the non-existence of /etc/exim.conf as the sign that it's a fresh installation. That test doesn't work right if it

Re: Please upload: openldap-2.2.15-2/libopenldap2_2_7-2.2.15-2/openldap-devel-2.2.15-2

2004-08-21 Thread Corinna Vinschen
On Aug 21 14:27, Dr. Volker Zell wrote: Hi Please upload at your earliest convinience and remove the following packages: openldap-2.2.15-1 libopenldap2-2-15-2.2.15-1 openldap-devel-2.2.15-1 There was a bug in the packaging of libopenldap. cut

Re: [update] base-files and base-passwd

2004-08-21 Thread Pierre A. Humblet
At 04:27 PM 8/21/2004 +0100, John Morrison wrote: On Sat, 21 Aug 2004, Pierre A. Humblet wrote: On Sat, 14 Aug 2004 13:25:24 -0400 I wrote John, could you use cp -p in base-files-profile.sh? The postinstall exim.sh uses the non-existence of /etc/exim.conf as the sign that it's a fresh

Re: [update] base-files and base-passwd

2004-08-21 Thread Corinna Vinschen
On Aug 21 16:27, John Morrison wrote: http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-files/base-files-3.0-3.tar.bz2 http://homepage.ntlworld.com/j-n-s.morrison/john/cygwin/base-passwd/base-passwd-2.1-1.tar.bz2 Both uploaded. I removed base-files-2.5-1.tar.bz2 and

Please upload: ccrypt-1.7-1: A utility for encrypting and decrypting files

2004-08-21 Thread Andreas Seidl
Based on my 1.6 package, which received 3 votes, was thoroughly reviewed, but never uploaded for unknown reasons, I've made a new package of the new 1.7 version. http://alice.fmi.uni-passau.de/~seidl/cygwin/release/ccrypt/ccrypt-1.7-1-src.tar.bz2

Re: Please upload: ccrypt-1.7-1: A utility for encrypting and decrypting files

2004-08-21 Thread Gerrit P. Haase
Hallo Andreas, Am Samstag, 21. August 2004 um 21:50 schriebst du: Based on my 1.6 package, which received 3 votes, was thoroughly reviewed, but never uploaded for unknown reasons, I've made a new package of the new 1.7 version.

Re: Bug in ssmtp-config, and a general note about configuration interview scripts

2004-08-21 Thread Robert R Schneck-McConnell
John Hardin wrote: Just ran across a bug in ssmtp-config that brings up an issue in build-a-config-file interview scripts in general: If the user makes an error typing in a config setting, and (naturally enough) hits the backspace key to fix it, ssmtp-config (and probably many other similar

Cygwin Most Controversial Cheating Wife Site

2004-08-21 Thread Granting K. Canonization
Cygwin Current Cheating Wifes Available As Of 8/20/04(all girls chat for free) Age 18-24 Currently 2,945 online Age 25-30 Currently 8,334 online Age 31-40 Currently 12,393 online Age 41+ Currently 13,298 online They love to flirt and cheat on their husbands :)

Cygwin Most Controversial Cheating Wife Site

2004-08-21 Thread Ornithology P. Kisser
Cygwin Current Cheating Wifes Available As Of 8/20/04(all girls chat for free) Age 18-24 Currently 2,945 online Age 25-30 Currently 8,334 online Age 31-40 Currently 12,393 online Age 41+ Currently 13,298 online They love to flirt and cheat on their husbands :)

ZA problems? (was Re: problems with zone alarm/XP SP2?)

2004-08-21 Thread Ariel Millennium Thornton
I got around that by putting all of my XDM and SSH servers' trusted IPs in ZA's trusted zone and made sure Xwin.exe and Ssh.exe were authorized for ZA's trusted zone. In my situation, the relevant IPs are in my LAN, secured by a firewall on my Internet-LAN bridge box, so behind the firewall the

src/winsup/cygwin ChangeLog environ.cc

2004-08-21 Thread corinna
CVSROOT:/cvs/src Module name:src Changes by: [EMAIL PROTECTED] 2004-08-21 15:50:33 Modified files: winsup/cygwin : ChangeLog environ.cc Log message: * environ.cc (set_ntea): New function. (set_ntsec): Ditto. (set_smbntsec): Ditto.

[Patch] fhandler_disk_file::fchmod

2004-08-21 Thread Pierre A. Humblet
This bug was found while investigating testsuite failures. It occurs only on 9x, when ntsec is on. An alternate (more general) solution would be to only set allow_ntsec (in environ.cc) on NT. Why allow it on 9x? Pierre 2004-08-14 Pierre Humblet [EMAIL PROTECTED] *

Re: [Patch] fhandler_disk_file::fchmod

2004-08-21 Thread Christopher Faylor
On Sat, Aug 21, 2004 at 09:46:31AM -0400, Pierre A. Humblet wrote: This bug was found while investigating testsuite failures. It occurs only on 9x, when ntsec is on. An alternate (more general) solution would be to only set allow_ntsec (in environ.cc) on NT. Why allow it on 9x? That was my

Re: [Patch]: fhandler_dsp.cc

2004-08-21 Thread Christopher Faylor
On Mon, Aug 16, 2004 at 11:04:00PM -0400, Pierre A. Humblet wrote: Following Gerd's comments, here is an updated patch that also improves the internal error handling. It follows Gerd's approach. He has not answered my previous e-mail but he has indicated he would be in vacation for two weeks, so

Re: [Patch]: fhandler_dsp.cc

2004-08-21 Thread Pierre A. Humblet
At 09:55 AM 8/21/2004 -0400, Christopher Faylor wrote: On Mon, Aug 16, 2004 at 11:04:00PM -0400, Pierre A. Humblet wrote: Following Gerd's comments, here is an updated patch that also improves the internal error handling. It follows Gerd's approach. He has not answered my previous e-mail but he

Re: [Patch] fhandler_disk_file::fchmod

2004-08-21 Thread Corinna Vinschen
On Aug 21 09:53, Christopher Faylor wrote: On Sat, Aug 21, 2004 at 09:46:31AM -0400, Pierre A. Humblet wrote: This bug was found while investigating testsuite failures. It occurs only on 9x, when ntsec is on. An alternate (more general) solution would be to only set allow_ntsec (in

Re: [Patch] fhandler_disk_file::fchmod

2004-08-21 Thread Christopher Faylor
On Sat, Aug 21, 2004 at 05:08:18PM +0200, Corinna Vinschen wrote: On Aug 21 09:53, Christopher Faylor wrote: On Sat, Aug 21, 2004 at 09:46:31AM -0400, Pierre A. Humblet wrote: This bug was found while investigating testsuite failures. It occurs only on 9x, when ntsec is on. An alternate (more

Re: [Patch] fhandler_disk_file::fchmod

2004-08-21 Thread Corinna Vinschen
On Aug 21 11:38, Christopher Faylor wrote: On Sat, Aug 21, 2004 at 05:08:18PM +0200, Corinna Vinschen wrote: * environ.cc (set_ntea): New function. (set_ntsec): Ditto. (set_smbntsec): Ditto. (parse_thing): Change ntea, ntsec and smbntsec settings to call appropriate

[patch] w32api winddk.h interlocked lists

2004-08-21 Thread Robert Wruck
I reported this as a bug at the MinGW sf.net site, but it seems that w32api is maintained here. winddk.h defines some functions inline (ExAllocateFromNPagedLookasideList, ExInterlockedPushEntrySList etc.). The problem I have is that those inline functions use InterlockedPushEntrySList and

[Patch]: Truncate

2004-08-21 Thread Pierre A. Humblet
This fixes ftruncate64 on 9x. It now passes all truncate tests in the testsuite. Pierre 2004-08-22 Pierre Humblet [EMAIL PROTECTED] * syscalls.cc (ftruncate64): On 9x, call write with a zero length to zero fill when the file is extended. Index: syscalls.cc