Re: ImageMagick/Graphicsmagick

2003-12-21 Thread Charles Wilson
[EMAIL PROTECTED] wrote: As the lead developer of ImageMagick I would like to clear up a few misconceptions being stated on this list. 1. Harold L Hunt II says: This package [GraphicsMagick] will replace ImageMagick for various reasons. One of those reasons is that the GM folks are comm

Windows program not accepting keyins

2003-12-21 Thread Owen Townsend
Keyins not accepted by Windows programs on CYGWIN. Micro Focus Net Express COBOL does not accept responses to error messages. To illustrate the problem, consider following compile: cobol car100.cblANIM NOOBJ; <-- sample compile command = If copybook missing Net Express

[BUG] Cygwin dll (cvs): subdirs of the root dir of a "managed" mount do not inherit the ability to create files using reserved names

2003-12-21 Thread Nicholas Wourms
Hi All, This is using a dll compiled from the latest cvs source. The problem occurs in newly created subdirs of a "managed" mount's rootdir. For illustration purposes, /usr/src is the mountpoint and /usr/src/temp is the newly created directory. Here's how to reproduce: 1)mount /usr/src as m

Re: Tool to decrease a size of jpg file

2003-12-21 Thread Rafael Kitover
Sorry for failing to RTFM, but apparently there is an ImageMagick package in Cygwin already: http://cygwin.com/cgi-bin2/package-cat.cgi?file=ImageMagick/ImageMagick- 5.5.7-1&grep=image So you don't need to compile anything. Once you have ImageMagick installed, to reduce the size of a jpg file, a

Re: Java hello world link error

2003-12-21 Thread mauro zallocco
Jon, installing libiconv and using "--main=Test" did the trick. Thanks. I looked at http://gcc.gnu.org/java/ and found http://www.linuxjournal.com/article.php?sid=4860 which discusses compiling java. One last thing. I noticed that the resulting Test.exe attempts to access the internet. Is this exp

Info.gz files

2003-12-21 Thread David A. Cobb
I notice that some of the larger info files, notably gcc & related files plus the Cygwin-ug files, are in /usr/share/info as xxx.info.gz files. Is info (supposed to be) able to handle these directly? If so, is special action appropriate to get them listed in the dir file -- on my system they a

ImageMagick

2003-12-21 Thread fedora
Now that I understand the Cygwin community a bit better, I propose a solution that should satisfy everyone. I am the original author and current primary maintainer of ImageMagick. I will spend some time ensuring ImageMagick complies with the general Cygwin package requirements and then submit it

Re: Cron problem after using hibernate

2003-12-21 Thread Larry Hall
At 03:46 PM 12/21/2003, David Bath you wrote: >Larry Hall wrote: >>At 03:25 PM 12/20/2003, David Bath you wrote: >> >>>I have been running cron for over a year now without any problems until recently. >>>Typically I leave my PC running XP on all day and then hibernate it very late in >>>the eveni

Re: Cron problem after using hibernate

2003-12-21 Thread Larry Hall
At 03:31 PM 12/21/2003, Igor Pechtchanski you wrote: >On Sun, 21 Dec 2003, Larry Hall wrote: > >> At 03:25 PM 12/20/2003, David Bath you wrote: >> >[snip] >> >I've attached the cygcheck output, but not my crontab since it works >> >correctly after the cron restarts so I doubt it's the problem. >> >

Re: Cron problem after using hibernate

2003-12-21 Thread David Bath
Larry Hall wrote: At 03:25 PM 12/20/2003, David Bath you wrote: I have been running cron for over a year now without any problems until recently. Typically I leave my PC running XP on all day and then hibernate it very late in the evening, turning it back on each morning. Cron would run without fa

Re: Cron problem after using hibernate

2003-12-21 Thread Igor Pechtchanski
On Sun, 21 Dec 2003, Larry Hall wrote: > At 03:25 PM 12/20/2003, David Bath you wrote: > >[snip] > >I've attached the cygcheck output, but not my crontab since it works > >correctly after the cron restarts so I doubt it's the problem. > > Do you google? > >

Re: Cron problem after using hibernate

2003-12-21 Thread Larry Hall
At 03:25 PM 12/20/2003, David Bath you wrote: >I have been running cron for over a year now without any problems until recently. >Typically I leave my PC running XP on all day and then hibernate it very late in the >evening, turning it back on each morning. Cron would run without fail executing a

Re: List responces (Was: Re: Third-party products that include Cygwin)

2003-12-21 Thread Larry Hall
At 12:31 AM 12/20/2003, Rolf Campbell you wrote: >Larry Hall wrote: >>At 05:24 PM 12/13/2003, Hannu E K Nevalainen you wrote: >>>PLEASE NOTE: >>>** on a mailing list; please keep replies on that particular list ** >>I'm a little confused by the intent of your "note" above. If this is directed at

[ANNOUNCEMENT] Updated: docbook-xsl-1.64.1-1

2003-12-21 Thread Marcel Telka
I've updated the docbook-xsl package to version 1.64.1-1. docbook-xsl package contains XSL stylesheets for the DocBook XML DTD created by Norman Walsh and others. Changes since 1.62.4-1: - Updated to mainstream 1.64.1 - Added 'extensions' directory To update your installation, click on the "Ins

ImageMagick/Graphicsmagick

2003-12-21 Thread fedora
As the lead developer of ImageMagick I would like to clear up a few misconceptions being stated on this list. 1. Harold L Hunt II says: This package [GraphicsMagick] will replace ImageMagick for various reasons. One of those reasons is that the GM folks are committed to provide ABI sta

Re: Java hello world link error

2003-12-21 Thread Jon A. Lambert
mauro zallocco wrote: > $ gcj Test.java > /usr/lib/gcc-lib/i686-pc-cygwin/3.3.1/../../../../i686-pc-cygwin/bin/ld: > cannot > find -liconv > collect2: ld returned 1 exit status > You probably need to install one or both of these: $ cygcheck -c | grep iconv libiconv1.9.1-3

RE: Java hello world link error

2003-12-21 Thread mauro zallocco
Thank you for the suggestion. Here is what I get. $ gcj Test.java /usr/lib/gcc-lib/i686-pc-cygwin/3.3.1/../../../../i686-pc-cygwin/bin/ld: cannot find -liconv collect2: ld returned 1 exit status Mauro > -Original Message- > From: Tim Prince [mailto:[EMAIL PROTECTED] > Sent: Sunday, Decem

Re: Java hello world link error

2003-12-21 Thread Tim Prince
At 08:04 PM 12/20/2003, mauro zallocco wrote: Folks, I installed gcc-java on Windows XP, and am attempting to compile: class Test { public static void main(String argv[]) { System.out.println("Hello World"); } } with the following command: g++ Test.java This produces a gazillion link e

Re: Java hello world link error

2003-12-21 Thread Jon A. Lambert
"mauro zallocco" wrote: > > with the following command: > g++ Test.java > gcj --main=Test Test.java See also: http://gcc.gnu.org/java/ -- J. Lambert -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: