Christopher Faylor | 1 Jun 2003 01:08
Picon
Favicon

Re: libncurses

On Sat, May 31, 2003 at 04:07:49PM -0600, David Knox wrote:
>But there is a package "ncurses: Libraries for terminal handling"  that
>given its label and description, it can easily be assumed that it really
>does contain libncurses.
>
>That's all I'm trying to say.

There are packages specifically named "libncurses[567]".  Installing them
VIA SETUP is the way to rectify the lack of library.

cgf

Elfyn McBratney | 1 Jun 2003 01:12
Picon
Favicon

[ANNOUNCE] LibXML2 (2.5.7) test packages available

I have uploaded test packages for LibXML2 version 2.5.7 to 
sources.redhat.com . The LibXML2 source and binary packages *should* be 
available on most mirrors by the beginning of next week. The source package 
does not *yet* contain a patch file; for some reason (me being tired?) 
`diff' was thinking the entire source package had changed, only the 
configury has changed, however.

Please test the library as much as possible, as I'd like to get this update 
"out there" ASAP. If you find any problems/Cygwin related bugs, please let 
me know on the list (cygwin <at> cygwin.com).

Updated packages for LibXSLT are to follow.

Elfyn

_________________________________________________________________
Find a cheaper internet access deal - choose one to suit you. 
http://www.msn.co.uk/internetaccess

Martin Gainty | 1 Jun 2003 01:26
Picon
Favicon

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

Elfyn-
Wheres the doc?
Thanks,
-Martin
----- Original Message -----
From: "Elfyn McBratney" <emcb_exposure <at> hotmail.com>
To: <cygwin <at> cygwin.com>
Sent: Saturday, May 31, 2003 7:12 PM
Subject: [ANNOUNCE] LibXML2 (2.5.7) test packages available

> I have uploaded test packages for LibXML2 version 2.5.7 to
> sources.redhat.com . The LibXML2 source and binary packages *should* be
> available on most mirrors by the beginning of next week. The source
package
> does not *yet* contain a patch file; for some reason (me being tired?)
> `diff' was thinking the entire source package had changed, only the
> configury has changed, however.
>
> Please test the library as much as possible, as I'd like to get this
update
> "out there" ASAP. If you find any problems/Cygwin related bugs, please let
> me know on the list (cygwin <at> cygwin.com).
>
> Updated packages for LibXSLT are to follow.
>
> Elfyn
>
> _________________________________________________________________
> Find a cheaper internet access deal - choose one to suit you.
> http://www.msn.co.uk/internetaccess
(Continue reading)

Elfyn McBratney | 1 Jun 2003 01:59
Picon
Favicon

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

>Elfyn-
>Wheres the doc?
>Thanks,
>-Martin

If you mean the documentation for the library, it's under 
/usr/share/doc(libxml2(-python)-2.5.7), with a Cygwin README in 
/usr/doc/Cygwin .

Elfyn

_________________________________________________________________
Sign-up for a FREE BT Broadband connection today! 
http://www.msn.co.uk/specials/btbroadband

Elfyn McBratney | 1 Jun 2003 02:03
Picon
Favicon

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

>Elfyn-
>Wheres the doc?
>Thanks,
>-Martin
>
> > If you mean the documentation for the library, it's under 
>/usr/share/doc(libxml2(-python)-2.5.7),

s%share/doc%share/doc/%

Elfyn

_________________________________________________________________
On the move? Get Hotmail on your mobile phone http://www.msn.co.uk/msnmobile

Max Bowsher | 1 Jun 2003 02:30

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

Elfyn McBratney wrote:
> I have uploaded test packages for LibXML2 version 2.5.7 to
> sources.redhat.com . The LibXML2 source and binary packages *should* be
> available on most mirrors by the beginning of next week. The source
package
> does not *yet* contain a patch file; for some reason (me being tired?)
> `diff' was thinking the entire source package had changed, only the
> configury has changed, however.
>
> Please test the library as much as possible, as I'd like to get this
update
> "out there" ASAP. If you find any problems/Cygwin related bugs, please let
> me know on the list (cygwin <at> cygwin.com).

I think you need a "curr: 2.4.23-1" in your setup.hint file.
Upset seems to have dropped the [curr] packages from setup.ini.

Max.

Alex Vinokur | 1 Jun 2003 05:31
Picon

Re: The standard library version in g++


"Martin Gainty" <mgainty <at> hotmail.com> wrote in message news:Law10-OE36QafZGEKHQ0003adc5 <at> hotmail.com...
> g++ --version

$ g++ --version
g++ (GCC) 3.2 20020927 (prerelease)
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

But I don't see here a version of the standard _library_ .

>
> Martin
> ----- Original Message -----
> From: "Alex Vinokur" <alexvn <at> connect.to>
> To: <cygwin <at> cygwin.com>
> Cc: <mingw-users <at> lists.sourceforge.net>
> Sent: Saturday, May 31, 2003 1:22 PM
> Subject: The standard library version in g++
>
>
> > How can we know what is version of the standard library of g++?
> >

--
   ==========================================
   Alex Vinokur
     mailto:alexvn <at> connect.to
     http://www.simtel.net/pub/oth/19088.html
(Continue reading)

Dave Johnson | 1 Jun 2003 07:07
Favicon

O_NONBLOCK has no effect on stdout


Setting stdout to non-blocking doesn't have an effect, calls to
write() and the like block the process until the blocking condition is
removed.

Note that the fcntl() returns success.

Running the below test program produces:

under cygwin:

$ ./test
Starting, sleeping 2 seconds, hit ctrl-s
test
return=6, errno=No error, time=3903ms

under linux and others:

$ ./test
Starting, sleeping 2 seconds, hit ctrl-s
return=-1, errno=Resource temporarily unavailable, time=0ms

I'm running:
CYGWIN_NT-5.0 yorktown 1.3.22(0.78/3/2) 2003-03-18 09:20 i686 unknown unknown Cygwin

test program:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
(Continue reading)

Elfyn McBratney | 1 Jun 2003 15:10
Picon
Favicon

Re: [ANNOUNCE] LibXML2 (2.5.7) test packages available

>I think you need a "curr: 2.4.23-1" in your setup.hint file.
>Upset seems to have dropped the [curr] packages from setup.ini.
>
>Max.

Yea, I noticed an hour after I updated the setup.hint file. Thanks for 
letting me know, though. :-)

Elfyn

_________________________________________________________________
Tired of 56k? Get a FREE BT Broadband connection 
http://www.msn.co.uk/specials/btbroadband

Sven Köhler | 1 Jun 2003 15:54
Picon

squid blocking

hi,

i've got a squid-proxy running under cygwin. there's only one squid.exe, 
so i guess squid doesn't use fork() etc. under cygwin - does it use 
fork() or thread under linux?

if my squid has to answer many http-requests that block because the 
http-server is damn slow, even requests to fast server are only answered 
  after all the slow requests have been done.

is this some kind of cygwin-bug (e.g. non-blocking socket calls that 
block under cygwin) or did i miss anything in the config?


Gmane