Re: Copyright year, year, ... statements in setup.exe

2004-11-23 Thread Brian Keener
Gary R. Van Sickle wrote: Setup is not Cygwin. True true, but the only changes I have ever submitted were for Setup and when I originally posted my first setup changes - DJ had me file an assignment. I assumed since I had to file one, and it was essentially a community project that we

Re: Copyright year, year, ... statements in setup.exe

2004-11-23 Thread Max Bowsher
Brian Keener wrote: Gary R. Van Sickle wrote: Setup is not Cygwin. True true, but the only changes I have ever submitted were for Setup and when I originally posted my first setup changes - DJ had me file an assignment. I assumed since I had to file one, and it was essentially a community

1.5.12: using cygwin/x as non-administrator doesn't work

2004-11-23 Thread Tobias Munk
Using cygwin/x administrator works fine, but when I try to start it as user, I get an error message - the log file XWin.log is attached at the end of this mail. There is a similar mail concerning this issue in the archive, which was posted a year ago, but seemingly no one posted a solution.

Re: 1.5.12: using cygwin/x as non-administrator doesn't work

2004-11-23 Thread Alexander Gottwald
On Tue, 23 Nov 2004, Tobias Munk wrote: Using cygwin/x administrator works fine, but when I try to start it as user, I get an error message - the log file XWin.log is attached at the end of this mail. There is a similar mail concerning this issue in the archive, which was posted a year

fvwm2 key bindings

2004-11-23 Thread Frank Streitzig
Hello, i would like configure fvwm2. Only with the bindings of functions to meta keys doesn't work. But by applications like emacs shortcut working correct. If i define in .fvwm2rc or FvwmConsole: Key F4 A A Popup Logout is it okay, but not Key F4 A M Popup Logout. I am now genuinly helpless

Re: SocketCreateListner() failed

2004-11-23 Thread Sandeep Prerna Gupta
Hello, I have not explicitly installed any firewall, This is a brand new Dell Laptop, they may have installed something by default, I will check into that -- BTW, Cygwin bash shell comes up OK, (just that without X, I cant use many of my utils) are there commands or small executables that I

Re: fvwm2 key bindings

2004-11-23 Thread Frank Streitzig
Am Tue, 23 Nov 2004 17:02:57 +0100 (MET) hat Alexander Gottwald [EMAIL PROTECTED] geschrieben: On Tue, 23 Nov 2004, Frank Streitzig wrote: Hello, i would like configure fvwm2. Only with the bindings of functions to meta keys doesn't work. But by applications like emacs shortcut working

Re: fvwm2 key bindings

2004-11-23 Thread Alexander Gottwald
On Tue, 23 Nov 2004, Frank Streitzig wrote: xev output if i presses Alt+F5: KeyRelease event, serial 28, synthetic NO, window 0x141, root 0x3a, subw 0x0, time 35891765, (114,72), root:(180,93), state 0x18, keycode 64 (keysym 0xffe9, Alt_L), same_screen YES, XLookupString

Re: SocketCreateListner() failed

