Re: getopt: ugly linker messages

2003-09-18 Thread Corinna Vinschen
On Thu, Sep 18, 2003 at 11:48:00PM -0400, Charles Wilson wrote: > >On Thu, Sep 18, 2003 at 12:53:22PM -0700, Bryan Higgins wrote: > >>Info: resolving _opterr by linking to __imp__opterr (auto-import) > > In general, these 'resolving blah by linking to __imp_blah' messages can > be suppressed by u

Re: ls --color (strange display)

2003-09-18 Thread Larry Hall
At 01:30 AM 9/19/2003, Philippe Bastiani you wrote: >Hi, > >> My WAG is that with --color, ls is opening files to look at the first >> few bytes in an effort to determine what type of file it is. You do not >> have permissions to open C:/hiberfil.sys nor c:/pagefile.sys so it fails. > > >Yes, these

Re: ls --color (strange display)

2003-09-18 Thread Philippe Bastiani
Hi, > My WAG is that with --color, ls is opening files to look at the first > few bytes in an effort to determine what type of file it is. You do not > have permissions to open C:/hiberfil.sys nor c:/pagefile.sys so it fails. Yes, these 2 files are unreadable! But, IMHO, 'ls' should not fails, a

Re: objdump : inaccurate demangling for foo(char* const)

2003-09-18 Thread Alex Vinokur
"Alex Vinokur" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > == > Windows 2000 Professional > CYGWIN_NT-5.0 1.5.4(0.94/3/2) > GNU gcc version 3.2 20020927 (prerelease) > GNU objdump 2.14.90 20030901 > =

Re: automake & libtool source package build script errors

2003-09-18 Thread Charles Wilson
Doru Carastan wrote: I have found a couple of source packages with pkgName-pkgVersion-pkgRelease.sh scripts sensitive to the spaces that one might have in the system DOS PATH. The scripts fail when the PATH settings are saved/restored. The affected packages are at least the following: automak

Re: getopt: ugly linker messages

2003-09-18 Thread Charles Wilson
Christopher Faylor wrote: On Thu, Sep 18, 2003 at 12:53:22PM -0700, Bryan Higgins wrote: How can I suppress the linker messages Info: resolving _opterr by linking to __imp__opterr (auto-import) Info: resolving _optarg by linking to __imp__optarg (auto-import) Info: resolving _optopt by linking to

objdump : inaccurate demangling for foo(char* const)

2003-09-18 Thread Alex Vinokur
== Windows 2000 Professional CYGWIN_NT-5.0 1.5.4(0.94/3/2) GNU gcc version 3.2 20020927 (prerelease) GNU objdump 2.14.90 20030901 == It seems that objdump inaccurately demangles foo(char* const). Low-level symbol na

Re: Why not which 2.16 instead of 1.5?

2003-09-18 Thread Yaakov Selkowitz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Corinna Vinschen wrote: > The reason is that this which is my own implementation and the one > I contributed right from the beginning. My apologies, it was not my intent to step on anyone's toes. I was simply trying to ascertain if there was somethi

Re: Current OpenJade and DocBook SGML status

2003-09-18 Thread Joshua Daniel Franklin
> Mensaje citado de Joshua Daniel Franklin el 15/09/2003 22:38: > > A while ago I put a temporary mirror with the packages formerly at > > toomanysecrets.com; to use, add http://ns1.iocc.com/~joshua/cygwin/docbook > > to your mirrors in setup.exe (or to /etc/setup/last-mirror) and look for > > the

automake & libtool source package build script errors

2003-09-18 Thread Doru Carastan
Hello, I have found a couple of source packages with pkgName-pkgVersion-pkgRelease.sh scripts sensitive to the spaces that one might have in the system DOS PATH. The scripts fail when the PATH settings are saved/restored. The affected packages are at least the following: automake-1.7.5a autom

Re: Misleading error message in setup

2003-09-18 Thread luke . kendall
On 18 Sep, Robert Collins wrote: > > E.g. we have a local mirror on our intranet: > > http://web/u/mirror/cygwin/ and the user added > > " http://web/u/mirror/cygwin/"; and got an error complaining about not > > being able to find the file /u/mirror/cygwin/setup.tar.bz2. > > Right, and

Re: getopt: ugly linker messages

2003-09-18 Thread Rolf Campbell
Bryan Higgins wrote: Christopher Faylor wrote: You can use unistd.h if you want. If you knew this already why were you asking the question? From the gnu getopt(3) man page (mysteriously missing in cygwin): #include int getopt(int argc, char * const argv[], co

[ANNOUNCEMENT] New package: setsid-0.0-3

2003-09-18 Thread Corinna Vinschen
This new package contains a tiny but handy tool called `setsid'. It's the command line version of the system call setsid(2) and is also available on a bunch of Linux distros. Basically it allows to call an application, say `sleep', like this: setsid sleep 10 `setsid' forks and detaches from th

[ANNOUNCEMENT] new package: clisp-2.31-2

2003-09-18 Thread Sam Steingold
CLISP is an ANSI Common Lisp implementation. Common Lisp is a high-level, general-purpose programming language. CLISP is a new cygwin package (even though it has been running under cygwin for years). 2.31 is a major recent release, with many bugs fixed and new features implemented: User visible

RE: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Hannu E K Nevalainen \(garbage mail\)
> From: Christopher Faylor > On Thu, Sep 18, 2003 at 04:18:49PM +0200, Hannu E K Nevalainen > (garbage mail) wrote: > >> From: Christopher Faylor > > > >> On Thu, Sep 18, 2003 at 12:21:56AM +0200, Hannu E K Nevalainen > >> (garbage mail) wrote: > >> >You missed the point here; > >> > >> Nope. > >

RE: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Hannu E K Nevalainen \(garbage mail\)
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf > Of Christopher Faylor > On Thu, Sep 18, 2003 at 11:09:50AM -0400, Igor Pechtchanski wrote: > >On Thu, 18 Sep 2003, Christopher Faylor wrote: > > > >> On Thu, Sep 18, 2003 at 04:18:49PM +0200, Hannu E K Nevalainen > (garbage mail) wrote:

Re: getopt: ugly linker messages

2003-09-18 Thread Bryan Higgins
Christopher Faylor wrote: >You can use unistd.h if you want. If you knew this already why were you >asking the question? >From the gnu getopt(3) man page (mysteriously missing in cygwin): #include int getopt(int argc, char * const argv[], const char *optstring)

Re: getopt: ugly linker messages

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 01:08:14PM -0700, Bryan Higgins wrote: >On Thu, 18 Sep 2003 15:56:07 -0400, Christopher Faylor wrote: >>On Thu, Sep 18, 2003 at 12:53:22PM -0700, Bryan Higgins wrote: >>>How can I suppress the linker messages >>> >>>Info: resolving _opterr by linking to __imp__opterr (auto-i

Re: getopt: ugly linker messages

2003-09-18 Thread Bryan Higgins
On Thu, 18 Sep 2003 15:56:07 -0400, Christopher Faylor wrote: >On Thu, Sep 18, 2003 at 12:53:22PM -0700, Bryan Higgins wrote: >>How can I suppress the linker messages >> >>Info: resolving _opterr by linking to __imp__opterr (auto-import) >>Info: resolving _optarg by linking to __imp__optarg (auto-

Re: getopt(3) man page missing

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 12:57:23PM -0700, Bryan Higgins wrote: >getopt(3) (referred to in getopt(1), by the way) seems to be missing from the >man pages. There is no getopt.3 man page. getopt(1) is wrong. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: h

getopt(3) man page missing

2003-09-18 Thread Bryan Higgins
getopt(3) (referred to in getopt(1), by the way) seems to be missing from the man pages. Bryan Higgins, Albany, California -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/doc

Re: getopt: ugly linker messages

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 12:53:22PM -0700, Bryan Higgins wrote: >How can I suppress the linker messages > >Info: resolving _opterr by linking to __imp__opterr (auto-import) >Info: resolving _optarg by linking to __imp__optarg (auto-import) >Info: resolving _optopt by linking to __imp__optopt (auto-i

getopt: ugly linker messages

2003-09-18 Thread Bryan Higgins
How can I suppress the linker messages Info: resolving _opterr by linking to __imp__opterr (auto-import) Info: resolving _optarg by linking to __imp__optarg (auto-import) Info: resolving _optopt by linking to __imp__optopt (auto-import) Info: resolving _optind by linking to __imp__optind (auto-imp

Lastest gdb aborts with stack dump

2003-09-18 Thread Bryan Higgins
The latest gdb aborts with a stack dump whenever I use the "finish" command. I've reverted to the previous version, which is fine. Bryan Higgins, Albany, California -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Do

Re: flushinp on /dev/ptmx

2003-09-18 Thread Corinna Vinschen
On Mon, Sep 15, 2003 at 11:39:16PM +0900, Hiroshi Sainohira wrote: > Does the pseudo terminal of cygwin( /dev/ptmx ) support > flushing input buffer? Not so far. I had a look into that and implemented flushing input buffers on pseudo ttys. Please give it a try. It will be available in the next

Re: ls --color (strange display)

2003-09-18 Thread Andrew DeFaria
Philippe Bastiani wrote: Hi, When i had the --color option to the 'ls c:' command line, i obtain the 2 followings lines: ls: c:/hiberfil.sys: No such file or directory ls: c:/pagefile.sys: No such file or directory Note: c:/hiberfil.sys & c:/pagefile.sys are 2 existing files... displayed when i r

Re: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 11:09:50AM -0400, Igor Pechtchanski wrote: >On Thu, 18 Sep 2003, Christopher Faylor wrote: > >> On Thu, Sep 18, 2003 at 04:18:49PM +0200, Hannu E K Nevalainen (garbage mail) wrote: >> >> From: Christopher Faylor >> > >> >> On Thu, Sep 18, 2003 at 12:21:56AM +0200, Hannu E K

ls --color (strange display)

2003-09-18 Thread Philippe Bastiani
Hi, When i had the --color option to the 'ls c:' command line, i obtain the 2 followings lines: ls: c:/hiberfil.sys: No such file or directory ls: c:/pagefile.sys: No such file or directory Note: c:/hiberfil.sys & c:/pagefile.sys are 2 existing files... displayed when i remove this option! a+ --

Re: How does setup.exe cleanup?

2003-09-18 Thread Igor Pechtchanski
On Thu, 18 Sep 2003 [EMAIL PROTECTED] wrote: > Hi, > > I was just wondering, does setup.exe perform any cleaning up of old > downloaded packages from the local package cache, and if so how? It doesn't. Search the list archives for "clean_setup.pl". > Also, can I assume that any package file tha

How does setup.exe cleanup?

2003-09-18 Thread caj
Hi, I was just wondering, does setup.exe perform any cleaning up of old downloaded packages from the local package cache, and if so how? Also, can I assume that any package file that is on a server will never be changed, or are sometimes packages updated without changing the name? (even if it is

Re: Pine 4.58 Cygwin issue

2003-09-18 Thread Eduardo Chappa
[ this message was Bcc'd to the pine-info list ] *** Victor Stepanov ([EMAIL PROTECTED]) wrote in the pine-info list today: :) I'm experienced strange behavior of Pine 4.58 under Cygwin environment. :) Some of fields on index screen is missing... Screenshot attached. Also :) message display is n

Re: Utility to dereference Windows shortcuts?

2003-09-18 Thread Rob S.i.k.l.o.s.
> > I understand that Windows shortcuts and symlinks are different and the > > reasons why they are different. However, I want to be able to process > > files pointed to by Windows shortcuts using Cygwin utilities. In order > > to be able to do this, I need a utility that will take a Windows > > sh

Re: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Igor Pechtchanski
On Thu, 18 Sep 2003, Christopher Faylor wrote: > On Thu, Sep 18, 2003 at 04:18:49PM +0200, Hannu E K Nevalainen (garbage mail) wrote: > >> From: Christopher Faylor > > > >> On Thu, Sep 18, 2003 at 12:21:56AM +0200, Hannu E K Nevalainen > >> (garbage mail) wrote: > >> >You missed the point here; >

RE: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Jeff Russell
Christopher Faylor wrote: > > Also try using a large buffer with strace: > > strace -b 100 -o wish.strace bash -c wish84 > > since the large buffer sometimes helps unmask problems which were "fixed" > by the slowdown incurred by running strace. > Same hang is observed as the regular ol' "s

RE: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Jeff Russell
> > This validates my WAG somewhat. Does "strace -o wish.strace bash -c > wish84" reproduce the hang? The reason is that, IIRC, strace uses Windows > exec mechanisms, rather than Cygwin's, so you need to force Cygwin's exec > by running bash first. I get it... "strace -o wish.strace -w bash -c /b

Re: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 04:18:49PM +0200, Hannu E K Nevalainen (garbage mail) wrote: >> From: Christopher Faylor > >> On Thu, Sep 18, 2003 at 12:21:56AM +0200, Hannu E K Nevalainen >> (garbage mail) wrote: >> >You missed the point here; >> >> Nope. > > Rigth ;-) I claim the right to disagree ;-) >

Re: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Christopher Faylor
On Thu, Sep 18, 2003 at 10:43:53AM -0400, Igor Pechtchanski wrote: >On Thu, 18 Sep 2003, Jeff Russell wrote: > >> Igor Pechtchanski wrote: >> > >> > Can you reproduce the hang by running 'bash -c wish84'? How about 'bash >> > --login -i -c wish84'? If so, the problem might be triggered by the >>

RE: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Igor Pechtchanski
On Thu, 18 Sep 2003, Jeff Russell wrote: > Igor Pechtchanski wrote: > > > > Can you reproduce the hang by running 'bash -c wish84'? How about 'bash > > --login -i -c wish84'? If so, the problem might be triggered by the > > presence of bash. > > > The following attempts produce the same hanging

RE: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Jeff Russell
Igor Pechtchanski wrote: > > Can you reproduce the hang by running 'bash -c wish84'? How about 'bash > --login -i -c wish84'? If so, the problem might be triggered by the > presence of bash. > The following attempts produce the same hanging behavior: "bash -c /bin/wish84" from a DOS command she

Re: SSHD, Cygwin and Windows 2003 : continued with user rights

2003-09-18 Thread Karl M
Hi All... Quite a while ago (12 to 18 months?) before Cygwin OpenSSH could impersonate a user, there was some experimental activity in OpenSSH to allow multiple authentication methods. There was a patch to add this on the OpenSSH archives. I experimented with this to require public key followe

Re: SSHD, Cygwin and Windows 2003 : continued with user rights

2003-09-18 Thread Olivier ALLART
Thanks for the tip. I decided to get rid of this stupid iisreset and use instead a command like net start/stop msftpsc/w3svc works fine whith whatever administrator Olivier Hannu E K Nevalainen (garbage mail) wrote: From: Olivier ALLART Next I guess I'll go look for some tip on how to un

RE: SSHD, Cygwin and Windows 2003 : continued with user rights

2003-09-18 Thread Hannu E K Nevalainen \(garbage mail\)
> From: Olivier ALLART > Next I guess I'll go look for some tip on how to unlock iisreset so it > can be used by whatever admin and not just local .. Sorry to jump in! Just an idea; How about runas, is it available in W2K+3? (I'm on W2K) /Hannu E K Nevalainen, B.Sc. EE - 59?16.37'N, 17?12.60'E

RE: Suggestion... date format (ISO8601:2000)

2003-09-18 Thread Hannu E K Nevalainen \(garbage mail\)
> From: Christopher Faylor > On Thu, Sep 18, 2003 at 12:21:56AM +0200, Hannu E K Nevalainen > (garbage mail) wrote: > >You missed the point here; > > Nope. Rigth ;-) I claim the right to disagree ;-) Do you mind giving me some more words on _why_ you don't like the idea? WRT "PTC", do you min

