MagicWand installation Problem

nighty99

Verified User
Joined
Jul 26, 2009
Messages
9
Code:
h1373655:/usr/lib/php5/20060613+lfs/magickwand# phpize
Configuring for:
PHP Api Version:         20041225
Zend Module Api No:      20060613
Zend Extension Api No:   220060519
h1373655:/usr/lib/php5/20060613+lfs/magickwand# ./configure
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20060613
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate  PHP parsers.
checking for gawk... gawk
checking whether to enable the magickwand extension... yes, shared
checking MagickWand-config in default path... configure: error: Cannot locate configuration program MagickWand-config
h1373655:/usr/lib/php5/20060613+lfs/magickwand# make
make: *** Keine Targets angegeben und keine »make«-Steuerdatei gefunden.  Schluss.
h1373655:/usr/lib/php5/20060613+lfs/magickwand# make install
make: *** Keine Regel, um »install« zu erstellen.  Schluss.
h1373655:/usr/lib/php5/20060613+lfs/magickwand#


System: Debian etch

Can someone help me?

Thats the Problem:
checking MagickWand-config in default path... configure: error: Cannot locate configuration program MagickWand-config

update fixed the problem* but now have a new problem.

*
Code:
ln -s /usr/bin/Wand-config /usr/bin/MagickWand-config


Code:
checking MagickWand-config in default path... found in /usr/bin
checking if ImageMagick version is at least 6.3.8... configure: error: no. You need at least ImageMagick version 6.3.8 to use MagickWand for PHP.


if i try to install / update imagemagick again it only says that i have already the newest version

Code:
h1373655:/usr/lib/php5/20060613+lfs/magickwand# apt-get install imagemagick
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut... Fertig
Vorgeschlagene Pakete:
  gs html2ps lpr
Die folgenden Pakete werden aktualisiert:
  imagemagick
1 aktualisiert, 0 neu installiert, 0 zu entfernen und 37 nicht aktualisiert.
Es müssen 746kB Archive geholt werden.
Nach dem Auspacken werden 0B Plattenplatz zusätzlich benutzt.
Hole:1 http://security.debian.org etch/updates/main imagemagick 7:6.2.4.5.dfsg1-0.15+etch1 [746kB]
Es wurden 746kB in 0s geholt (1485kB/s)
(Lese Datenbank ... 29116 Dateien und Verzeichnisse sind derzeit installiert.)
Vorbereiten zum Ersetzen von imagemagick 7:6.2.4.5.dfsg1-0.14 (durch .../imagemagick_7%3a6.2.4.5.dfsg1-0.15+etch1_i386.deb) ...
Entpacke Ersatz für imagemagick ...
Richte imagemagick ein (6.2.4.5.dfsg1-0.15+etch1) ...

i need to install i newer version of imagemagick, but that dosn´t seem to work with etch
 
Last edited:
Do the following and try again (it will remove imagemagick.deb package, but will leave the version, which was compiled from the source):
Code:
apt-get remove imagemagick
 
Back
Top