What depends on less and what man depends on.

2004-12-04 Thread Bas van Gompel
No, I'm not getting filosofical here. ;) Hallo all, Sometimes one wants to know what depends on a package or vice versa. To find out, using the local setup.inis, I wrote following script. It uses make to recursively find and display all dependencies in either direction. To find out what needs l

Re: User name with spaces and Cygwin web site suggestion

2004-12-04 Thread Nick Coghlan
Rodrigo de Salvo Braz wrote: id -un, as it is the case with ssh. Did I miss something or renaming the account really doesn't do anything to solve the problem? Did you rename the actual account using the Management Console (Control Panel->Administrative Accounts->Computer Management), or did you ch

Re: User name with spaces and Cygwin web site suggestion

2004-12-04 Thread Pierre A. Humblet
On Sat, Dec 04, 2004 at 09:17:22PM -0600, Rodrigo de Salvo Braz wrote: > Hi, > > I had a Windows XP user account whose name had spaces. The Cygwin web site > says that you should change your account's user name to something without > spaces and, if Cygwin is already installed, re-run mkpasswd. Eve

Re: PERL and XML::Parser

2004-12-04 Thread Larry Hall
At 10:39 PM 12/4/2004, you wrote: >Hi >I have been having problems installing XML-Parser-2.34.tar.gz, >I came across the course of the problem in your mailing archive but it didn't >give the solution to the problem. > >The original error was: >cp Parser/Encodings/iso-8859-5.enc >blib/lib/XML/

PERL and XML::Parser

2004-12-04 Thread Trevor McAlister
Hi I have been having problems installing XML-Parser-2.34.tar.gz, I came across the course of the problem in your mailing archive but it didn't give the solution to the problem. The original error was: cp Parser/Encodings/iso-8859-5.enc blib/lib/XML/Parser/Encodings/iso-8859-5.enc Syntax err

Re: User name with spaces and Cygwin web site suggestion

2004-12-04 Thread Larry Hall
At 10:17 PM 12/4/2004, you wrote: >Hi, > >I had a Windows XP user account whose name had spaces. The Cygwin web site >says that you should change your account's user name to something without >spaces and, if Cygwin is already installed, re-run mkpasswd. Even before I >installed Cygwin, I changed my

Re: Suggestions

2004-12-04 Thread Rodrigo de Salvo Braz
On Sat, 4 Dec 2004, Larry Hall wrote: > At 06:43 PM 12/3/2004, you wrote: > >Is there some more specific place in which to give suggestions or feedback > >about the Cygwin pages? > Sure. Here. :-) Ok, just making sure, thanks. I would like to suggest that the words "Keep", "Prev", "Curr" and "E

User name with spaces and Cygwin web site suggestion

2004-12-04 Thread Rodrigo de Salvo Braz
Hi, I had a Windows XP user account whose name had spaces. The Cygwin web site says that you should change your account's user name to something without spaces and, if Cygwin is already installed, re-run mkpasswd. Even before I installed Cygwin, I changed my user name, but this did not solve the p

Re: ssl on ssmtp

2004-12-04 Thread Robert R Schneck-McConnell
Two general points: (1) Don't e-mail cygwin package maintainers directly; use the mailing list. Some maintainers don't like private e-mail, and it helps to have things in the archive. (2) Read the package README files in /usr/share/doc/Cygwin/. On Fri, 3 Dec 2004, Reinhold May wrote: >I've be

Re: Suggestions

2004-12-04 Thread Larry Hall
At 06:43 PM 12/3/2004, you wrote: >Hi, > >Is there some more specific place in which to give suggestions or feedback >about the Cygwin pages? Sure. Here. :-) See for more details. -- Larry Hall http://www.rfk.com RFK Partners, Inc.

Re: Environment variables & system privilages

2004-12-04 Thread Igor Pechtchanski
On Sat, 4 Dec 2004, Jason Pearce wrote: > I have two seemingly simple questions that I just can't find the answers > to. Any assistance would be appreciated > > 1. What's the "right" way to add add environment variables into the user and > system maps? > Currently I am using regtool to manipulate

Re: sed: altered results in bash and cmd

2004-12-04 Thread Christopher Faylor
On Sat, Dec 04, 2004 at 03:04:52PM +0100, Jan Schormann wrote: >> C:\>E:\cygwin\bin\echo.exe '/^ .*$/d' >> / .*$/d > >>I'm not really sure but I think cmd doesn't treat single quotes as >>quoting characters - at least not in the way bash does. > >That's true. In addition, the '^' in cmd is an esca

RE: sed: altered results in bash and cmd

2004-12-04 Thread Jan Schormann
Hi, > C:\>E:\cygwin\bin\echo.exe '/^ .*$/d' > / .*$/d > I'm not really sure but I think cmd doesn't treat single quotes as > quoting characters - at least not in the way bash does. That's true. In addition, the '^' in cmd is an escape character, like the backslash in sh. Search for "string liter

Re: sed: altered results in bash and cmd

2004-12-04 Thread Brian Dessent
Markus Schönhaber wrote: > The difference in behaviour you are seeing results from the difference > in the way cmd and bash interpret command lines and pass the resulting > arguments to the specified commands. You can read the specifics of how cmd.exe handles quoting at

Environment variables & system privilages

2004-12-04 Thread Jason Pearce
I have two seemingly simple questions that I just can't find the answers to. Any assistance would be appreciated 1. What's the "right" way to add add environment variables into the user and system maps? Currently I am using regtool to manipulate the registry. For instance to set an environment

Re: sed: altered results in bash and cmd

2004-12-04 Thread Markus Schönhaber
fergus wrote: To delete all lines beginning with a in a text file, this command (a) seems correctly composed and (b) works: sed '/^ .*$/d' filename but if I use it in a cmd window, the result is that all lines _containing_ a space are deleted, not just those beginning with a space. In gene

sed: altered results in bash and cmd

2004-12-04 Thread fergus
To delete all lines beginning with a in a text file, this command (a) seems correctly composed and (b) works: sed '/^ .*$/d' filename but if I use it in a cmd window, the result is that all lines _containing_ a space are deleted, not just those beginning with a space. In general, and as