Compiler Error - AIX 5.1
The configure script adds
- #define realloc rpl_realloc
Code: Select all
void *rpl_realloc (void *p, size_t n)
{
p = realloc(p, n);
if (p == 0 && n == 0)
return malloc(0);
return p;
}
The undefined symbols are defined in the Magick library. Not sure why its failing to link on your system. ImageMagick relies on GNU automake/autoconf scripts to build. Its possible there is a bug in the latest versions of these programs for AIX. Try add -disable-shared to your configure command line and see if you can build a static distribution.