lftp-3.5.11-2*tar.bz2 wrongly located under release/?

2007-07-10 Thread fergus
Currently on at least one mirror the two files lftp-3.5.11-2*tar.bz2 are wrongly (?) located directly under release/ and not release/lftp/. Fergus -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: htt

Vim copy on select doesn't run

2007-07-10 Thread Jose Luis
Hi, When I select a text on a vim edited file with the mouse, the text isn't copy automatically. On the shell window this run fine. Any hint? Thanks in advance, Jose Luis -- View this message in context: http://www.nabble.com/Vim-copy-on-select-doesn%27t-run-tf4060074.html#a11534723 Sent fro

Re: fyi - mirror prob

2007-07-10 Thread René Berber
Dave Korn wrote: [snip] >> It's disturbing that the two "mirrors.kernel.org" servers aren't in sync. >> I suspect I'm pulling a bogus image from the alternate kern.org mirror. I >> was getting inconsistent results -- thought it might have been the new >> setup.exe accessing a different data file.

Re: Cygwin tar1.16.1 - stdout/stdin behaviour on windows

2007-07-10 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to kavitha Bhasker -X (kbhasker - Infosys at Cisco) on 7/10/2007 9:49 AM: > Hi, > > Iam using the Cygwin Tar version 1.16.1 on an Windows NT Server , I have > the following dll's copied to the same path as the tar.exe > From cygwin/1.5.24-2

Re: Starting some notes on large paths... what's the right place?(Re: large paths in cygwin.)

2007-07-10 Thread Christopher Faylor
On Tue, Jul 10, 2007 at 11:35:19PM +0100, Dave Korn wrote: >On 10 July 2007 23:25, Robert North wrote: > >> Ideally I'd like to place this kind of thing in a cygwin wiki, >> but as Cygwin doesn't have one, my preference is to place the notes in >> this mailing list, where they will be searchable.

Re: Starting some notes on large paths... what's the right place?(Re: large paths in cygwin.)

2007-07-10 Thread Brian Dessent
Robert North wrote: > If I have time I may investigate what locations in code need to be > changed, and technical details of possible internal UCS-2 (Or is that > UTF16 ) implementations. http://blogs.msdn.com/michkap/archive/2005/05/11/416552.aspx >From the standpoint of the low-level filesyste

RE: Starting some notes on large paths... what's the right place?(Re: large paths in cygwin.)

2007-07-10 Thread Dave Korn
On 10 July 2007 23:25, Robert North wrote: > Ideally I'd like to place this kind of thing in a cygwin wiki, > but as Cygwin doesn't have one, my preference is to place the notes in > this mailing list, where they will be searchable. > Is this a good idea? > Is there a better place to put them? >

RE: Non-trusted domain user causes mkpasswd and mkgroup to fail

2007-07-10 Thread Long, Phillip GOSS
Matt Seitz (matseitz) wrote: >"Long, Phillip GOSS" <[EMAIL PROTECTED]> wrote in >message >news:<[EMAIL PROTECTED] >rna >tional.com>... >>Maybe if U map a drive to a share on a machine in the neopath domain >>using a neopath domain account, the security token your process gets [snip] >When

Starting some notes on large paths... what's the right place?(Re: large paths in cygwin.)

2007-07-10 Thread Robert North
Brian Dessent wrote: [EMAIL PROTECTED] wrote: When will Cygwin get the ability to use large paths? What are the roadblocks to Cygwin getting this feature? The small limit comes from the ANSI version of the Win32 API. In order to be free of the limit Cygwin would have to consistently use the

Re: dll libraries marked for random execution?

2007-07-10 Thread Brian Dessent
Linda Walsh wrote: > I'd like to get rid of the "executable" bit being set on files that > are not really executable. Besides being bad practice, it also > creates problems when looking for completion values in the shell. Seem > to remember some other issues related to dll's being marked as > ex

Re: cygwin.h and debug formats

2007-07-10 Thread Brian Dessent
NightStrike wrote: > Is it at all possible to include DWARF2 support in future releases? Is this > already on the agenda? Cygwin support for DWARF-2 debug information already exists in gcc and binutils and has worked for some years. Add -gdwarf-2 to CFLAGS. It's just not the default. Brian -

Re: find(1) behaving strange or do I miss something

2007-07-10 Thread Ariel Burbaickij
Yeap, works fine. Many thanks. Ariel Burbaickij wrote: > Hello all, > following situation: > I hate white spaces in file and cranked tiny bashscript for replacing > them that goes like this: > for i in `find . -type f` > do > mv $i /some_directory/`echo $i|sed 's/ /_/g'` > done > > On this I get

Re: find(1) behaving strange or do I miss something

2007-07-10 Thread Matthew Woehlke
Ariel Burbaickij wrote: Hello all, following situation: I hate white spaces in file and cranked tiny bashscript for replacing them that goes like this: for i in `find . -type f` do mv $i /some_directory/`echo $i|sed 's/ /_/g'` done On this I get complaints from mv that it cannot find files that