2004-11-23 Thread Alexander Gottwald
On Tue, 23 Nov 2004, Sandeep Prerna Gupta wrote: Hello, I have not explicitly installed any firewall, This is a brand new Dell Laptop, they may have installed something by default, I will check into that -- BTW, Cygwin bash shell comes up OK, (just that without X, I cant use many

Re: fvwm2 key bindings

2004-11-23 Thread Frank Streitzig
xev output if i presses Alt+F5: KeyRelease event, serial 28, synthetic NO, window 0x141, root 0x3a, subw 0x0, time 35891765, (114,72), root:(180,93), state 0x18, keycode 64 (keysym 0xffe9, Alt_L), same_screen YES, XLookupString gives 0 bytes: Argh. NumLock is on. This

src/winsup/cygwin ChangeLog child_info.h dcrt0 ...

2004-11-23 Thread cgf
CVSROOT:/cvs/src Module name:src Branch: noreparent Changes by: [EMAIL PROTECTED] 2004-11-24 05:48:32 Modified files: winsup/cygwin : ChangeLog child_info.h dcrt0.cc fork.cc pinfo.cc pinfo.h select.cc sigproc.cc spawn.cc Log

Re: select() read() and write() on /dev/console

2004-11-23 Thread Jason Curl
Christopher Faylor cgf-no-personal-reply-please at cygwin.com writes: On Mon, Nov 22, 2004 at 05:18:46PM +, Jason Curl wrote: Where is fds[0] defined, so I can see exactly what functions are being called by peek_console, etc.? e.g. fh-get_readahead_valid(); fh-bg_check(SIGTTIN).

Re: Manual page width is fixed and I'd like it not to be

2004-11-23 Thread Igor Pechtchanski
On Mon, 22 Nov 2004, Raye Raskin wrote: - Original Message - From: Igor Pechtchanski [EMAIL PROTECTED] To: Raye Raskin [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Again, http://cygwin.com/acronyms/#PCYMTNQREAIYR. Thanks. Sent: Monday, November 22, 2004 6:30 PM Subject: Re: Manual

Re: pax available?

2004-11-23 Thread Chuck
Larry Hall [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: At 12:26 PM 11/22/2004, you wrote: Subject: Re: pax available? Newsgroups: news.gmane.org:gmane.os.cygwin To: Cygwin List [EMAIL PROTECTED] Larry Hall [EMAIL PROTECTED] wrote in ^^^ Again, don't

Re: Executing ssh from perl

2004-11-23 Thread Adrian Corduneanu
Hi Stephen, The last two versions of Cygwin (1.5.11 and 1.5.12) contain a known pipe incompatibility with Windows Service Pack 2. Many native Windows applications that call ssh do not work now. Some of the affected applications are 'unison', and 'cvs'. You just pointed out that native Perl

bk/ssh problem

2004-11-23 Thread Stefan Hinz
Hi, I cannot use BitKeeper with SSH through Cygwin on a box running Win XP. When using ssh (e.g. bk clone, bk pull, bk push), BitKeeper just hangs until I kill it. On that box, BitKeeper does work with http, and ssh by itself works, too; for example: ~ ssh [EMAIL PROTECTED] Last login: Sat

CUPS integration

2004-11-23 Thread LECAILLIER, Marc (SOPRA GROUP)
Hello, I would like to know if it is possible to install the CUPS server (Common UNIX Printing System) on Cygwin. If yes, where could I get the sources and what are the steps to compile and setup CUPS? Thanks for your help, Marc Lecaillier This e-mail is intended only for the above addressee.

Sequential writes to stdout is messed up (Bash only?)

2004-11-23 Thread Fekete Krisztian
Hi, The problem can be demonstrated by executing the following in bash: printf 1 1; while true; do cat 1; echo 2; done Expected result would be an endless stream of 12-s: 12 12 ... The real result is something different - see below. Executing ksh -c 'printf 1 1; while true; do cat 1; echo

Re: Sequential writes to stdout is messed up (Bash only?)

2004-11-23 Thread Christopher Faylor
On Tue, Nov 23, 2004 at 04:52:57PM +0100, Fekete Krisztian wrote: The problem can be demonstrated by executing the following in bash: You probably want to try the recently announced test version of bash: http://cygwin.com/ml/cygwin-announce/2004-11/msg00024.html -- Unsubscribe info:

Upgraded man command

2004-11-23 Thread Andy Hall
I updated my cygwin system on my W2K SP4 systemto the latest release of cygwin and the man command started to display man pages as follows: ESC[1mNAMEESC[0m ln - make links between files ESC[1mSYNOPSISESC[0m ESC[1mln ESC[22m[ESC[4mOPTIONESC[24m]... ESC[4mTARGETESC[24m

Using Sybase DLLs from Cygwin apps

2004-11-23 Thread Michael Peppler
[ Note - I'm a Unix/linux person and know very little about Windows ] I'm trying to build sqsh under Cygwin and I'm running into a problem with decorate vs. non-decorated library symbols. Sybase uses the __stdcall calling convention for its libraries under Windows, so gcc generates symbols like

Re: Using Sybase DLLs from Cygwin apps

2004-11-23 Thread Christopher Faylor
On Tue, Nov 23, 2004 at 06:19:33PM +0100, Michael Peppler wrote: I'm trying to build sqsh under Cygwin and I'm running into a problem with decorate vs. non-decorated library symbols. Is there a way to direct the linker to match up the [EMAIL PROTECTED] symbols with the corresponding _ct_xxx

Re: Using Sybase DLLs from Cygwin apps

2004-11-23 Thread Jason Tishler
Michael, On Tue, Nov 23, 2004 at 06:19:33PM +0100, Michael Peppler wrote: I'm trying to build sqsh under Cygwin and I'm running into a problem with decorate vs. non-decorated library symbols. Sybase uses the __stdcall calling convention for its libraries under Windows, so gcc generates

Re: Upgraded man command

2004-11-23 Thread Igor Pechtchanski
On Tue, 23 Nov 2004, Andy Hall wrote: I updated my cygwin system on my W2K SP4 systemto the latest release of cygwin and the man command started to display man pages as follows: ESC[1mNAMEESC[0m ln - make links between files ESC[1mSYNOPSISESC[0m ESC[1mln

Re: CUPS integration

2004-11-23 Thread Gerrit P. Haase
LECAILLIER, Marc (SOPRA GROUP) wrote: Hello, I would like to know if it is possible to install the CUPS server (Common UNIX Printing System) on Cygwin. Should be possible, however I'm not aware of a ready to use port. If yes, where could I get the sources and what are the steps to compile and

Re: pax available?

2004-11-23 Thread Reini Urban
Chuck schrieb: Larry Hall [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: Got it to work! The problem was actually in compiling lib/makepath.c. I manually compiled it adding the -DHAVE_ERRNO_H definition argument as below. cd /usr/src/paxutils-2.4h/lib gcc -DHAVE_ERRNO_H -DHAVE_CONFIG_H -I.

Re: Using Sybase DLLs from Cygwin apps

2004-11-23 Thread Michael Peppler
On Tue, 2004-11-23 at 18:28, Christopher Faylor wrote: On Tue, Nov 23, 2004 at 06:19:33PM +0100, Michael Peppler wrote: I'm trying to build sqsh under Cygwin and I'm running into a problem with decorate vs. non-decorated library symbols. Is there a way to direct the linker to match up the

man page for tracert (and ping etc?)

2004-11-23 Thread Eric Whitcombe
Maybe a dumb question, but I get No manual entry for tracert when I try. I can't find the answer just searching the web. Isn't there a man page somewhere? codewrangler -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html

RE: Upgraded man command

2004-11-23 Thread Andy Hall
Igor - Thanks for the reply. This is a complete mystery to me. See answers to your questions below. Andy -Original Message- From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 23, 2004 9:46 AM To: Andy Hall Cc: [EMAIL PROTECTED] Subject: Re: Upgraded man command

Re: man page for tracert (and ping etc?)

2004-11-23 Thread Alan Dobkin
On 11/23/2004 2:44 PM, Eric Whitcombe wrote: Maybe a dumb question, but I get No manual entry for tracert when I try. I can't find the answer just searching the web. Isn't there a man page somewhere? Neither tracert nor ping are cygwin applications, they are included with Windows. So, there

Re: man page for tracert (and ping etc?)

2004-11-23 Thread Robert Pendell
Eric Whitcombe wrote: Maybe a dumb question, but I get No manual entry for tracert when I try. I can't find the answer just searching the web. Isn't there a man page somewhere? codewrangler -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports:

RE: Upgraded man command

2004-11-23 Thread Igor Pechtchanski
On Tue, 23 Nov 2004, Andy Hall wrote: Igor - Thanks for the reply. This is a complete mystery to me. See answers to your questions below. Andy -Original Message- From: Igor Pechtchanski [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 23, 2004 9:46 AM To: Andy Hall Cc:

Re: Manual page width is fixed and I'd like it not to be

2004-11-23 Thread Dave
- Original Message - From: Igor Pechtchanski On Mon, 22 Nov 2004, Raye Raskin wrote: - Original Message - From: Christopher Faylor On Mon, Nov 22, 2004 at 06:50:57PM -0500, Aaron Miller wrote: Thanks for the pointer, and I'll ask on the cygwin-xfree list

stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Danny Smith
Hi, I've been trying to get DW2 EH exception handling working on windows targets with general success, but have hit a snag. If a C library function that takes a callback arg is compiled using stdcall convention, C++ exception thrown by the callback result in abort. If the C libarary function

Re: More pipe problems (was Re: [Fwd: 1.5.11-1: sftp performance problem])

2004-11-23 Thread Karl M
Hi All... From: Reini Urban To: [EMAIL PROTECTED] Subject: Re: More pipe problems (was Re: [Fwd: 1.5.11-1: sftp performance problem]) Date: Mon, 22 Nov 2004 08:41:56 +0100 Karl M schrieb: Back on Octber 4-6, Corinna, Chris and Bob Byrnes were discussing temporarily reverting some of the pipe

Re: Manual page width is fixed and I'd like it not to be

2004-11-23 Thread Brian Dessent
Dave wrote: Attached is a patch to man.conf, providing a (hacked) solution allowing MANWIDTH to work (here at least). Only intended as a short term fixup for those who need it :). Will need some work if you want it to cope with term resizing. Thanks to

Re: man page for tracert (and ping etc?)

2004-11-23 Thread Brian Dessent
Eric Whitcombe wrote: Maybe a dumb question, but I get No manual entry for tracert when I try. I can't find the answer just searching the web. Isn't there a man page somewhere? As the other posters said, those are windows commands (type which tracert to see) so there will not be manpages for

fetching files with Cyrillic file names

2004-11-23 Thread nemanja
I am trying to fetch text files from a remote XP machine using SSH/SFTP. The remote machine is running Cygwin 2.05b.0(1), shell is bash. File names contain combination of Russian and latin characters. Russian characters are replaced by '?' when I am listing them. It can not more/less/mv/cp/tar

Re: stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Richard Henderson
On Wed, Nov 24, 2004 at 11:27:11AM +1300, Danny Smith wrote: Before I pull any more hair out trying, does any one have any hints on how to use an MD_FALLBACK_FRAME_STATE_FOR to workaround ... That would be wrong. I think the most likely explanation is that there's a bug in the dwarf2 generator

Re: bk/ssh problem

2004-11-23 Thread Adrian Corduneanu
Hi Stefan, Check the following threads for Cygwin's recent problems with SSH and native Windows applications on Windows XP Service Pack 2 (Service Pack 1 does not lead to problems): Re: More pipe problems (was Re: [Fwd: 1.5.11-1: sftp performance problem]) Executing ssh from perl Adrian

RE: Upgraded man command

2004-11-23 Thread Andy Hall
Perhaps not everything is as it should be 1. /bin/manpath.exe is missing 2. /etc/postinstall/man.sh.done is there but it was modified on a date preceding the date I upgraded. 3. No errors for man.sh in /var/logs/setup and it shows it was run. But I simply copied the man.conf.default to

Re: stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Aaron W. LaFramboise
Danny Smith wrote: If a C library function that takes a callback arg is compiled using stdcall convention, C++ exception thrown by the callback result in abort. Just to speculate while not asking anyone to implement anything, would there be any value in implementing special behavior when

Re: stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Christopher Faylor
On Tue, Nov 23, 2004 at 09:22:34PM -0600, Aaron W. LaFramboise wrote: Do any Windows system routines have any function local cleanup that they'd need to do registered with SEH, or are they OK with suddenly being zapped out of existance at user code call points? If cygwin's signal handling code is

make doesn't work!

2004-11-23 Thread Guangyu Dong
Hi. I have been searching the answer for my problem for some while but didn't get anything useful. I have been using make for some while under cygwin and it just work fine. However this week I tried to run make again, I got: process_begin: CreateProcess((null), /bin/uname, ...) failed.

Re: stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Ranjit Mathew
Richard Henderson wrote: On Wed, Nov 24, 2004 at 11:27:11AM +1300, Danny Smith wrote: Before I pull any more hair out trying, does any one have any hints on how to use an MD_FALLBACK_FRAME_STATE_FOR to workaround ... That would be wrong. I think the most likely explanation is that

Re: stdcall lib functions with exception throwing callbacks vs Dwarf2 EH

2004-11-23 Thread Danny Smith
Richard Henderson wrote: On Wed, Nov 24, 2004 at 11:27:11AM +1300, Danny Smith wrote: Before I pull any more hair out trying, does any one have any hints on how to use an MD_FALLBACK_FRAME_STATE_FOR to workaround ... That would be wrong. I think the most likely explanation is that there's a