执行phpize Cannot find config.m4

  Step1: phpize 执行报错

[root@gadmobe ~]# /usr/local/php-fpm/bin/phpize

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


Step2:解决

#进入php源码目录
cd /usr/local/src/php-5.6.30/ext/

#执行
./ext_skel --extname=my_module 


#进入my_module
cd /usr/local/src/php-5.6.30/ext/my_module

#编辑
vim config.m4 

#将这段
dnl PHP_ARG_WITH(my_module, for my_module support, 
dnl Make sure that the comment is aligned: 
dnl [ --with-my_module Include my_module support]) 

#修改为
PHP_ARG_WITH(my_module, for my_module support, 
Make sure that the comment is aligned: 
[ --with-my_module Include my_module support]) 


vim /usr/local/src/php-5.6.30/ext/my_module.c

#将这段
/* {{{ my_module_functions[]
 *
 * Every user visible function must have an entry in my_module_functions[].
 */
const zend_function_entry my_module_functions[] = {
        PHP_FE(confirm_my_module_compiled,      NULL)           /* For testing, remove later. */
        PHP_FE_END      /* Must be the last line in my_module_functions[] */
};


#修改为
/* {{{ my_module_functions[]
 *
 * Every user visible function must have an entry in my_module_functions[].
 */
const zend_function_entry my_module_functions[] = {
PHP_FE(say_hello,    NULL) /* ?添加着一行代码 */
    PHP_FE(confirm_my_module_compiled,   NULL) /* For testing, remove later. */
    {NULL, NULL, NULL}   /* Must be the last line in my_module_functions[] */
};

 

 

转载于:https://my.oschina.net/AnnaWu/blog/2243466

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值