find(1) behaving strange or do I miss something

2007-07-10 Thread Ariel Burbaickij
Hello all, following situation: I hate white spaces in file and cranked tiny bashscript for replacing them that goes like this: for i in `find . -type f` do mv $i /some_directory/`echo $i|sed 's/ /_/g'` done On this I get complaints from mv that it cannot find files that are basically parts of th

RE: fyi - mirror prob

2007-07-10 Thread Igor Peshansky
On Tue, 10 Jul 2007, Dave Korn wrote: > On 10 July 2007 19:40, Linda Walsh wrote: > > > Buchbinder, Barry (NIH/NIAID) [E] wrote: > >> it also periodically gave a "message > >> saying it is no longer in the list of Cygwin mirrors", as report > >> for mirrors.kernel.org by René Berber. > > --- > >

RE: fopens fails to open binary files on Vista

2007-07-10 Thread Dave Korn
On 10 July 2007 20:52, Kirk Russell wrote: > I am running Windows Vista and I have written a program on cygwin that > opens a binary file using the fopen call with a mode of "rb". At run time I > receive the following error message: > > Invalid Parameter passed to C runtime function. > > If I

fopens fails to open binary files on Vista

2007-07-10 Thread Kirk Russell
Hi, I am running Windows Vista and I have written a program on cygwin that opens a binary file using the fopen call with a mode of "rb". At run time I receive the following error message: Invalid Parameter passed to C runtime function. If I were to remove the "b" in "rb", the library call i

RE: dll libraries marked for random execution?

2007-07-10 Thread Dave Korn
On 10 July 2007 20:04, Linda Walsh wrote: > Pardon me, but I have some questions about libraries under > cygwin if anyone knows... If there's a doc somewhere that > answers these questions, a pointer to it would be appreciated. Umm, this is all standard stuff but is probably not as well documen

RE: fyi - mirror prob

2007-07-10 Thread Dave Korn
On 10 July 2007 19:40, Linda Walsh wrote: > Buchbinder, Barry (NIH/NIAID) [E] wrote: >> it also periodically gave a "message >> saying it is no longer in the list of Cygwin mirrors", as report >> for mirrors.kernel.org by René Berber. > --- > Is the message that it is no longer in the list o

dll libraries marked for random execution?

2007-07-10 Thread Linda Walsh
Pardon me, but I have some questions about libraries under cygwin if anyone knows... If there's a doc somewhere that answers these questions, a pointer to it would be appreciated. Are all dll libraries supposed to be invocable as executables? What about libraries with ".a" extensions? I looked o

[ANNOUNCEMENT] New package: screen-4.0.3-1

2007-07-10 Thread Andrew Schulman
The package 'screen' is now available in the Cygwin distribution. screen is a terminal multiplexer and window manager that runs several separate 'screens' on a single physical character-based terminal. Each virtual terminal emulates a DEC VT100 plus several ANSI X3.64 and ISO 2022 functions. You

Re: fyi - mirror prob

2007-07-10 Thread Linda Walsh
Buchbinder, Barry (NIH/NIAID) [E] wrote: it also periodically gave a "message saying it is no longer in the list of Cygwin mirrors", as report for mirrors.kernel.org by René Berber. --- Is the message that it is no longer in the list of Cygwin mirrors from "setup.exe"? How does it know/

Re: 1.3.12: zgrep option bug/problem

2007-07-10 Thread Christopher Faylor
On Tue, Jul 10, 2007 at 10:50:19AM -0400, Matt Rice wrote: > It appears when I try to zgrep multiple files and suppress the filename > output with the short option, -h, it does no good. It does, however, appear > to work with the long option, --no-filename. I'm assuming this is a bug > because

Re: cygserver error

2007-07-10 Thread Lester Ingber
Corinna: Thanks for info re the Event Viewer info. I thought that would have been more useful than it is. I believe I have set up cygserver as directed; perhaps not: @lester:~% cygrunsrv -LV Service : cygserver Display name: CYGWIN cygserver Current State : Running Con

Re: cygserver error

2007-07-10 Thread Corinna Vinschen
On Jul 10 09:39, Lester Ingber wrote: > Whenever I start Cygwin on our Thinkpads/XP Pro SP2 with cygserver started > at boot, I get a series of Errors in my Event Viewer -> Application. > As far as I can tell everything is running OK, but I don't see how to > get rid of these reported errors? > >

RE: cygwin.h and debug formats

2007-07-10 Thread Dave Korn
On 10 July 2007 17:48, NightStrike wrote: > cygwin.h doesn't define DWARF2 as an option for debugging formats. This > causes a large array of spurios warnings of the form: > > /tmp/ccifRtnm.s:248198: Warning: .stabs: description field '138ef' too big, > try a different debug format > > > Is it

