Re: lseek + read = ENOENT

2006-01-20 Thread Cliff Hones
Eric Blake wrote: >> [I wrote] >>This seems to be a bug in gcc. The off_t argument to lseek is a 64-bit >>type, but instead of being sign-extended to 64 bits, the value passed >>(-sizeof(data)) passed is only extended to 32-bits, so is actually >>+4294967292. [This is OT for Cygwin, and probabl

Re: Building Cygwin from CVS

2006-01-20 Thread Cliff Hones
Christopher Faylor wrote: > On Thu, Jan 19, 2006 at 08:53:26PM -0800, Joshua Daniel Franklin wrote: > >>> . The FAQ info describing how to run the tests is wrong. It worked for >>>me when I ran "make check" in the i686-pc-cygwin/winsup subdirectory of >>>my build directory. >> >>OK, I'll

Re: Building Cygwin from CVS

2006-01-20 Thread Corinna Vinschen
On Jan 20 09:10, Cliff Hones wrote: > Christopher Faylor wrote: > > Before we do that can we please find out WHAT is actually wrong? There > > is no description of the problem beyond the above. I run the testsuite > > several times a day by cd'ing to winsup/testsuite so I know that works. > > Let

Re: Making and selling a Cygwin distribution

2006-01-20 Thread Corinna Vinschen
On Jan 19 22:22, David Christensen wrote: > I've wondered if it is permissible to make and sell a Cygwin distribution (CD, > DVD, downloadable ISO, etc.). Looking at the Cygwin license page: > > http://www.cygwin.com/licensing.html > > I think so (because the GPL allows you to do that), but

Re: 1.5.19-2 fcntl invaild argument error changing socket blocking mode

2006-01-20 Thread Corinna Vinschen
On Jan 19 18:08, Martin wrote: > I'm trying to compile TCL 8.4.12 using the 'unix' not > the 'win' target files. The target 'tclsh.exe' builds > ok with some modifications to various source files. > Now, I'm attempting to check the resulting build with > the TCL test suite. > Granted, there are num

RE: Building Cygwin from CVS

2006-01-20 Thread Dave Korn
Joshua Daniel Franklin wrote: > > I think I'd tried to come up with a list before but never figured it > out since I'd > long ago installed what was needed. Is this a complete enough list? > > gcc make binutils cocom dejagnu > > This might even be worth adding to a winsup/README file. I bel

ps -W and top

2006-01-20 Thread Tom Potts
ps -W lists windows process' but top doesn't seem to be aware for them. Is there a version of top that can show windows process' - especially for w95/98! Tom _ This e-mail message has been scanned for Malicious Con

ps -W and top

2006-01-20 Thread Tom Potts
ps -W lists windows process' but top doesn't seem to be aware for them. Is there a version of top that can show windows process' - especially for w95/98! Tom _ This e-mail message has been scanned for Malicious Co

Need information about data and bss segment address access in cygwin

2006-01-20 Thread Sudhahar
Hi, I'm trying to understand how Cygwin implement fork in windows. When I browse through the fork code I found Cygwin copies the data segment,bss segment etc as rc = fork_copy (pi, "user/cygwin data", user_data->data_start, user_data->data_end, user_data->bss_start, user_data

[ANNOUNCEMENT] Updated: ruby-1.8.4-1

2006-01-20 Thread Corinna Vinschen
I have updated the version of ruby on cygwin.com to 1.8.4-1. This is an upstream bugfix release. As for the bugfixes, the official release message doesn't contain any description of them, sorry. To update your installation, click on the "Install Cygwin now" link on the http://cygwin.com/ web pa

Re: New platform independent problem

2006-01-20 Thread Eli Zaretskii
> Date: Fri, 20 Jan 2006 14:47:40 +0900 > From: djh <[EMAIL PROTECTED]> > > In December of last year, 2005, the cygwin developers deprecated d_ino > out of the dirent.h defined dirent structure. > > This break emac's dired.c (from compiling) > > Ref: http://www.cygwin.com/ml/cygwin/2005-12/ms

RE: Need information about data and bss segment address access in cygwin

2006-01-20 Thread Dave Korn
Sudhahar wrote: > from parent process to child process. After trying to find where the > data_start and data_end get the address of running process data and > bss segment, I ended up with a declaration of > > extern char _data_start__, _data_end__, _bss_start__, _bss_end__; in > file Winsup.h >

Re: [ANNOUNCEMENT] Updated: orpie 1.4.3-1

2006-01-20 Thread zzapper
On Wed, 18 Jan 2006 13:55:47 -0500, wrote: >A new version of the orpie package is available in the Cygwin >distribution. > Some info:- http://freshmeat.net/projects/orpie About: Orpie is a fullscreen RPN calculator for the console. Its operation is similar to that of modern HP calculators, but

Re: Need information about data and bss segment address access in cygwin

2006-01-20 Thread Sudhahar
Thanks Dave your reply answered the question where they declared. But how does these variables get the segment address of data and bss for a running process to make a copy to the child process? This is the questions which is a puzzle to me. Thanks in Advance for your answer Sudha On 1/20/06, Dave

Re: Need information about data and bss segment address access in cygwin

2006-01-20 Thread Cliff Hones
Sudhahar wrote: > Thanks Dave your reply answered the question where they declared. But > how does these variables get the segment address of data and bss for a > running process to make a copy to the child process? This is the > questions which is a puzzle to me. The linker places these variables

Re: New platform independent problem

2006-01-20 Thread Corinna Vinschen
On Jan 20 13:08, Eli Zaretskii wrote: > > Date: Fri, 20 Jan 2006 14:47:40 +0900 > > From: djh > > > > In December of last year, 2005, the cygwin developers deprecated d_ino > > out of the dirent.h defined dirent structure. > > > > This break emac's dired.c (from compiling) > > > > Ref: http:

RE: Need information about data and bss segment address access in cygwin

2006-01-20 Thread Dave Korn
Cliff Hones wrote: > Sudhahar wrote: >> Thanks Dave your reply answered the question where they declared. But >> how does these variables get the segment address of data and bss for a >> running process to make a copy to the child process? This is the >> questions which is a puzzle to me. > > The

Re: New platform independent problem

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Eli Zaretskii wrote: > > Date: Fri, 20 Jan 2006 14:47:40 +0900 > > From: djh <[EMAIL PROTECTED]> > > > > In December of last year, 2005, the cygwin developers deprecated d_ino > > out of the dirent.h defined dirent structure. ...changing it to __deprecated_d_ino, I believe.

Re: New platform independent problem

2006-01-20 Thread Eli Zaretskii
> Date: Fri, 20 Jan 2006 08:29:20 -0500 (EST) > From: Igor Peshansky <[EMAIL PROTECTED]> > cc: djh <[EMAIL PROTECTED]>, emacs-devel@gnu.org, cygwin@cygwin.com > > > > This break emac's dired.c (from compiling) > > > Ref: http://www.cygwin.com/ml/cygwin/2005-12/msg00205.html > > > > Without knowing

Re: New platform independent problem

2006-01-20 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Corinna Vinschen on 1/20/2006 5:25 AM: > > I'm also having a problem right now building rcp and scp due to the > missing d_ino. OTOH, the d_ino member is not required by POSIX, but > only in X/Open compliant OSes, see > > http://www.o

Re: Did md5sum -c change line end handling?

2006-01-20 Thread Mark Bohlman
Eric Blake wrote: > According to Mark Bohlman on 1/19/2006 3:24 PM: >>> Notice the message ": No such file or directoryz" - that is not a typo but >>> a cut and paste. >>> Turns out that the .md5 file has a CR-LF (downloaded from source provider) >>> in it that is no >>> longer being read proper

Re: New platform independent problem

2006-01-20 Thread Corinna Vinschen
On Jan 20 06:59, Eric Blake wrote: > According to Corinna Vinschen on 1/20/2006 5:25 AM: > > I'm also having a problem right now building rcp and scp due to the > > missing d_ino. OTOH, the d_ino member is not required by POSIX, but > > only in X/Open compliant OSes, see > > > > http://www.open

Re: New platform independent problem

2006-01-20 Thread Corinna Vinschen
[Resent to add emacs-devel and Eli on the "To:" list] On Jan 20 06:59, Eric Blake wrote: > According to Corinna Vinschen on 1/20/2006 5:25 AM: > > I'm also having a problem right now building rcp and scp due to the > > missing d_ino. OTOH, the d_ino member is not required by POSIX, but > > only i

Re: New platform independent problem

2006-01-20 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eli Zaretskii on 1/20/2006 6:56 AM: > >>Frankly, many programs expect that if d_ino is present, it has the correct >>value (i.e., the same as st_ino). > > > Which programs expect that, besides the two Chris mentioned? Several of the co

Re: New platform independent problem

2006-01-20 Thread Corinna Vinschen
On Jan 20 15:56, Eli Zaretskii wrote: > > From: Igor Peshansky > > > Without knowing the full details, I'd risk saying that this was not > > > the best decision. Is there really no way of making d_ino be > > > consistent with what `stat' returns about the same directory? > > > > Corinna already

question on d_ino semantics

2006-01-20 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There are currently two competing uses of d_ino semantics in coreutils: lib/backupfile.c assumes that if d_ino is ever 0, (captured by the macro REAL_DIR_ENTRY, which is always non-zero on platforms without d_ino), that readdir() returned an invalid e

Re: problem with run command and the environment

2006-01-20 Thread Alexander Gottwald
On Thu, 2006-01-19 at 12:06 -0800, Brian Dessent wrote: > In the case of run it's necessary to call CreateProcess for the > functionality required, but this also means that it has to be careful to > do so in a way that is compatible with Cygwin -- in this case syncing > the environment first. I'm

readline 5.1 question

2006-01-20 Thread Bob Rossi
Hi all, My application recently started depending on readline 5.1. In Cygwin, I installed in setup.exe All->Devel->readline, and I have version 5.1-1 as the current. However, if I compile and run this program, #include #include main() { printf("%s\n", rl_library_version ? rl_library_ver

Re: readline 5.1 question

2006-01-20 Thread Eric Blake
> Hi all, > > My application recently started depending on readline 5.1. In Cygwin, I > installed in setup.exe > All->Devel->readline, and I have version 5.1-1 as the current. Did you also pick up libreadline6-5.1-1? readline-5.1-1 only contains the headers and static link library, but using

Re: readline 5.1 question

2006-01-20 Thread Bob Rossi
On Fri, Jan 20, 2006 at 03:48:01PM +, Eric Blake wrote: > > Hi all, > > > > My application recently started depending on readline 5.1. In Cygwin, I > > installed in setup.exe > > All->Devel->readline, and I have version 5.1-1 as the current. > > Did you also pick up libreadline6-5.1-1? re

Re: readline 5.1 question

2006-01-20 Thread Bob Rossi
On Fri, Jan 20, 2006 at 11:09:18AM -0500, Bob Rossi wrote: > On Fri, Jan 20, 2006 at 03:48:01PM +, Eric Blake wrote: > > > Hi all, > > > > > > My application recently started depending on readline 5.1. In Cygwin, I > > > installed in setup.exe > > > All->Devel->readline, and I have version

Re: readline 5.1 question

2006-01-20 Thread Eric Blake
> > Thanks for the prompt reply. Yes, I think I did install that. It's very > odd to me that there is libreadline-6-5.1-1, since there is no readline > version 6. Are you suggesting the cygwin package manager has no way of > dealing with multiple version of a library? It is because there ARE mult

Re: readline 5.1 question

2006-01-20 Thread Eric Blake
> Thanks very much. Is there any reason this important library isn't > installed by default? libreadline6 IS installed by default, but at version 5.0-4. As to why libreadline6-5.1-1 is not installed by default, it is because I marked the package experimental because it relied on features that wer

Re: New platform independent problem

2006-01-20 Thread Eli Zaretskii
> Date: Fri, 20 Jan 2006 07:18:18 -0700 > From: Eric Blake <[EMAIL PROTECTED]> > CC: cygwin@cygwin.com, [EMAIL PROTECTED], emacs-devel@gnu.org > > Which is why it is prohibitively expensive for cygwin to populate it with > the correct value on WinNT and Win2K; too few applications use d_ino to >

Re: Building Cygwin from CVS

2006-01-20 Thread Christopher Faylor
On Fri, Jan 20, 2006 at 10:21:35AM +0100, Corinna Vinschen wrote: >On Jan 20 09:10, Cliff Hones wrote: >> Christopher Faylor wrote: >> > Before we do that can we please find out WHAT is actually wrong? There >> > is no description of the problem beyond the above. I run the testsuite >> > several

1.5.19-3 parent socket binding remains after closing when spawning child process

2006-01-20 Thread Martin
Well, this is a strange one. I open a socket in a parent process, bind it and listen. I set the socket to close-on-exec with the FD_CLOEXEC flag. A child process is spawned, which doesn't inherit the socket. I then close the server socket in the parent process. For a laugh, I attempt to connect to

Re: New platform independent problem

2006-01-20 Thread Eric Blake
> You could have a flag that, if set, will instruct readdir to do the > expensive processing. Applications that need the real inode will set > that flag. And then we would have to change applications to call this nonstandard entry point at the beginning of their program to set the flag. As long

Re: New platform independent problem

2006-01-20 Thread Eli Zaretskii
> From: [EMAIL PROTECTED] (Eric Blake) > Cc: cygwin@cygwin.com, [EMAIL PROTECTED], emacs-devel@gnu.org > Date: Fri, 20 Jan 2006 17:01:37 + > > > You could have a flag that, if set, will instruct readdir to do the > > expensive processing. Applications that need the real inode will set > > tha

RE: 1.5.19-3 parent socket binding remains after closing when spawning child process

2006-01-20 Thread Dave Korn
Martin wrote: > Well, this is a strange one. > I open a socket in a parent process, bind it and > listen. > I set the socket to close-on-exec with the FD_CLOEXEC > flag. > A child process is spawned, which doesn't inherit the > socket. > I then close the server socket in the parent process. > For a

curses.h

2006-01-20 Thread Bob Rossi
Hi all, This is yet another problem that I am having, that did not used to exist. My configure script checks for curses.h and ncurses.h, since I depend on curses to compile CGDB. This used to be detected, but no longer does. checking ncurses.h usability... no checking ncurses.h presence... no ch

Win CE

2006-01-20 Thread Philippe Laporte
Hi, Why is there no port for Win CE? Do you know anything that provides similar functionality for Win CE? Thanks, -- Philippe Laporte Software Gatespace Telematics Första Långgatan 18 41328 Göteborg Sweden Phone: +46 702 04 35 11 Fax: +46 31 24 16 50 Email: [EMAIL PROTECTED] -- Unsub

RE: Win CE

2006-01-20 Thread Dave Korn
Philippe Laporte wrote: > Hi, > Why is there no port for Win CE? http://cygwin.com/acronyms#WJM. cheers, DaveK -- Can't think of a witty .sigline today -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.htm

Re: curses.h

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Bob Rossi wrote: > This is yet another problem that I am having, that did not used to > exist. My configure script checks for curses.h and ncurses.h, since I > depend on curses to compile CGDB. > > This used to be detected, but no longer does. > > checking ncurses.h usability.

Re: Win CE

2006-01-20 Thread Christopher Faylor
On Fri, Jan 20, 2006 at 05:50:02PM -, Dave Korn wrote: >Philippe Laporte wrote: >>Why is there no port for Win CE? > >http://cygwin.com/acronyms#WJM. Wow! Good thing that I checked twice before I sent my answer. I hate to duplicate someone else's technical responses. cgf -- Unsubscribe inf

Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Alan Ramsey
I installed cygwin using the defaults. By that I mean I accepted the directory of C:\Cygwin, the default download directory, and selected no additional packages. The installation program seemed to complete with no exceptions. However when I went to run the program it said it couldn't find the Ba

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Christopher Faylor
On Fri, Jan 20, 2006 at 09:57:54AM -0800, Alan Ramsey wrote: >I installed cygwin using the defaults. By that I mean I accepted the >directory of C:\Cygwin, the default download directory, and selected no >additional packages. > >The installation program seemed to complete with no exceptions. >Howe

Re: Building Cygwin from CVS

2006-01-20 Thread Brian Dessent
Joshua Daniel Franklin wrote: > gcc make binutils cocom dejagnu gcc depends on binutils, so there's no need to list it as requirement. Perl is used in the build process as well. http://cygwin.com/ml/cygwin/2005-01/msg01266.html Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Alan Ramsey
> Apparently, the PDFMerge program uses its own > min-cygwin distribution. I don't know if that is the case or not. PDFMerge is no longer installed on that machine. I searched for the Cygwin1.dll on the entire machine and am only finding the ones that I installed, so I don't think this is the

Re: /proc//exe points to void

2006-01-20 Thread Sam Steingold
> * Corinna Vinschen <[EMAIL PROTECTED]> [2005-03-11 17:09:56 +0100]: > > On Mar 11 10:57, Sam Steingold wrote: >> > * Corinna Vinschen <[EMAIL PROTECTED]> [2005-03-10 23:00:45 +0100]: >> > >> > On Mar 10 16:00, Sam Steingold wrote: >> >> /proc//exe points to "foo", not to "foo.exe", so it cannot b

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Alan Ramsey wrote: > > Apparently, the PDFMerge program uses its own > > min-cygwin distribution. > > I don't know if that is the case or not. PDFMerge is > no longer installed on that machine. I searched for > the Cygwin1.dll on the entire machine and am only > finding the

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Alan Ramsey
I believe I have I found the problem, although I also believe it is indicative of a bug in the installation program. The output from the cygcheck program (see below) shows me the entries in the registry point to the PDFMerge directory. Evidently this is what sets the location of the bin\ and term

struct sockaddr_storage typo

2006-01-20 Thread Sean Middleditch
In /usr/include/cygwin/socket.h, the definition of struct sockaddr_storage has the field 'ss_family' misspelled as 'ss_familiy'. This is with a fresh install from this morning (2006-01-20). (Please CC me on replies.) -- Sean Middleditch <[EMAIL PROTECTED]> Charter Township of Ypsilanti -- Unsub

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Igor Peshansky
Ugh, top-posting... Reformatted. On Fri, 20 Jan 2006, Alan Ramsey wrote: > --- Igor Peshansky <[EMAIL PROTECTED]> wrote: . Thanks. > > On Fri, 20 Jan 2006, Alan Ramsey wrote: > > > > > > Apparently, the PDFMerge program uses its own > > > > min-cygwi

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Igor Peshansky wrote: > On Fri, 20 Jan 2006, Alan Ramsey wrote: > > > --- Igor Peshansky <[EMAIL PROTECTED]> wrote: > > . Thanks. ^^ Ouch! Make that . I

Re: struct sockaddr_storage typo

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Sean Middleditch wrote: > In /usr/include/cygwin/socket.h, the definition of struct > sockaddr_storage has the field 'ss_family' misspelled as 'ss_familiy'. > > This is with a fresh install from this morning (2006-01-20). > > (Please CC me on replies.) A known (and fixed) bug

[ANNOUNCEMENT] Updated: cygwin-1.5.19-4

2006-01-20 Thread Christopher Faylor
I've made a new version of the Cygwin DLL and associated utilities available for download. As usual, a list of what has changed is below. To update your installation, click on the "Install Cygwin now" link on the http://cygwin.com/ web page. This downloads setup.exe to your system. Then, run se

Re: Downloading Cygwin under Linux ....

2006-01-20 Thread Jan Nieuwenhuizen
William A. Mahaffey, III writes: > Would you have a tutorial on using it :-) See below. The download command does not resolve dependencies, use install instead. Jan. $ cyg-apt setup error: /home/janneke/tmp/cygwin/root no root dir 21:59:13 [EMAIL PROTECTED]:~/tmp $ mkdir -p /home/janneke/tmp/c

