Re: File Naming Between Cygwin and Windows

2005-07-09 Thread Corinna Vinschen
On Jul 9 05:03, Ross MacGillivray wrote: > > I am trying to access via a cygwin application a file called > kdeinit-127.0.0.1:0. > The filename is generated within the software, so it is not trivial to change > the file name in the file access via the file system. > > However the underlying W

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Christopher Faylor on 7/8/2005 11:02 PM: > I don't get it. Certainly /cygdrive/c.exe doesn't exist so why would you > try to link to it? The algorithm I used was this: 1 - If source exists [determined by the return value of readlink ("s

Re: perl testsuite errors / cygserver not working / apache2 problems

2005-07-09 Thread Gerrit P. Haase
Yitzchak Scott-Thoennes wrote: On Fri, Jul 08, 2005 at 05:04:11PM +0200, Gerrit P. Haase wrote: My WAG is a problem with cygserver. Since apache2 is using it and all the other software which works ok doesn't use cygserver. I also get errors when running the perl-5.8.7 testsuite for the SysV

error compiling apache-1.3.33 with mod_perl and perl-5.8.7-1

2005-07-09 Thread Bruno Postle
I can't build apache-1.3.33 and mod_perl-1.29 with perl-5.8.7-1 (it builds ok if I downgrade cygwin to perl-5.8.6-4) Steps to reproduce: tar -zxf apache_1.3.33.tar.gz tar -zxf mod_perl-1.0-current.tar.gz cd mod_perl-1.29/ perl Makefile.PL DO_HTTPD=1 USE_APACI=1 make env LD_RUN_PATH=/

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to fergus on 7/8/2005 9:43 PM: > ln -s /cygdrive/c /c > Following the recent upgrade to cygutils I find that the symlink is > created as /c.exe not /c and /f.exe not /f in cases where the drive > exists. As a temporary workaround until

RE: readshortcut crashes with updated cygwin-1.5.18-1 (cygutils maintainer -- RFA patch enclosed)

2005-07-09 Thread Adye, TJ \(Tim\)
Thanks! The cygutils-1.2.9-1 update fixes the problem. Tim. > -Original Message- > From: Christopher Faylor > Sent: 07 July 2005 19:06 > To: cygwin@cygwin.com > Subject: Re: readshortcut crashes with updated > cygwin-1.5.18-1 (cygutils maintainer -- RFA patch enclosed) > > On Thu, Jul 0

Minor problem passing a malformed IP to ping

2005-07-09 Thread Denis Lukianov
I've noticed that calling ping with specially crafted IP addresses tends to lead to problems: ping 192.168.000<...more zeros here...>000.1 With increasing '0' characters, random ascii characters begin to get included in the output. After about 8k of zeros, I get segmentation faults (WinXPh)

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Igor Pechtchanski
On Sat, 9 Jul 2005, Eric Blake wrote: > Technically, symlink creation should not need to check > the source's existence (after all, that's why creating dangling symlinks > is possible), but cygwin has to do it to make .exe magic more consistent. Eric, I appreciate the effort you spend to get thi

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Corinna Vinschen
On Jul 9 07:30, Eric Blake wrote: > Hmm, while I'm at it, "dirname //" should return //, not /. No. // is a perfectly valid root dir in a system which differs between / and //. Let dirname(1) just use what it gets from dirname(3). Corinna -- Corinna Vinschen Please, send ma

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Corinna Vinschen
On Jul 9 17:36, Corinna Vinschen wrote: > On Jul 9 07:30, Eric Blake wrote: > > Hmm, while I'm at it, "dirname //" should return //, not /. > > No. // is a perfectly valid root dir in a system which differs between > / and //. Let dirname(1) just use what it gets from dirname(3). As Igor stat

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Christopher Faylor
On Sat, Jul 09, 2005 at 06:08:08AM -0600, Eric Blake wrote: >-BEGIN PGP SIGNED MESSAGE- >Hash: SHA1 > >According to Christopher Faylor on 7/8/2005 11:02 PM: >> I don't get it. Certainly /cygdrive/c.exe doesn't exist so why would you >> try to link to it? > >The algorithm I used was this: >

strace bug on Win98?

2005-07-09 Thread Eric Blake
I was trying to use 'strace readlink n', where n was created by 'ln -s //none n', to see what happens in the background[*]. But strace popped up a Windows 98 box that says "Readlink This program has performed an illegal operation and will be shut down. If the problem persists, contact the progr

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Christopher Faylor
On Sat, Jul 09, 2005 at 12:32:43PM -0400, Christopher Faylor wrote: >On Sat, Jul 09, 2005 at 06:08:08AM -0600, Eric Blake wrote: >>-BEGIN PGP SIGNED MESSAGE- >>Hash: SHA1 >> >>According to Christopher Faylor on 7/8/2005 11:02 PM: >>> I don't get it. Certainly /cygdrive/c.exe doesn't exist

Re: strace bug on Win98?

2005-07-09 Thread Christopher Faylor
On Sat, Jul 09, 2005 at 04:33:32PM +, Eric Blake wrote: >I was trying to use 'strace readlink n', where n was created by 'ln -s //none >n', >to see what happens in the background[*]. But strace popped up a Windows >98 box that says > >"Readlink > >This program has performed an illegal operati

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Eric Blake
Igor Pechtchanski cs.nyu.edu> writes: > I appreciate the effort you spend to get this right, and hate to ask for > extras (especially if those are non-standard), but would it be possible to > add a Cygwin-specific option[*] to ln that disables this? The reason is > that I frequently create symli

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread fergus
Thanks for your very rapid and informative responses, and also the suggestions and references http://cygwin.com/faq/faq_toc.html#TOC53) (How can I access other drives?) to using mounts rather than symlinks. Alol the same I've got a small preference for ln -s /cygdrive/h h over mkdi

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Eric Blake
Corinna Vinschen cygwin.com> writes: > > On Jul 9 07:30, Eric Blake wrote: > > Hmm, while I'm at it, "dirname //" should return //, not /. > > No. // is a perfectly valid root dir in a system which differs between > / and //. Let dirname(1) just use what it gets from dirname(3). > > Corinna

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Christopher Faylor
On Sat, Jul 09, 2005 at 06:00:28PM +0100, fergus wrote: >Thanks for your very rapid and informative responses, and also the >suggestions and references http://cygwin.com/faq/faq_toc.html#TOC53) >(How can I access other drives?) to using mounts rather than symlinks. > >Alol the same I've got a small

mount -c fails with 20050705 snapshot

2005-07-09 Thread David Rothenberger
With the 20050705 snapshot, the command "mount -c /" fails. Works fine with 1.5.18. % mount -c / mount: /: Bad address -- David Rothenbergerspammer? -> [EMAIL PROTECTED] GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734 VMS, n.: The world's foremost

Re: Unwanted .exe appended to symlinks

2005-07-09 Thread Corinna Vinschen
On Jul 9 16:50, Eric Blake wrote: > Corinna Vinschen cygwin.com> writes: > > > > > On Jul 9 07:30, Eric Blake wrote: > > > Hmm, while I'm at it, "dirname //" should return //, not /. > > > > No. // is a perfectly valid root dir in a system which differs between > > / and //. Let dirname(1)

Perl/Tk

2005-07-09 Thread aschwarz1309
I just downloading perl-5.8.7 (and prior to that, perl-5.8.6) and noticed no Tk. Any way of getting a Perl/Tk download? Thanks art -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/d

Re: Broken parse on `'${'`

2005-07-09 Thread Chet Ramey
Eric Blake wrote: > Repeat-By: > zsh$ echo `echo '${'` > ${ > zsh$ bash > bash$ echo `echo '${'` > > # Hmm - I was just incorrectly presented PS2, asking to try to continue > what bash thought was an incomplete ${ variable substitution > > Fix: >unknown Thanks for the report. This has been

Re: error compiling apache-1.3.33 with mod_perl and perl-5.8.7-1

2005-07-09 Thread Gerrit P. Haase
Bruno Postle wrote: I can't build apache-1.3.33 and mod_perl-1.29 with perl-5.8.7-1 (it builds ok if I downgrade cygwin to perl-5.8.6-4) Steps to reproduce: tar -zxf apache_1.3.33.tar.gz tar -zxf mod_perl-1.0-current.tar.gz cd mod_perl-1.29/ perl Makefile.PL DO_HTTPD=1 USE_APACI=1 m

partially resolved (was: Re: perl testsuite errors / cygserver not working / apache2 problems )

2005-07-09 Thread Gerrit P. Haase
Gerrit P. Haase wrote: I also get errors when running the perl-5.8.7 testsuite for the SysV extension on this NT4 box: Failed Test Stat Wstat Total Fail Failed List of --- .../ext/IPC/SysV/t/ipcsysv.t1 256

Re: ssh problems

2005-07-09 Thread Larry Hall
On Tue July 5 2005 22:59, Eli Barzilay wrote: > On Jul  5, Larry Hall wrote: > > At 08:45 PM 7/5/2005, you wrote: > > >(If this is not the right place for this, please direct me.) > > > > > >I have recently updated an old Windows setup, including a new cygwing > > >installation.  We use this machin

Re: Bash 2.05 vs. 3.0 Prompt Behavior [attn readline maintainer]

2005-07-09 Thread Eric Blake
>> Hi Eric, >> >> I fixed this minor issue (so I believe) in my early attempts in >> becoming a bash maintainer sometime in april this year. >> I've attached a patch file (based on bash-3.0-7). >> >> greets, >> H. Hans was kind enough to provide me his proposed patch offlist, which boils down to

Re: Use Fetchmail/procmail on winxp

2005-07-09 Thread reader
Jason Tishler <[EMAIL PROTECTED]> writes: > On Thu, Jul 07, 2005 at 01:31:27PM -0500, reader wrote: >> My aim is to retrieve from a pop3 server using fetchmail and deliver >> using procmail to wherever it needs to go for gnus to slurp the mail. > > You should find the necessary information to do t

Re: Use Fetchmail/procmail on winxp

2005-07-09 Thread reader
Jason Tishler <[EMAIL PROTECTED]> writes: > You should find the necessary information to do the above in the > following: Jason, I didn't see that there (as posted) but I suspect I'm overlooking some really obvious stuff. I've searched gmane's cygwin group on this and I see you've posted on this

[ANNOUNCEMENT] Updated: gcc-3.4.4-1

2005-07-09 Thread Gerrit P. Haase
I've made gcc 3.4.4 available for download. NEWS Too many changes to list here in detail. Please see the official docs at http://gcc.gnu.org/gcc-3.4/changes.html Driver packages available for Cygwin: Ada gcc-ada / gcc-mingw-ada Cgcc-core / gcc-mingw-core C++ g

[ANNOUNCEMENT] Updated: binutils-20050610-1

2005-07-09 Thread cgf
I've made a new version of binutils available for installation. This version of binutils contains a fix which should stop the ld --auto-image-base option from locating dlls into the address space of the cygwin dll. For a brief description of this package, and a listing of the files it contains, s

[ANNOUNCEMENT] Updated: perl-5.8.7-2

2005-07-09 Thread Gerrit P. Haase
Perl has been updated to 5.8.7-2 - Now using --enable-auto-image-base to link DLL and extensions. This should address the problem with loading extension DLLs in subprocesses. NEWS - New builtin functions: Cygwin::winpid_to_pid, Cygwin::pid_to_winpid - Configured with -Dus

Re: Use Fetchmail/procmail on winxp

2005-07-09 Thread Larry Hall
At 08:29 PM 7/9/2005, you wrote: >Jason Tishler <[EMAIL PROTECTED]> writes: > >> On Thu, Jul 07, 2005 at 01:31:27PM -0500, reader wrote: >>> My aim is to retrieve from a pop3 server using fetchmail and deliver >>> using procmail to wherever it needs to go for gnus to slurp the mail. >> >> You shoul

Re: Use Fetchmail/procmail on winxp

2005-07-09 Thread Larry Hall
At 08:52 PM 7/9/2005, you wrote: >Jason Tishler <[EMAIL PROTECTED]> writes: > >> You should find the necessary information to do the above in the >> following: > >Jason, I didn't see that there (as posted) but I suspect I'm >overlooking some really obvious stuff. I've searched gmane's cygwin >grou

Re: File Naming Between Cygwin and Windows

2005-07-09 Thread Ross MacGillivray
Corinna Vinschen cygwin.com> writes: > > On Jul 9 05:03, Ross MacGillivray wrote: > > > > I am trying to access via a cygwin application a file called kdeinit-127.0.0.1:0. > > The filename is generated within the software, so it is not trivial to > > change > > the file name in the file acce

exim and imap3d

2005-07-09 Thread Wes S
I've spent most of saturday trying to get exim and imap3d to work. By inserting a bunch of echo "some thing" statements in the exim-conf file, I figured out where the config script was bombing on me. So exim seems to be working a-ok. At least it sends and I can get pine to read my /var/spool