cygwin.h and debug formats

2007-07-10 Thread NightStrike
cygwin.h doesn't define DWARF2 as an option for debugging formats. This causes a large array of spurios warnings of the form: /tmp/ccifRtnm.s:248198: Warning: .stabs: description field '138ef' too big, try a different debug format Is it at all possible to include DWARF2 support in future rele

Re: Cygwin tar1.16.1 - stdout/stdin behaviour on windows

2007-07-10 Thread Larry Hall (Cygwin)
kavitha Bhasker -X (kbhasker - Infosys at Cisco) wrote: Hi, Iam using the Cygwin Tar version 1.16.1 on an Windows NT Server , I have the following dll's copied to the same path as the tar.exe From cygwin/1.5.24-2 : cygiconv-2.dll cygintl-8.dll cygwin1.dll Copying the Cygwin

Cygwin tar1.16.1 - stdout/stdin behaviour on windows

2007-07-10 Thread kavitha Bhasker -X (kbhasker - Infosys at Cisco)
Hi, Iam using the Cygwin Tar version 1.16.1 on an Windows NT Server , I have the following dll's copied to the same path as the tar.exe From cygwin/1.5.24-2 : cygiconv-2.dll cygintl-8.dll cygwin1.dll Iam able to run the command : tar --forcelocal -cvf C:\\temp.tar C:\\temp success

RE: fyi - mirror prob

2007-07-10 Thread Buchbinder, Barry (NIH/NIAID) [E]
Linda Walsh wrote on Tuesday, July 10, 2007 4:25 AM: > seems like the grep package on http://mirrors.kernel.org appears > corrupt (too short). Seems fine on another mirror. For what it's worth, I've found mirrors.kernel.org behaving strangely for a week or two. I have now, after of number of year

1.3.12: zgrep option bug/problem

2007-07-10 Thread Matt Rice
It appears when I try to zgrep multiple files and suppress the filename output with the short option, -h, it does no good. It does, however, appear to work with the long option, --no-filename. I'm assuming this is a bug because -h works fine on SuSE 10.1 Ex: zgrep -hE 'abc123' file1.gz file

Re: [Packaging error] Re: [ANNOUNCEMENT] Updated:lftp-3.5.11-1

2007-07-10 Thread Andrew Schulman
> The new version overwrites /etc/lftp.conf, the old version was ok: Confirmed-- thanks. It seems that I screwed that up when I changed to cygport. I'll release a new version today. Andrew. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin

[ANNOUNCEMENT] Updated: m4-1.4.10-1

2007-07-10 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 A new release of m4, 1.4.10-1, is available, replacing 1.4.9-1 as current. NEWS This is a new upstream release. From the NEWS file, the changes since 1.4.9 are listed below, the biggest of which is a change to GPLv3. See also /usr/share/doc/m4-

Re: localedef not found

2007-07-10 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to ICE on 6/15/2007 7:04 AM: Sorry for the delayed reply. I see no one else answered this, so here goes. > > is it possible to install localedef?? Not until someone implements generic locale support in newlib. Cygwin is currently hardwi

[Packaging error] Re: [ANNOUNCEMENT] Updated:lftp-3.5.11-1

2007-07-10 Thread Dr. Volker Zell
> Schulman Andrew writes: > A new version of the lftp package is available in the Cygwin The new version overwrites /etc/lftp.conf, the old version was ok: Processing package lftp Version: 3.5.11 Releasenumber: 1 Cygwin Package Information Package VersionStatus lftp

RE: fyi - mirror prob

2007-07-10 Thread Dave Korn
On 10 July 2007 11:07, René Berber wrote: > Dave Korn wrote: > >> On 10 July 2007 09:25, Linda Walsh wrote: >> >>> seems like the grep package on http://mirrors.kernel.org appears corrupt >>> (too short). Seems fine on another mirror. >> >> Seems fine on kernel.org to me: maybe you have local

Re: fyi - mirror prob

2007-07-10 Thread René Berber
Dave Korn wrote: > On 10 July 2007 09:25, Linda Walsh wrote: > >> seems like the grep package on http://mirrors.kernel.org appears corrupt >> (too short). >> Seems fine on another mirror. > > Seems fine on kernel.org to me: maybe you have local firewall / http proxy > issues? One problem I'v

RE: fyi - mirror prob

2007-07-10 Thread Dave Korn
On 10 July 2007 09:25, Linda Walsh wrote: > seems like the grep package on http://mirrors.kernel.org appears corrupt > (too short). > Seems fine on another mirror. Seems fine on kernel.org to me: maybe you have local firewall / http proxy issues? /win/t/artimi $ wget 'http://www.mirrorservi

fyi - mirror prob

2007-07-10 Thread Linda Walsh
seems like the grep package on http://mirrors.kernel.org appears corrupt (too short). Seems fine on another mirror. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: