AW: [bulk] - Re: Missing stack_chk type functions

2010-05-19 Thread DEWI - N. Zacharias
Moin Reini, > Von: Reini Urban [mailto:rur...@x-ray.at] > Gesendet: Mittwoch, 19. Mai 2010 20:14 > An: cygwin@cygwin.com > Betreff: [bulk] - Re: Missing stack_chk type functions > > DEWI - N. Zacharias schrieb: > > > > Hi all, > > I tried to install the Win32::GuiTest from cpan. > > It did not

Re: vfork always fail problem

2010-05-19 Thread Huang Bambo
2010/5/20 Huang Bambo : >> Huang, >> >> you - as the person who first saw and documented the problem in public >> (thank you!) - are in the best position to test it, if you can recreate the >> original situation (with the GBK(?) directory names). >> >> It would be beneficial to all of us, and you w

Re: ncurses problem with mvcur function

2010-05-19 Thread Charles Wilson
On 5/19/2010 9:09 PM, Joe Java wrote: > I have a very old game that uses ncurses. > > lines 602-603 are > /* this moves curses to bottom right corner */ > mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0); > > lines 738-739 are the same as above. ncurses is now compiled with reentran

Re: vfork always fail problem

2010-05-19 Thread Huang Bambo
> Huang, > > you - as the person who first saw and documented the problem in public > (thank you!) - are in the best position to test it, if you can recreate the > original situation (with the GBK(?) directory names). > > It would be beneficial to all of us, and you would be doing everybody a > fav

ncurses problem with mvcur function

2010-05-19 Thread Joe Java
I have a very old game that uses ncurses. I read the file /usr/share/doc/Cygwin/ncurses.README and added -I /usr/include/ncurses to the compile commands I am using 5.7-18 of ncurses I added every package with ncurses in the package name in the Devel, Libs, and Utils Categories The error is: g

Re: Protecting msmtp passwords

2010-05-19 Thread Cyrille Lefevre
Le 27/04/2010 09:44, Gary . a écrit : Unfortunately when I use msmtp with gnus, it seems that msmtp decides it can't ask me for a password. Is it possible to save them in some file and have them protected somehow? try msmtp-config and/or read the msmtp manual page Regards, Cyrille Lefevre -

Re: 1.7.5: sshd environment variables

2010-05-19 Thread Cyrille Lefevre
Le 03/05/2010 02:40, Larry Hall (Cygwin) a écrit : On 5/2/2010 2:33 AM, Vincent Pelletier wrote: Le dimanche 02 mai 2010 02:52:55, Larry Hall (Cygwin) a écrit : You can add whatever variables you want and need to a script you can run as part of the login or just after, depending on your needs.

Re: Minor patch to /etc/profile