Re: Install puts bin/ and terminfo/ directories in wrong directory.

2006-01-20 Thread Alan Ramsey
Igor, > Right, as I suspected, you had stale mount table > entries. I suspected that as well, which is why I asked in the original post for where Cygwin gets these directory entries. The registry is quite large, and it is not obvious. > > although I also believe it is indicative of a bug > in

Re: New platform independent problem

2006-01-20 Thread Andreas Schwab
Eric Blake <[EMAIL PROTECTED]> writes: > What platforms use d_ino==0 to mean an empty entry, rather than an entry > where st_ino must be checked? This is traditional Unix behaviour. The original dirent structure (which was actually struct direct from ) directly matched the contents of the direct

Make things it's time to link when it should compile

2006-01-20 Thread Eric Lilja
Hello, I'm having trouble with make for one simple program. [EMAIL PROTECTED] ~/coding/C/extract_acodes $ ls -al total 33K drwxrwxrwx+ 2 mikael None0 Jan 20 22:15 ./ drwxrwxrwx+ 22 mikael None0 Dec 7 16:12 ../ -rwxrwxrwx 1 mikael None 264 Oct 14 13:54 Makefile* -rw-r--r-- 1 mikael No

Re: Make things it's time to link when it should compile

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Eric Lilja wrote: > Hello, I'm having trouble with make for one simple program. > [EMAIL PROTECTED] ~/coding/C/extract_acodes > $ ls -al > total 33K > drwxrwxrwx+ 2 mikael None0 Jan 20 22:15 ./ > drwxrwxrwx+ 22 mikael None0 Dec 7 16:12 ../ > -rwxrwxrwx 1 mikael Non

Re: Make things it's time to link when it should compile

2006-01-20 Thread Igor Peshansky
On Fri, 20 Jan 2006, Igor Peshansky wrote: > For that reason, the "-o" option usually isn't part of CFLAGS. Aside from > fixing the typo, I'd rewrite your Makefile as follows: > > $ cat Makefile > CC = gcc > CFLAGS = -Wall -W -ansi -pedantic -g -O0 > LDFLAGS = > EXEC = extract_acodes.exe > OBJECT

Re: Make things it's time to link when it should compile

2006-01-20 Thread Eric Lilja
Igor Peshansky wrote: > On Fri, 20 Jan 2006, Eric Lilja wrote: > >> Hello, I'm having trouble with make for one simple program. >> [EMAIL PROTECTED] ~/coding/C/extract_acodes >> $ ls -al >> total 33K >> drwxrwxrwx+ 2 mikael None0 Jan 20 22:15 ./ >> drwxrwxrwx+ 22 mikael None0 Dec 7 16:12

1.5.19-4 cygpath -f - broken?

2006-01-20 Thread Martin
I seem like an idiot. This is such a fundamental command, it can't be broken, can it? I have the following bash alias: alias explr='explorer.exe `pwd | cygpath -w -f -`' It used to work like a charm. No more. Not sure when it stopped working. 1.5.19-2 maybe. 1.5.19-3 didn't work either. I'll

Can't delete directories on mapped drive

2006-01-20 Thread Hugh Crissman
I am running XP SP2. I have a drive mapped (s:). See mount output. It is a NAS drive that supports smb. $ mount D:\Program Files\NX Client for Windows\usr\X11R6\lib\X11\fonts on /mnt/NX/fonts type user (text mode) C:\Documents and Settings\Hugh\.nx\tmp on /tmp type user (textmode) D:\Program File

Re: 1.5.19-4 cygpath -f - broken?

2006-01-20 Thread Brian Dessent
Martin wrote: > I have the following bash alias: > alias explr='explorer.exe `pwd | cygpath -w -f -`' I'm not sure why that wouldn't work, but how about this instead: alias explr='cygstart "$(cygpath -w "$(pwd)")"' Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Proble

Re: 1.5.19-4 cygpath -f - broken? - forget about it, my MISTAKE

2006-01-20 Thread Martin
Forget it. I found the problem. I knew I was an idiot. --- Martin <[EMAIL PROTECTED]> wrote: > I seem like an idiot. This is such a fundamental > command, it can't be broken, can it? > > I have the following bash alias: > alias explr='explorer.exe `pwd | cygpath -w -f -`' > > It used to work

Re: 1.5.19-4 cygpath -f - broken?

2006-01-20 Thread Michael Schaap
On 21-Jan-2006 0:15, Brian Dessent wrote: > Martin wrote: > >> I have the following bash alias: >> alias explr='explorer.exe `pwd | cygpath -w -f -`' >> > > I'm not sure why that wouldn't work, but how about this instead: > > alias explr='cygstart "$(cygpath -w "$(pwd)")"' > > Or why not

