public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Problems using 'mkdirhier'
@ 2006-06-21 15:26 Angelo Graziosi
  2006-06-21 16:55 ` Igor Peshansky
  0 siblings, 1 reply; 18+ messages in thread
From: Angelo Graziosi @ 2006-06-21 15:26 UTC (permalink / raw)
  To: cygwin


Trying to build an application downloaded from the web, the make fails
using 'mkdirhier'. I have reproduced this with the following example:

As Administrator:
-------------------------------------
$ cd
$ mkdirhier /home/Administrator/foo1/foo2/lib
mkdir: cannot create directory `//home': No such host or network path
mkdir: cannot create directory `//home/Administrator': Permission denied
mkdir: cannot create directory `//home/Administrator/foo1': Permission
denied
mkdir: cannot create directory
`//home/Administrator/foo1/foo2': Permission denied
mkdir: cannot create directory
`//home/Administrator/foo1/foo2/lib': Permission denied

-------------------------------------

The system is W2K SP4 with ALL CYGWIN installed.

I am using the snapshot : 1.5.20s(0.155/4/2) 20060614 16:21:31

In cygwin am using the following test packages:


   coreutils-5.96-1
   emacs-21.3.50-2.*
   findutils-4.3.0-1
   lesstiff-0.94.4-1
   tar-1.15.90-1
   xorg-6.8.99.901-1.*


Cheers,

    Angelo.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Problems using 'mkdirhier'
  2006-06-21 15:26 Problems using 'mkdirhier' Angelo Graziosi
@ 2006-06-21 16:55 ` Igor Peshansky
  2006-06-21 21:02   ` David Arnstein
                     ` (6 more replies)
  0 siblings, 7 replies; 18+ messages in thread
From: Igor Peshansky @ 2006-06-21 16:55 UTC (permalink / raw)
  To: Angelo Graziosi; +Cc: cygwin

On Wed, 21 Jun 2006, Angelo Graziosi wrote:

> Trying to build an application downloaded from the web, the make fails
> using 'mkdirhier'. I have reproduced this with the following example:
>
> As Administrator:
> -------------------------------------
> $ cd
> $ mkdirhier /home/Administrator/foo1/foo2/lib
> mkdir: cannot create directory `//home': No such host or network path
> mkdir: cannot create directory `//home/Administrator': Permission denied
> mkdir: cannot create directory `//home/Administrator/foo1': Permission denied
> mkdir: cannot create directory `//home/Administrator/foo1/foo2': Permission denied
> mkdir: cannot create directory `//home/Administrator/foo1/foo2/lib': Permission denied
> -------------------------------------
>
> The system is W2K SP4 with ALL CYGWIN installed.
> I am using the snapshot : 1.5.20s(0.155/4/2) 20060614 16:21:31
> In cygwin am using the following test packages:
>
>    coreutils-5.96-1
>    emacs-21.3.50-2.*
>    findutils-4.3.0-1
>    lesstiff-0.94.4-1
>    tar-1.15.90-1
>    xorg-6.8.99.901-1.*

Most of the above is irrelevant.  This sounds like a bug in mkdirhier, and
I also seem to recall that it was mentioned on the Cygwin lists before,
with proposed fixes.  Apparently, the fixes haven't been incorporated in
6.8.99.901-1.

Googling for "mkdirhier site:cygwin.com inurl:ml/cygwin" should turn up
the fixes you need.
HTH,
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_	    pechtcha@cs.nyu.edu | igor@watson.ibm.com
ZZZzz /,`.-'`'    -.  ;-;;,_		Igor Peshansky, Ph.D. (name changed!)
     |,4-  ) )-,_. ,\ (  `'-'		old name: Igor Pechtchanski
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte."
"But no -- you are no fool; you call yourself a fool, there's proof enough in
that!" -- Rostand, "Cyrano de Bergerac"

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Problems using 'mkdirhier'
  2006-06-21 16:55 ` Igor Peshansky
@ 2006-06-21 21:02   ` David Arnstein
  2006-06-22  2:27   ` Angelo Graziosi
                     ` (5 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: David Arnstein @ 2006-06-21 21:02 UTC (permalink / raw)
  To: cygwin

On Wed, Jun 21, 2006 at 12:05:52PM -0400, Igor Peshansky wrote:
> Most of the above is irrelevant.  This sounds like a bug in mkdirhier, and
> I also seem to recall that it was mentioned on the Cygwin lists before,
> with proposed fixes.  Apparently, the fixes haven't been incorporated in
> 6.8.99.901-1.

On my system, mkdirhier is just a shell script. The program "mkdir"
has an option "-p" that seems to do exactly what mkdirhier does.
Perhaps mkdirhier needs to be retired.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Problems using 'mkdirhier'
  2006-06-21 16:55 ` Igor Peshansky
  2006-06-21 21:02   ` David Arnstein
@ 2006-06-22  2:27   ` Angelo Graziosi
  2006-07-13 16:14   ` Imagemagick / GraphicsMagick on a brand new install Angelo Graziosi
                     ` (4 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Angelo Graziosi @ 2006-06-22  2:27 UTC (permalink / raw)
  To: cygwin


On Wed, 21 Jun 2006, Igor Peshansky wrote:

> On Wed, 21 Jun 2006, Angelo Graziosi wrote:
> 
> > Trying to build an application downloaded from the web, the make fails
> > using 'mkdirhier'. I have reproduced this with the following example:
> >
> > As Administrator:
> > -------------------------------------
> > $ cd
> > $ mkdirhier /home/Administrator/foo1/foo2/lib
> > mkdir: cannot create directory `//home': No such host or network path
> > mkdir: cannot create directory `//home/Administrator': Permission denied
> > mkdir: cannot create directory `//home/Administrator/foo1': Permission denied
> > mkdir: cannot create directory `//home/Administrator/foo1/foo2': Permission denied
> > mkdir: cannot create directory `//home/Administrator/foo1/foo2/lib': Permission denied
> > -------------------------------------
> >
> 
> .....
>
> Googling for "mkdirhier site:cygwin.com inurl:ml/cygwin" should turn up
> the fixes you need.

Applying the patch reported in
http://www.cygwin.com/ml/cygwin-xfree/2003-06/msg00374.html seems to solve
the problem!

Thanks,
   
   Angelo.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Imagemagick / GraphicsMagick on a brand new install
  2006-06-21 16:55 ` Igor Peshansky
  2006-06-21 21:02   ` David Arnstein
  2006-06-22  2:27   ` Angelo Graziosi
@ 2006-07-13 16:14   ` Angelo Graziosi
  2006-07-14  9:42   ` 1.5.21 release imminent - please test latest snapshot Angelo Graziosi
                     ` (3 subsequent siblings)
  6 siblings, 0 replies; 18+ messages in thread
From: Angelo Graziosi @ 2006-07-13 16:14 UTC (permalink / raw)
  To: cygwin



Peter Pimley wrote:

> If I run ImageMagick's convert, mogrify or identify tools (and possibly
> others, I've not tried), they silently fail


As was observed (http://cygwin.com/ml/cygwin-xfree/2006-05/msg00034.html),
this seems to depend on new xorg*-6.8.99.901-1.

Perhaps you can use Netpbm, instead.


Cheers,

   Angelo.



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-06-21 16:55 ` Igor Peshansky
                     ` (2 preceding siblings ...)
  2006-07-13 16:14   ` Imagemagick / GraphicsMagick on a brand new install Angelo Graziosi
@ 2006-07-14  9:42   ` Angelo Graziosi
  2006-07-14  9:45     ` Corinna Vinschen
  2006-07-14 10:28   ` Angelo Graziosi
                     ` (2 subsequent siblings)
  6 siblings, 1 reply; 18+ messages in thread
From: Angelo Graziosi @ 2006-07-14  9:42 UTC (permalink / raw)
  To: cygwin



Christopher Faylor wrote:

> I've just created a snapshot which may, barring any conflagrations, be
> very close to what will show up as 1.5.21.  If there are no major
> regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.


Which Monday ?


Cheers,

   Angelo.



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-14  9:42   ` 1.5.21 release imminent - please test latest snapshot Angelo Graziosi
@ 2006-07-14  9:45     ` Corinna Vinschen
  2006-07-14 10:16       ` Corinna Vinschen
  0 siblings, 1 reply; 18+ messages in thread
From: Corinna Vinschen @ 2006-07-14  9:45 UTC (permalink / raw)
  To: cygwin

On Jul 14 11:32, Angelo Graziosi wrote:
> 
> 
> Christopher Faylor wrote:
> 
> > I've just created a snapshot which may, barring any conflagrations, be
> > very close to what will show up as 1.5.21.  If there are no major
> > regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.
> 
> 
> Which Monday ?

Well, Monday.  Isn't that explicit enough?  Do you also need the year?


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-14  9:45     ` Corinna Vinschen
@ 2006-07-14 10:16       ` Corinna Vinschen
  2006-07-14 15:55         ` Larry Hall (Cygwin)
  0 siblings, 1 reply; 18+ messages in thread
From: Corinna Vinschen @ 2006-07-14 10:16 UTC (permalink / raw)
  To: cygwin

On Jul 14 11:42, Corinna Vinschen wrote:
> On Jul 14 11:32, Angelo Graziosi wrote:
> > 
> > 
> > Christopher Faylor wrote:
> > 
> > > I've just created a snapshot which may, barring any conflagrations, be
> > > very close to what will show up as 1.5.21.  If there are no major
> > > regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.
> > 
> > 
> > Which Monday ?
> 
> Well, Monday.  Isn't that explicit enough?  Do you also need the year?


Just in case somebody's missing the smily:  :)


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-06-21 16:55 ` Igor Peshansky
                     ` (3 preceding siblings ...)
  2006-07-14  9:42   ` 1.5.21 release imminent - please test latest snapshot Angelo Graziosi
@ 2006-07-14 10:28   ` Angelo Graziosi
  2006-07-14 12:31     ` Corinna Vinschen
  2006-07-14 14:06     ` Christopher Faylor
  2006-07-17 13:13   ` Failure to run image magic in the latest release Angelo Graziosi
  2006-07-17 14:10   ` Updated [experimental]: tar-1.15.90-1 Angelo Graziosi
  6 siblings, 2 replies; 18+ messages in thread
From: Angelo Graziosi @ 2006-07-14 10:28 UTC (permalink / raw)
  To: cygwin


Corinna Vinschen wrote:

> Well, Monday.  Isn't that explicit enough?  Do you also need the year?


The original post (http://cygwin.com/ml/cygwin/2006-07/msg00188.html) was
dated 20060707.

Perhaps it would be sufficient a 1.5.20-2 that fix this
http://cygwin.com/ml/cygwin/2006-07/msg00145.html.


In any case thanks a lot,

   Angelo.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-14 10:28   ` Angelo Graziosi
@ 2006-07-14 12:31     ` Corinna Vinschen
  2006-07-14 14:06     ` Christopher Faylor
  1 sibling, 0 replies; 18+ messages in thread
From: Corinna Vinschen @ 2006-07-14 12:31 UTC (permalink / raw)
  To: cygwin

On Jul 14 12:16, Angelo Graziosi wrote:
> 
> Corinna Vinschen wrote:
> 
> > Well, Monday.  Isn't that explicit enough?  Do you also need the year?
> 
> 
> The original post (http://cygwin.com/ml/cygwin/2006-07/msg00188.html) was
> dated 20060707.
> 
> Perhaps it would be sufficient a 1.5.20-2 that fix this
> http://cygwin.com/ml/cygwin/2006-07/msg00145.html.

Actually, we're trying to get the DLL out as soon as possible.  But you
know what happens.  Every time we prepare a snapshot and really want to
get it done, somebody jumps up from behind a shrub and cries "Hey, I have
a totally new bug here!".  So, we're just not quite finshed.  Stay tuned.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-14 10:28   ` Angelo Graziosi
  2006-07-14 12:31     ` Corinna Vinschen
@ 2006-07-14 14:06     ` Christopher Faylor
  1 sibling, 0 replies; 18+ messages in thread
From: Christopher Faylor @ 2006-07-14 14:06 UTC (permalink / raw)
  To: cygwin

On Fri, Jul 14, 2006 at 12:16:12PM +0200, Angelo Graziosi wrote:
>Corinna Vinschen wrote:
>
>> Well, Monday.  Isn't that explicit enough?  Do you also need the year?
>
>
>The original post (http://cygwin.com/ml/cygwin/2006-07/msg00188.html) was
>dated 20060707.
>
>Perhaps it would be sufficient a 1.5.20-2 that fix this
>http://cygwin.com/ml/cygwin/2006-07/msg00145.html.

Or, maybe you could just assume that if cygwin wasn't released there might
be a reason?  Did you see any actual testing of the snapshot, for instance?

cgf

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-14 10:16       ` Corinna Vinschen
@ 2006-07-14 15:55         ` Larry Hall (Cygwin)
  0 siblings, 0 replies; 18+ messages in thread
From: Larry Hall (Cygwin) @ 2006-07-14 15:55 UTC (permalink / raw)
  To: cygwin

Corinna Vinschen wrote:
> On Jul 14 11:42, Corinna Vinschen wrote:
>> On Jul 14 11:32, Angelo Graziosi wrote:
>>>
>>> Christopher Faylor wrote:
>>>
>>>> I've just created a snapshot which may, barring any conflagrations, be
>>>> very close to what will show up as 1.5.21.  If there are no major
>>>> regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.
>>>
>>> Which Monday ?
>> Well, Monday.  Isn't that explicit enough?  Do you also need the year?
> 
> 
> Just in case somebody's missing the smily:  :)

Oh, I get it.  You're just being silly.  Well, if we can be serious for a
moment, I hope when this is released that you can make the changes available
retroactively.  I mean, think of the b20 users!

-- 
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
216 Dalton Rd.                          (508) 893-9889 - FAX
Holliston, MA 01746

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Failure to run image magic in the latest release
  2006-06-21 16:55 ` Igor Peshansky
                     ` (4 preceding siblings ...)
  2006-07-14 10:28   ` Angelo Graziosi
@ 2006-07-17 13:13   ` Angelo Graziosi
  2006-07-17 14:10   ` Updated [experimental]: tar-1.15.90-1 Angelo Graziosi
  6 siblings, 0 replies; 18+ messages in thread
From: Angelo Graziosi @ 2006-07-17 13:13 UTC (permalink / raw)
  To: cygwin



Andy Rushton wrote:

> Posting this report here with a work-around that fixes it gives those
> who use ImageMagick an insight into the problem as the response from
> Mark shows. If the post was useful, it was relevant.


Thanks a lots Andy for the work-around.

I posted (to the x-cygwin list) the problem some time ago, when I using
the xorg-x11-6.8.99.901-1 package as test. The only workaround I found was
to use netpbm instead.


Cheers,

   Angelo.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Updated [experimental]: tar-1.15.90-1
  2006-06-21 16:55 ` Igor Peshansky
                     ` (5 preceding siblings ...)
  2006-07-17 13:13   ` Failure to run image magic in the latest release Angelo Graziosi
@ 2006-07-17 14:10   ` Angelo Graziosi
  2006-07-17 14:26     ` Eric Blake
  6 siblings, 1 reply; 18+ messages in thread
From: Angelo Graziosi @ 2006-07-17 14:10 UTC (permalink / raw)
  To: cygwin


According to Eric Blake :

> In other words, to use this, you MUST install a
> recent cygwin snapshot (20060329 or later), or wait for cygwin-1.5.20 to
> be released. 


Cygwin 1.5.20 is out but tar-1.15.90-1 is yet in test section.

Are there special reasons for this to happen?


Cheers,

   Angelo.


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Updated [experimental]: tar-1.15.90-1
  2006-07-17 14:10   ` Updated [experimental]: tar-1.15.90-1 Angelo Graziosi
@ 2006-07-17 14:26     ` Eric Blake
  2006-07-17 16:40       ` Christopher Faylor
  0 siblings, 1 reply; 18+ messages in thread
From: Eric Blake @ 2006-07-17 14:26 UTC (permalink / raw)
  To: cygwin

Angelo Graziosi <Angelo.Graziosi <at> roma1.infn.it> writes:
> 
> According to Eric Blake :

[Quit commandeering threads.  Because you changed the subject line of an 
unrelated thread, rather than replying to the correct email or starting a new 
thread, I had a hard time finding the thread containing your post in order to 
issue my response.]

> 
> > In other words, to use this, you MUST install a
> > recent cygwin snapshot (20060329 or later), or wait for cygwin-1.5.20 to
> > be released. 
> 
> Cygwin 1.5.20 is out but tar-1.15.90-1 is yet in test section.
> 
> Are there special reasons for this to happen?

Yes.  It is because cygwin is a volunteer project, and I have not had time to 
release tar-1.15.91 yet (yes, upstream has had a new release in the meantime).  
(I have been too busy getting coreutils-5.97, diffstat-1.42 and 1.43, m4-1.4.5, 
and xdelta-1.3.3 released; not to mention I also know that sharutils, 
findutils, and bash-completion all need updates; not to mention that bash-
3.2beta/readline-5.2beta is out, and I would like to play with that; and not to 
mention that bashdb is threatening a new upstream release this week.  About the 
only package I maintain that has not needed attention during the past month is 
cvsutils.)

If I may be permitted to make a hint - the cygwin donations page can be a great 
motivator.  If someone were to be willing to shift my focus via a donation, I 
would be willing to make their highest priority issue become my highest 
priority.  Not that I am hard up on cash (I do have a good day job, after all), 
but that it would be a better indication of where my efforts would be 
appreciated.  And this sentiment probably extends to more cygwin volunteers 
than just me.

-- 
Eric Blake
volunteer cygwin tar (and others) maintainer



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: Updated [experimental]: tar-1.15.90-1
  2006-07-17 14:26     ` Eric Blake
@ 2006-07-17 16:40       ` Christopher Faylor
  0 siblings, 0 replies; 18+ messages in thread
From: Christopher Faylor @ 2006-07-17 16:40 UTC (permalink / raw)
  To: cygwin

On Mon, Jul 17, 2006 at 02:21:09PM +0000, Eric Blake wrote:
>If I may be permitted to make a hint - the cygwin donations page can be a great 
>motivator.  If someone were to be willing to shift my focus via a donation, I 
>would be willing to make their highest priority issue become my highest 
>priority.  Not that I am hard up on cash (I do have a good day job, after all), 
>but that it would be a better indication of where my efforts would be 
>appreciated.  And this sentiment probably extends to more cygwin volunteers 
>than just me.

Yes, money is a great motivator but I wouldn't want people to think that
donating $10 with a comment that says "Please fix cron! It won't access
my network drives!" is going to have much effect.

Nevertheless, anyone who expects that they are owed anything just
because software is available to use needs a clue injection.  I'm not
referring to anyone in specific here but it does seem like the recent
climate in this list has been trending towards expectation of service
which does not match the fact that people like Eric are essentially
doing favors for anyone who uses the software they maintain.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: 1.5.21 release imminent - please test latest snapshot
  2006-07-07 16:11 1.5.21 release imminent - please test latest snapshot Christopher Faylor
@ 2006-07-08 10:38 ` Corinna Vinschen
  0 siblings, 0 replies; 18+ messages in thread
From: Corinna Vinschen @ 2006-07-08 10:38 UTC (permalink / raw)
  To: cygwin

On Jul  7 12:11, Christopher Faylor wrote:
> I've just created a snapshot which may, barring any conflagrations, be
> very close to what will show up as 1.5.21.  If there are no major
> regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.
> 
> The fixes that I can infer from the ChangeLog are:
> 
>   - block current signal while executing in a signal handler.
> 
>   - remove previously broken ability to store symlink info in extended attributes.
> 
>   - rexec rewrite
> 
>   - temporarily remove SA_RESTART functionality from blocking signals calls in
>     preparation for a 1.5.22 socket rewrite.
> 
>   - implement setmetamode handling (see linux man page for more details).
> 
>   - allow listening on an unbound INET socket.
> 
> (I'm sure Corinna will clarify some of the above or add to the list)

Only two points:

- Not only rexec, but also inet_aton, inet_addr, inet_ntoa, inet_network
  are new functions.  These are FreeBSD implementations which get us rid
  of the equal Winsock calls.

- socklen_t is a typedef now.  The socket functions using socklen_t
  are now declared with socklen_t instead of int in /usr/include/sys/socket.h.

> Please test this (or any newer) snapshot and report any regressions from
> 1.5.20 to this thread.
> 
>   http://cygwin.com/snapshots/
> 
> cgf


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

* 1.5.21 release imminent - please test latest snapshot
@ 2006-07-07 16:11 Christopher Faylor
  2006-07-08 10:38 ` Corinna Vinschen
  0 siblings, 1 reply; 18+ messages in thread
From: Christopher Faylor @ 2006-07-07 16:11 UTC (permalink / raw)
  To: cygwin

I've just created a snapshot which may, barring any conflagrations, be
very close to what will show up as 1.5.21.  If there are no major
regressions from 1.5.20, I plan on releasing cygwin 1.5.21 on Monday.

The fixes that I can infer from the ChangeLog are:

  - block current signal while executing in a signal handler.

  - remove previously broken ability to store symlink info in extended attributes.

  - rexec rewrite

  - temporarily remove SA_RESTART functionality from blocking signals calls in
    preparation for a 1.5.22 socket rewrite.

  - implement setmetamode handling (see linux man page for more details).

  - allow listening on an unbound INET socket.

(I'm sure Corinna will clarify some of the above or add to the list)

Please test this (or any newer) snapshot and report any regressions from
1.5.20 to this thread.

  http://cygwin.com/snapshots/

cgf

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2006-07-17 14:35 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-21 15:26 Problems using 'mkdirhier' Angelo Graziosi
2006-06-21 16:55 ` Igor Peshansky
2006-06-21 21:02   ` David Arnstein
2006-06-22  2:27   ` Angelo Graziosi
2006-07-13 16:14   ` Imagemagick / GraphicsMagick on a brand new install Angelo Graziosi
2006-07-14  9:42   ` 1.5.21 release imminent - please test latest snapshot Angelo Graziosi
2006-07-14  9:45     ` Corinna Vinschen
2006-07-14 10:16       ` Corinna Vinschen
2006-07-14 15:55         ` Larry Hall (Cygwin)
2006-07-14 10:28   ` Angelo Graziosi
2006-07-14 12:31     ` Corinna Vinschen
2006-07-14 14:06     ` Christopher Faylor
2006-07-17 13:13   ` Failure to run image magic in the latest release Angelo Graziosi
2006-07-17 14:10   ` Updated [experimental]: tar-1.15.90-1 Angelo Graziosi
2006-07-17 14:26     ` Eric Blake
2006-07-17 16:40       ` Christopher Faylor
2006-07-07 16:11 1.5.21 release imminent - please test latest snapshot Christopher Faylor
2006-07-08 10:38 ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).