2010-05-19 Thread Cyrille Lefevre
Le 01/05/2010 05:25, Chris Sutcliffe a écrit : The PS1 definition for ksh in /etc/profile uses the literal ascii characters '^[' for the escape sequence as opposed to the single byte escape control code. The attached patch corrects that as well as HOSTNAME not being set correctly (at least for

RE: bash - command - PATH question [not cygwin issue last post]

2010-05-19 Thread Rockefeller, Harry
-Original Message- > From: cygwin-ow...@cygwin.com [mailto:cygwin-ow...@cygwin.com] On Behalf Of > Eric Blake > Sent: Wednesday, May 19, 2010 2:51 PM > To: cygwin@cygwin.com > Subject: Re: bash - command - PATH question > > On 05/19/2010 01:42 PM, Rockefeller, Harry wrote: > > $ type mysvn

Re: Terminal windows

2010-05-19 Thread Eliot Moss
On 5/19/2010 3:59 PM, Luis Vital wrote: Hi Reid, Thanks for your answer. Nevertheless I don't have my problem solved yet. If I make: $ cat ./launchit.sh I obtain : cat: ./launchit.sh: No such file or directory The idea was for you to create a launchit.sh file with the contents given, starting

Re: Terminal windows

2010-05-19 Thread Luis Vital
Hi Reid, Thanks for your answer. Nevertheless I don't have my problem solved yet. If I make: $ cat ./launchit.sh I obtain : cat: ./launchit.sh: No such file or directory Besides it seems I am not using xterm. If I make: $ nohup xterm -e $@ & I obtain : nohup: ignoring input and appending output

Re: bash - command - PATH question

2010-05-19 Thread Eric Blake
On 05/19/2010 01:42 PM, Rockefeller, Harry wrote: > $ type mysvn > mysvn is hashed (./mysvn) There's your problem. Bash remembers the hashed location of where it last found the command, but that location is relative. You either need to disable bash's hashing, or force it to re-evaluate its hash

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
On 05/19/2010 12:45 PM, Rockefeller, Harry wrote: > After more testing, where > > "export PATH=$PATH:~/bin" only exists in .bash_login. > > If I run 'foo' from my login directory it works. > If I then cd to a different place I get the error > > bash: ./bin/foo: No such file or directory Eric B

Re: bash - command - PATH question

2010-05-19 Thread Eric Blake
[please don't top-post] On 05/19/2010 12:45 PM, Rockefeller, Harry wrote: > After more testing, where > > "export PATH=$PATH:~/bin" only exists in .bash_login. > > If I run 'foo' from my login directory it works. > If I then cd to a different place I get the error > > bash: ./bin/foo: No such f

Re: CygWin-1.7.3-1 fails to provide pipe. (merge back into trunk please)

2010-05-19 Thread Jeremy Bopp
On 5/19/2010 1:04 PM, Gary wrote: > benczur writes: > >> Sorry for bringig up this thread again, but was this issue fixed in 1.7.5-1? >> >> When I do: >> $ mkfifo /tmp/pipe >> $ ls -l > /tmp/pipe >> cygwin hangs... and cannot be stopped by Ctrl-C. > > WFM (in the sense it responds to Ctrl-C). Th

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
After more testing, where "export PATH=$PATH:~/bin" only exists in .bash_login. If I run 'foo' from my login directory it works. If I then cd to a different place I get the error bash: ./bin/foo: No such file or directory which is true since I cd'd away from home *BUT* when I *first* ran foo ~/

Re: Terminal windows

2010-05-19 Thread Reid Thompson
On Wed, May 19, 2010 at 06:29:03PM +0100, Luis Vital wrote: > Hi, > > I am running the text version of cygwin. > What I want to do is, while in a terminal window > launch a script wich opens another terminal window > and launches inside this one a program. > Thanks in advance for any help. Best re

Re: Missing stack_chk type functions

2010-05-19 Thread Reini Urban
DEWI - N. Zacharias schrieb: Hi all, I tried to install the Win32::GuiTest from cpan. It did not work because g++ -shared GuiTest.o DibSect.o -o blib/arch/auto/Win32/GuiTest/GuiTest.dll \ /usr/lib/perl5/5.10/i686-cygwin/CORE/cygperl5_10.dll -L/usr/lib/w32api -lgdi32\ Gu

Re: CygWin-1.7.3-1 fails to provide pipe. (merge back into trunk please)

2010-05-19 Thread Gary
benczur writes: > Sorry for bringig up this thread again, but was this issue fixed in 1.7.5-1? > > When I do: > $ mkfifo /tmp/pipe > $ ls -l > /tmp/pipe > cygwin hangs... and cannot be stopped by Ctrl-C. WFM (in the sense it responds to Ctrl-C). -- Gary Non-kook (allegedly) -- Problem reports:

Terminal windows

2010-05-19 Thread Luis Vital
Hi, I am running the text version of cygwin. What I want to do is, while in a terminal window launch a script wich opens another terminal window and launches inside this one a program. Thanks in advance for any help. Best regards, Luis Vital -- Problem reports: http://cygwin.com/problems.

Re: CygWin-1.7.3-1 fails to provide pipe. (merge back into trunk please)

2010-05-19 Thread benczur
Larry Hall (Cygwin) wrote: > > On 4/21/2010 8:42 PM, will.dutt wrote: >> Christopher Faylor-8 wrote: >>> On Tue, Apr 06, 2010 at 11:01:21AM -0400, Christopher Faylor wrote: On Tue, Apr 06, 2010 at 04:10:28PM +0100, Dave Korn wrote: $ mkfifo /tmp/fifo $ cat /tmp/fifo

[ANNOUNCEMENT] Updated: tzcode-2010j-1: The time zone package.

2010-05-19 Thread Dr. Volker Zell
Hi A new version of 'tzcode' has been uploaded to a server near you. CYGWIN NEWS: * Update to latest upstream release tzcode/tzdata NEWS == * Sorry no changelog available. You have to do the diff yourself. CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ===

[ANNOUNCEMENT] Updated: xpdf-3.02-10: An open source viewer for Portable Document Format (PDF) files

2010-05-19 Thread Dr. Volker Zell
Hi A new version of 'xpdf' has been uploaded to a server near you. o Rebuild for cygwin 1.7 with gcc-4 o Incorporated latest upstream patches CYGWIN-ANNOUNCE UNSUBSCRIBE INFO If you want to unsubscribe from the cygwin-announce mailing list, please use the

[ANNOUNCEMENT] Updated: {neon/libneon27/libneon-devel}-0.29.3-1: HTTP and WebDAV library

2010-05-19 Thread Dr. Volker Zell
Hi New versions of 'neon/libneon27/libneon-devel' have been uploaded to a server near you. o Update to latest upstream neon NEWS: === * Change ne_sock_close() to no longer wait for SSL closure alert: - fixes possible hang with IIS servers when closing SSL connection - this re

[ANNOUNCEMENT] Updated: {jasper/libjasper1/libjasper-devel}-1.900.1-10: JPEG 2000 library

2010-05-19 Thread Dr. Volker Zell
Hi New versions of 'jasper/libjasper1/libjasper-devel' have been uploaded to a server near you. o Rebuild for cygwin 1.7 with gcc-4 CYGWIN-ANNOUNCE UNSUBSCRIBE INFO If you want to unsubscribe from the cygwin-announce mailing list, please use the automated f

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
I double and triple checked for DOS things \r, ^M, etc. I use emacs to edit and so it's pretty clear about DOS things. Anyway, I ran od -c on files and outputs of 'echo $PATH', etc. I compared PATH in normal shell with PATH after spawning a new bash, since the command worked in the new bash. The

Re: bash - command - PATH question

2010-05-19 Thread Jeremy Bopp
On 5/19/2010 10:37 AM, Andrew DeFaria wrote: > On 05/19/2010 08:31 AM, Rockefeller, Harry wrote: >>> Again, have you tried dos2unix foo? >> Yes this didn't help. > That's funny because this is the usual cause. Are you sure there is no > extra carriage return line endings. I usually check by going i

Re: bash - command - PATH question

2010-05-19 Thread Jeremy Bopp
On 5/19/2010 10:16 AM, Rockefeller, Harry wrote: >> On 5/19/2010 8:50 AM, Rockefeller, Harry wrote: >>> Given that 'foo' is a bash script, why is it that: >>> >>> $ foo >>> >>> returns the error: >>> >>> bash: ./bin/foo: No such file or directory > >> What happens when you directly run ./bin/foo?

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
I found that if I give the simple 'bash' command to create a new shell then type 'foo' it does work. [quote on] -Original Message- From: cygwin-ow...@cygwin.com [mailto:cygwin-ow...@cygwin.com] On Behalf Of Andrew DeFaria Sent: Wednesday, May 19, 2010 10:28 AM To: cygwin@cygwin.com Subjec

Re: bash - command - PATH question

2010-05-19 Thread Andrew DeFaria
On 05/19/2010 08:31 AM, Rockefeller, Harry wrote: Again, have you tried dos2unix foo? Yes this didn't help. That's funny because this is the usual cause. Are you sure there is no extra carriage return line endings. I usually check by going into vim and seeing if it says [DOS} at the bottom (

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
> Again, have you tried dos2unix foo? Yes this didn't help. [snip] -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: bash - command - PATH question

2010-05-19 Thread Andrew DeFaria
Again, have you tried dos2unix foo? On 05/19/2010 08:16 AM, Rockefeller, Harry wrote: On 5/19/2010 8:50 AM, Rockefeller, Harry wrote: Given that 'foo' is a bash script, why is it that: $ foo returns the error: bash: ./bin/foo: No such file or directory What happens when yo

RE: bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
> On 5/19/2010 8:50 AM, Rockefeller, Harry wrote: > > Given that 'foo' is a bash script, why is it that: > > > > $ foo > > > > returns the error: > > > > bash: ./bin/foo: No such file or directory > What happens when you directly run ./bin/foo? I get exactly the same error. The error is cor

Re: bash - command - PATH question

2010-05-19 Thread Andrew DeFaria
On 05/19/2010 06:50 AM, Rockefeller, Harry wrote: Given that 'foo' is a bash script, why is it that: $ foo returns the error: bash: ./bin/foo: No such file or directory BUT since foo is *really in* PATH, e.g., $ `which foo` runs correctly? Usually this means that foo is in "DOS" mode and co

Re: bash - command - PATH question

2010-05-19 Thread Jeremy Bopp
On 5/19/2010 8:50 AM, Rockefeller, Harry wrote: > Given that 'foo' is a bash script, why is it that: > > $ foo > > returns the error: > > bash: ./bin/foo: No such file or directory What happens when you directly run ./bin/foo? What is the shebang (first line) of foo? > BUT since foo is *real

bash - command - PATH question

2010-05-19 Thread Rockefeller, Harry
Given that 'foo' is a bash script, why is it that: $ foo returns the error: bash: ./bin/foo: No such file or directory BUT since foo is *really in* PATH, e.g., $ `which foo` runs correctly? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/fa

RE: 1.7.5: Bug with bash read in /etc/profile.d invocation

2010-05-19 Thread Garber, Dave (GE Infra, Energy, Non-GE)
OK, I changed my script to have: read -p "How are you today? " Ans mailto:cygwin-ow...@cygwin.com] On Behalf Of Garber, Dave (GE Infra, Energy, Non-GE) Sent: Tuesday, May 18, 2010 4:30 PM To: cygwin@cygwin.com Subject: RE: 1.7.5: Bug with bash read in /etc/profile.d invocation Thanks for

Re: NCurses and Cygwin

2010-05-19 Thread Charles Wilson
On 5/19/2010 2:04 AM, rushojp wrote: > u...@localhost /usr/include > $ for h in curses.h eti.h form.h menu.h ncurses.h panel.h term.h unctrl.h ; do >> ln -s ncurses/$h $h ;done > > I think libncurses-devel package should have these symlink files. Is anybody going to read the documentation? From /

Re: Cygwin enviroment !C:=

2010-05-19 Thread Spiro Trikaliotis
Hello, * On Wed, May 19, 2010 at 12:25:15PM +0200 s.baun...@ifw-dresden.de wrote: > When I display the environment variables in the bash shell using > $ set > > On the PCs with IMOD running correctly I found these entries [...] > !D:='D:\cygwin\bin' This is the path to Cygwin > !X:='X:\'

Re: vfork always fail problem

2010-05-19 Thread Matthias Andree
Huang Bambo wrote on 2010-05-19: http://cygwin.com/snapshots/ To the OP: please check it out and verify that it solves your problem. Thanks a lot. I've changed my work directory to a full English name directory and it dosn't matter me. And this problem is first reported by gcc, strange :

Missing stack_chk type functions

2010-05-19 Thread DEWI - N. Zacharias
Hi all, I tried to install the Win32::GuiTest from cpan. It did not work because g++ -shared GuiTest.o DibSect.o -o blib/arch/auto/Win32/GuiTest/GuiTest.dll \ /usr/lib/perl5/5.10/i686-cygwin/CORE/cygperl5_10.dll -L/usr/lib/w32api -lgdi32\ GuiTest.o:GuiTest.cpp:(.text+0x91f

Re: git stopped working with 1.7.1

2010-05-19 Thread ol42
The problem still exists but it appears infrequently with small repos. But larger repositories constantly fail even with the environment variable below defined. I currently use the putty ssh client for git. Nevertheless I consider this a major issue since the ssh protocol is the most important use

GCC 4.5 has been released, what does this mean for cygwin?

2010-05-19 Thread Eric Lilja
Hello, as I'm sure many of you have noticed, GCC 4.5 has been released. I think I recall Mr Dave Korn saying that he would skip releasing GCC 4.4 for Cygwin and instead focus on getting fixes in for GCC 4.5. I'm just curious to where things stand now. Dave? Btw, I'm very much grateful for your