Re: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Igor Pechtchanski
On Thu, 18 Sep 2003, Jeff Russell wrote: > Andrew DeFaria asked: > > > > The Tcl/Tk wish shell (wish84.exe) does not properly start/execute > > > under bash. When launched, the Tk canvas window appears, but the > > > command prompt window never opens. > > >... > > > > > > Any ideas? > > > > Are yo

Re: setup v2.340.2.5: inconsistent error reporting

2003-09-18 Thread Patrick Eisenacher
Let me see... Install from Internet and Direct Connection in both cases. HTH, Patrick Robert Collins schrieb: On Thu, 2003-09-18 at 23:05, Patrick Eisenacher wrote: Trying to update my packages and not having enough space on my harddisk got me confused yesterday. Downloading from a mirror via

Re: setup v2.340.2.5: inconsistent error reporting

2003-09-18 Thread Robert Collins
On Thu, 2003-09-18 at 23:05, Patrick Eisenacher wrote: > Trying to update my packages and not having enough space on my harddisk > got me confused yesterday. > > Downloading from a mirror via http resulted in "download incomplete. try > again?", whereas downloading from another mirror via ftp fi

Re: Tcl/Tk wish shell execution problem under bash

2003-09-18 Thread Jeff Russell
Andrew DeFaria asked: > > The Tcl/Tk wish shell (wish84.exe) does not properly start/execute under bash. When > > launched, the Tk canvas window appears, but the command prompt window never opens. > >... > > > > Any ideas? > > Are you running bash under rxvt? No, using the standard bash launched w

setup v2.340.2.5: inconsistent error reporting

