ImageMagick 6.5.4.10
Stephen Montgomery-Smith
stephen at missouri.edu
Thu Aug 13 03:06:48 UTC 2009
On Wed, 12 Aug 2009, Jason J. Hellenthal wrote:
> On Wed, 12 Aug 2009 20:11:20 -0500
> ajtiM <lumiwa at gmail.com> wrote:
>
>> Update to 6.5.4.10 on FreeBSD 7.2
>>
>> magick/.libs/libMagickCore.so: undefined reference to `carg'
>> *** Error code 1
Try this patch:
diff -u magick/fourier-orig.c magick/fourier.c
--- magick/fourier-orig.c 2009-08-13 02:39:18.000000000 +0000
+++ magick/fourier.c 2009-08-13 02:40:13.000000000 +0000
@@ -515,7 +515,7 @@
for (x=0L; x < (long) fourier_info->center; x++)
{
magnitude[i]=cabs(fourier[i]);
- phase[i]=carg(fourier[i]);
+ phase[i]=atan2(cimag(fourier[i]),creal(fourier[i]));
i++;
}
else
More information about the freebsd-ports
mailing list