I am running Debian Wheezy with PHP5.5 (not the default PHP version of Wheezy).
I want to install gmagick (already installed graphicsmagick from aptitude). So I did this command line :
pecl install gmagick-beta
And here is the error
Starting to download gmagick-1.1.7RC2.tgz (97,556 bytes)
......................done: 97,556 bytes
10 source files, building
running: phpize
sh: phpize: command not found
If the command failed with 'phpize: not found' then you need to install php5-dev packageYou can do it by running 'apt-get install php5-dev' as a root user
ERROR: `phpize' failed
So I looked into php5-dev and saw that by installing php5-dev, my current installation of PHP5.5 will be "upgraded". How is this even possible as this is the latest not even available from the official branch of Debian... I don't feel like installing php5-dev (I don't want the server to fail in case of upgrade conflicts/problems)
Anyway, I just want to install that pecl package without phpize.
Is this possible ?