2003-09-18 Thread Patrick Eisenacher
Trying to update my packages and not having enough space on my harddisk got me confused yesterday. Downloading from a mirror via http resulted in "download incomplete. try again?", whereas downloading from another mirror via ftp finally revealed what really was the problem. I thought, I bring

Problems with Squid

2003-09-18 Thread sdavy
Hello all, I'd would like to build and run Squid on a cygwin box. I made my first tests a few weeks ago and could compile and run Squid 2.5 STABLE3 with the cygwin1.dll 1.3.20 on a NT machine. I also have an icap patch on squid source tree. I recently upgraded my cygwin and then recover a new vers

CONT: Problem with IMAP

2003-09-18 Thread SerpentMage (Christian Gross)
For verification purposes I removed Cygwin, and then did a fresh reinstall using UNIX file encodings. I made sure that all of the binmode settings. Then to test I created a message and saved in the drafts folder (Using Outlook Express). The saving went fine, but the problem was the reading.

Re: MYSQL + CYGWIN

2003-09-18 Thread Marcelo Rezende Módolo
Larry Hall wrote: At 10:20 PM 9/17/2003, Marcelo Rezende Módolo you wrote: Hi, I am trying to compile mysql (mysql-4.0.15) with cygwin, I run ./configure, and make but I receive this error: ... item_timefunc.o(.text+0x2ca6):item_timefunc.cc: undefined reference to `__static_initialization_and

Re: Misleading error message in setup

2003-09-18 Thread Robert Collins
On Thu, 2003-09-18 at 12:48, [EMAIL PROTECTED] wrote: > Here's a small oddity. If you make a mistake in cut and paste when > adding a new download site (easy to accidentally include an invisible > leading or trailing space, for example, in netscape), then instead of > complaining that the URL is w

Re: Perl 5.8.0-5 cygwin and threads

2003-09-18 Thread Gerrit P. Haase
Luc schrieb: > Where can I get this version, the last one setup.exe can see is 5.8.0-5 ! Activate the radio button 'Exp' which displays all the test versions in the setup.exe chooser. But be careful since currently there are many test versions older than the current versions available. I sugge

Copying an executable from network drive without .exe extension f ails.

2003-09-18 Thread Steve Fairbairn
Friends, <-- Now there's the start of a spam mail if ever I saw one ;) I've searched archives and found a couple of potentially related messages, but none I've found seem to quite match the behaviour I'm seeing. This appears to be new behaviour in ?1.5.x? that worked as I expected it to when st

CONT: Problem with IMAP

2003-09-18 Thread SerpentMage (Christian Gross)
Seeing that the old version worked and the new version did not, I rolled back to the old version of IMAP. lo and behold, it seems to get the same errors. However, I rolled back to version d-2. However, when compiling from d1 I get the same error. Now I am beginning to wonder, could it be tha

RE: Perl 5.8.0-5 cygwin and threads

2003-09-18 Thread Ferran, Luc
Thanks Gerrit, Where can I get this version, the last one setup.exe can see is 5.8.0-5 ! Regards, Luc -Original Message- From: Gerrit P. Haase [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 11:04 PM To: Ferran, Luc Cc: '[EMAIL PROTECTED]' Subject: Re: Perl 5.8.0-5 cygwin a

Problem with IMAP

2003-09-18 Thread SerpentMage (Christian Gross)
I was going through the mailing list and see if an error was already mentioned. Namely the error is with the UW-IMAP: server crashing header size inconsistent. In the mailing list it was said that there was a problem with UNIX and DOS install. However, now having tested two different installa

Re: Why not which 2.16 instead of 1.5?

2003-09-18 Thread Corinna Vinschen
On Wed, Sep 17, 2003 at 11:41:39PM -0400, Yaakov Selkowitz wrote: > Corinna Vinschen wrote: > | the which package shipped in the Cygwin distro is not GNU which. > | Therefore the version number do not correspond. > > Is there a particular reason why Cygwin _doesn't_ use GNU which? Are > there iss

Re: Manipulating user privileges (was Re: SSHD, Cygwin and Windows 2003)

2003-09-18 Thread Corinna Vinschen
On Thu, Sep 18, 2003 at 01:09:58AM +0100, Chris Rodgers wrote: > > Btw., the ssh-host-config already creates the sshd account, that's easy > > from the command line. But creating a useful sshdproc account as above > > requires to be able to set user privileges like the famous "Create a > > token o