Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 77955 - k3d-0.4.4.0 fails in configure checks
Summary: k3d-0.4.4.0 fails in configure checks
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Graphics Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-14 03:19 UTC by Patrizio Bassi
Modified: 2005-01-15 12:39 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
the configure log (config.log,41.98 KB, text/x-log)
2005-01-14 03:21 UTC, Patrizio Bassi
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Patrizio Bassi 2005-01-14 03:19:40 UTC
[...]
checking for freetype2... found version 9.7.3
checking for dot... yes
checking tiff.h usability... yes
checking tiff.h presence... yes
checking for tiff.h... yes
checking for Magick++... configure: error:
It appears that you don't have an installation of the ImageMagick Magick++ API.
ImageMagick is a collection of programs that read and write a large number of
bitmap file formats.  K-3D relies on ImageMagick in order to read and write
bitmap images for use as textures, so a working ImageMagick installation is
highly recommended.  In addition, you need the ImageMagick development libraries
and/or packages, including Magick++, a C++ API for ImageMagick.

If you wish to bypass this error message, re-run configure with the
--without-imagemagick option.  In this case you will not be able to load
images for use as textures.

!!! Please attach the config.log to your bug report:
!!! /var/tmp/portage/k3d-0.4.4.0/work/k3d-0.4.4.0/config.log

!!! ERROR: media-gfx/k3d-0.4.4.0 failed.
!!! Function econf, Line 483, Exitcode 0
!!! econf failed
!!! If you need support, post the topmost build error, NOT this status message.
Comment 1 Patrizio Bassi 2005-01-14 03:21:08 UTC
Created attachment 48446 [details]
the configure log

the configure log
Comment 2 Luca Barbato gentoo-dev 2005-01-14 08:32:03 UTC
looks like that imagemagick is missing, added as dep now
Comment 3 Patrizio Bassi 2005-01-14 09:34:05 UTC
i have it!

infact previous version installed properly
Comment 4 Patrizio Bassi 2005-01-15 12:39:17 UTC
found the solution...configure checks for:

AC_MSG_CHECKING([for Magick++])
 if  Magick++-config --version >/dev/null 2>/dev/null; then
  AC_MSG_RESULT([found])
                K3D_IMAGEMAGICK_CPPFLAGS=`Magick++-config --cppflags`
                K3D_IMAGEMAGICK_CXXFLAGS=`Magick++-config --cxxflags`
                K3D_IMAGEMAGICK_LIBS=`Magick++-config --libs`
                K3D_IMAGEMAGICK_LDFLAGS=`Magick++-config --ldflags`
  K3D_IMAGEMAGICK_SUBDIR="imagemagick"
 else
....

so checks for Magic++-config

i installed imagemagik suite with a bugged gcc-config...
so i have:
i686-pc-linux-gnu-Magick++-config

that's why it doesn't compile.

i close this bug and mark as invalid.
sorry.