Yes it builds fine now with gcc (except I still have to make changes to
acinclude.m4, which David just happens to looking into today).
The ImageMagick supported formats are still not working correctly for me
though. Looks like it is fixed so you can specify the format with either
an upper or lower case extension. However, it still disconnects in
GetImageInfo for me.
Another problem that I have encountered on another machine with the SGI
compiler is at src/uipp/dxuilib/ColormapEditor.C, I get the following
errors:
cc-1070 CC: ERROR File = ColormapEditor.C, Line = 556
The indicated type is incomplete.
struct STATSTRUCT statbuf;
cc-1020 CC: ERROR File = ColormapEditor.C, Line = 558
The identifier "_stat" is undefined.
if (STATFUNC(name,&statbuf) == 0) { // File exists
which I am currently looking into.
Jeff
On Fri, 9 Jun 2000 [EMAIL PROTECTED] wrote:
> I think I've fixed this. The problem boiled down to when an include in a
> Makefile.am actually happened. On some systems (our AIX boxes) the include
> makes it all the way into Makefile, and is performed by make, so the
> configured local.mk ought to be included. On other systems (eg. my cygwin)
> automake seems to process the include statement, so it should include
> local.mk.in. So theres an ambiguity. To make a long story short, I've
> implemented a "fix" proposed by Peter in which configure substitutes
> "include local.mk" for @LOCALMAKE@, so only make sees the include statement
> and in all cases including local.mk is the right answer.
>
> Greg
>
>
>