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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ 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; 21+ 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] 21+ messages in thread

* Re: Failure to run image magic in the latest release
  2006-07-17  5:18     ` Christopher Faylor
@ 2006-07-17 12:13       ` Andy Rushton
  0 siblings, 0 replies; 21+ messages in thread
From: Andy Rushton @ 2006-07-17 12:13 UTC (permalink / raw)
  To: cygwin

Christopher Faylor wrote:
> On Mon, Jul 17, 2006 at 04:27:37PM +1200, Mark Hadfield wrote:
>   
>> Christopher Faylor wrote:
>>     
>>> On Mon, Jul 17, 2006 at 03:01:27AM +0100, Andy Rushton wrote:
>>>       
>>>> Hi all,
>>>>
>>>> I have found a problem with ImageMagick and a temporary fix.
>>>>
>>>> After a recent update to my Cygwin installation, the convert program
>>>> stopped working. It simply exited silently, though I discover with gdb
>>>> that it was failing with an unknown exception. It turned out that this
>>>> was because of a missing dll, specifically
>>>> /usr/X11R6/bin/cygdpstk-1.dll, which also requires
>>>> /usr/X11R6/bin/cygdps-1.dll.
>>>>
>>>> ...
>>>>
>>>> So, as I said, I don't know whether this could be fixed by you or the
>>>> x11 maintainers. Any thoughts?
>>>>         
>>> Just one:  cygwin/x issues should really go to the cygwin-xfree mailing
>>> list.
>>>       
>> I for one am very glad it has been mentioned on the Cygwin list, as I 
>> had noticed similar behaviour but not bothered to establish the cause. 
>> And I would never have thought it was an X-related problem as convert is 
>> a non-graphical program.
>>     
>
> So maybe you should be reading the cygwin-xfree mailing list then.
>
>   
>> I think it affects GraphicsMagick also.
>>     
>
> It is, without a doubt, a cygwin/x issue.  So please no more whining here.
>   
Who's whining? I just posted a work-around to a Cygwin-related problem. 
In case you're unaware, this is not an X-Windows tool, it is a 
command-line tool so this is the natural mailing list for discussing it. 
The fact that it uses some functionality from X libraries doesn't change 
it's command-line nature

As I see it, it's not for me to say where the problem is. It could be 
that ImageMagick does not need to have a dependency on this DLL, in 
which case it is a problem for the maintainer of ImageMagick. Of course 
it could be that the X people have inadvertently missed out the DLL from 
the latest release, in which case it would *then* be an XFree problem. 
How am I to know which package is the faulty one? .

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.

Andy

-- 
Andy Rushton, Southampton, UK

Information is the inverse of entropy.


--
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] 21+ messages in thread

* Re: Failure to run image magic in the latest release
  2006-07-17  4:34   ` Mark Hadfield
@ 2006-07-17  5:18     ` Christopher Faylor
  2006-07-17 12:13       ` Andy Rushton
  0 siblings, 1 reply; 21+ messages in thread
From: Christopher Faylor @ 2006-07-17  5:18 UTC (permalink / raw)
  To: cygwin

On Mon, Jul 17, 2006 at 04:27:37PM +1200, Mark Hadfield wrote:
>Christopher Faylor wrote:
>>On Mon, Jul 17, 2006 at 03:01:27AM +0100, Andy Rushton wrote:
>>>Hi all,
>>>
>>>I have found a problem with ImageMagick and a temporary fix.
>>>
>>>After a recent update to my Cygwin installation, the convert program
>>>stopped working. It simply exited silently, though I discover with gdb
>>>that it was failing with an unknown exception. It turned out that this
>>>was because of a missing dll, specifically
>>>/usr/X11R6/bin/cygdpstk-1.dll, which also requires
>>>/usr/X11R6/bin/cygdps-1.dll.
>>>
>>> ...
>>>
>>>So, as I said, I don't know whether this could be fixed by you or the
>>>x11 maintainers. Any thoughts?
>>
>>Just one:  cygwin/x issues should really go to the cygwin-xfree mailing
>>list.
>
>I for one am very glad it has been mentioned on the Cygwin list, as I 
>had noticed similar behaviour but not bothered to establish the cause. 
>And I would never have thought it was an X-related problem as convert is 
>a non-graphical program.

So maybe you should be reading the cygwin-xfree mailing list then.

>I think it affects GraphicsMagick also.

It is, without a doubt, a cygwin/x issue.  So please no more whining here.

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] 21+ messages in thread

* Re: Failure to run image magic in the latest release
  2006-07-17  3:02 ` Christopher Faylor
@ 2006-07-17  4:34   ` Mark Hadfield
  2006-07-17  5:18     ` Christopher Faylor
  0 siblings, 1 reply; 21+ messages in thread
From: Mark Hadfield @ 2006-07-17  4:34 UTC (permalink / raw)
  To: cygwin

Christopher Faylor wrote:
> On Mon, Jul 17, 2006 at 03:01:27AM +0100, Andy Rushton wrote:
>> Hi all,
>>
>> I have found a problem with ImageMagick and a temporary fix.
>>
>> After a recent update to my Cygwin installation, the convert program
>> stopped working. It simply exited silently, though I discover with gdb
>> that it was failing with an unknown exception. It turned out that this
>> was because of a missing dll, specifically
>> /usr/X11R6/bin/cygdpstk-1.dll, which also requires
>> /usr/X11R6/bin/cygdps-1.dll.
>>
 >> ...
>>
>> So, as I said, I don't know whether this could be fixed by you or the
>> x11 maintainers. Any thoughts?
> 
> Just one:  cygwin/x issues should really go to the cygwin-xfree mailing
> list.

I for one am very glad it has been mentioned on the Cygwin list, as I 
had noticed similar behaviour but not bothered to establish the cause. 
And I would never have thought it was an X-related problem as convert is 
a non-graphical program.

I think it affects GraphicsMagick also.


-- 
Mark Hadfield          "Kei puwaha te tai nei, Hoea tahi tatou"
m.hadfield@niwa.co.nz
National Institute for Water and Atmospheric Research (NIWA)











--
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] 21+ messages in thread

* Re: Failure to run image magic in the latest release
  2006-07-17  2:13 Failure to run image magic in the latest release Andy Rushton
@ 2006-07-17  3:02 ` Christopher Faylor
  2006-07-17  4:34   ` Mark Hadfield
  0 siblings, 1 reply; 21+ messages in thread
From: Christopher Faylor @ 2006-07-17  3:02 UTC (permalink / raw)
  To: cygwin

On Mon, Jul 17, 2006 at 03:01:27AM +0100, Andy Rushton wrote:
>Hi all,
>
>I have found a problem with ImageMagick and a temporary fix.
>
>After a recent update to my Cygwin installation, the convert program
>stopped working. It simply exited silently, though I discover with gdb
>that it was failing with an unknown exception. It turned out that this
>was because of a missing dll, specifically
>/usr/X11R6/bin/cygdpstk-1.dll, which also requires
>/usr/X11R6/bin/cygdps-1.dll.
>
>A bit more digging and I found that these DLLs used to be part of
>package xorg-x11-bin-dlls but has been removed with the latest release -
>6.8.99.901-1.
>
>I've fixed the problem for myself by grabbing these DLLs from the
>previous version of this package (xorg-x11-bin-dlls-6.8.2.0) and
>hand-installing them.
>
>So, as I said, I don't know whether this could be fixed by you or the
>x11 maintainers. Any thoughts?

Just one:  cygwin/x issues should really go to the cygwin-xfree mailing
list.

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] 21+ messages in thread

* Failure to run image magic in the latest release
@ 2006-07-17  2:13 Andy Rushton
  2006-07-17  3:02 ` Christopher Faylor
  0 siblings, 1 reply; 21+ messages in thread
From: Andy Rushton @ 2006-07-17  2:13 UTC (permalink / raw)
  To: cygwin

Hi all,

I have found a problem with ImageMagick and a temporary fix.

After a recent update to my Cygwin installation, the convert program
stopped working. It simply exited silently, though I discover with gdb
that it was failing with an unknown exception. It turned out that this
was because of a missing dll, specifically
/usr/X11R6/bin/cygdpstk-1.dll, which also requires
/usr/X11R6/bin/cygdps-1.dll.

A bit more digging and I found that these DLLs used to be part of
package xorg-x11-bin-dlls but has been removed with the latest release -
6.8.99.901-1.

I've fixed the problem for myself by grabbing these DLLs from the
previous version of this package (xorg-x11-bin-dlls-6.8.2.0) and
hand-installing them.

So, as I said, I don't know whether this could be fixed by you or the
x11 maintainers. Any thoughts?

Andy Rushton


--
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] 21+ messages in thread

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

Thread overview: 21+ 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-17  2:13 Failure to run image magic in the latest release Andy Rushton
2006-07-17  3:02 ` Christopher Faylor
2006-07-17  4:34   ` Mark Hadfield
2006-07-17  5:18     ` Christopher Faylor
2006-07-17 12:13       ` Andy Rushton

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).