phpize - Cannot find config.m4.

2019-04-17 20:13发布

I am trying to run the 'phpize' command on MacOSx Mountain Lion, but this is what i get

 Cannot find config.m4. 
 Make sure that you run '/opt/local/bin/phpize' in the top level source directory of the module

How do i resolve this error ?

5条回答
叼着烟拽天下
2楼-- · 2019-04-17 20:43

The phpize command is meant to be run at the top level of an extension source dir (this source dir should contain a file name config.m4).

See http://php.net/manual/en/install.pecl.phpize.php for more information.

查看更多
We Are One
3楼-- · 2019-04-17 20:51

My problem was that I was trying to execute the command just to see if I had it installed.

Trying to execute the command alone gives you that error, only use it inside the directory (most likely you downloaded) that contains the extension that you're trying to install.

Here some instructions to install Xdebug for php7.2 for example.

Take special care in step 3 and 4, first you change dir to the unpacked downloaded extension and then you run phpize.

Xdebug install instructions

查看更多
Evening l夕情丶
4楼-- · 2019-04-17 20:53

In plain English, it means you're running the command from the wrong directory. You need to be in the directory that contains the source for the extension you're trying to install.

For example, if you're trying to install mcrypt, like I was when I came across this stack overflow page, you need to be in php-5.6.24/ext/mcrypt and then run the command.

查看更多
够拽才男人
5楼-- · 2019-04-17 20:57

http://qiita.com/MasatoYoshioka@github/items/e542f39a6f1a3bc1f71e

In terminal

ls config.m4

ls config*

config.w32  config0.m4

cp config0.m4 config.m4

cd /usr/local/src/php-5.3.29/ext/zlib
phpize
./configure
make clean && make && make install

nano php.ini
 add extension=zlib.so
查看更多
祖国的老花朵
6楼-- · 2019-04-17 21:05

first run ./configure it will create config.m4 file, rest the steps are same

查看更多
登录 后发表回答