Re: Downloading Cygwin under Linux ....

2006-01-20 Thread Joshua Daniel Franklin
On 1/20/06, Jan Nieuwenhuizen wrote: > $ cyg-apt install lilypond > to install: > libXft1 libXft2 ghostscript-base libreadline6 findutils xorg-x11-bin pcre > pango-runtime libncurses8 glib2-runtime pcre-doc libintl fontconfig > xorg-x11-base xorg-x11-fnts openssl097 python xterm X-startup-scr

sshd client can't access remote shares

2006-01-20 Thread Steve Briggs
I can't access network shares when I connect via sshd. My /etc/password file has only domain accounts: Steve:unused_by_nt/2000/xp:14896:544:Steve,U-FDE\Steve,S--4896:/temp:/bin/bash I've given the Win2kPro "SYSTEM" user rights to: Act as part of the OS Create a token object Increase quot

RE: Making and selling a Cygwin distribution

2006-01-20 Thread David Christensen
Corinna Vinschen wrote: > You may make and sell a distro. You have to make the source > available the same way you make the binaries available (CD/DVD/ISO). > The GPL FAQ is very enlightening to read: > http://www.gnu.org/licenses/gpl-faq.html Thanks! :-) David -- Unsubscribe info: http

Re: Making and selling a Cygwin distribution

2006-01-20 Thread Christopher Faylor
On Fri, Jan 20, 2006 at 09:26:29PM -0800, David Christensen wrote: >Corinna Vinschen wrote: >> You may make and sell a distro. You have to make the source >> available the same way you make the binaries available (CD/DVD/ISO). >> The GPL FAQ is very enlightening to read: >> http://www.gnu.org/lice

Re: Some contacts phones at Bangalore-India for cygwin features

2006-01-20 Thread Sanganagouda Iranagouda Khanagouar
Mk Sanganagouda-A5730C motorola.com> writes: > > Hi, > > I have some queries on cygwin, where i would like to now the features and use for my requirement as porting > UNIX based applications to Windows. > > Please give some contact phone numbers and some person names who are worked on cygwin