mac安装php的mongodb扩展报错:No such file or directory autom4te: /usr/bin/m4 failed with exit status: 1

前几天mac下brew升级了所有软件,之前安装的好多php扩展都得重新安装下。在安装mongdb扩展的时候,执行phpize报如下错误:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/m4:config.m4:358: cannot open `src/libmongoc/build/autotools/m4/ax_prototype.m4‘: No such file or directory autom4te: /usr/bin/m4 failed with exit status: 1

百度了下,很快找到了解决办法,先执行 git submodule update –init 命令,然后再依次执行 phpize、./configure 和 make && make install 命令,安装成功。感谢那些无私奉献的人们,问题虽然解决了,但是有必要了解下git的一些操作命令。

时间: 2024-09-30 15:22:42

mac安装php的mongodb扩展报错:No such file or directory autom4te: /usr/bin/m4 failed with exit status: 1的相关文章

laravel安装intervention/image图像处理扩展 报错fileinfo is missing

在安装intervention/image图像处理扩展 报错fileinfo is missing 报错信息如下: \blog>composer require intervention/imageUsing version ^2.3 for intervention/image./composer.json has been updatedLoading composer repositories with package informationUpdating dependencies (i

mac安装sudo pip install MySQL-python报错EnvironmentError: mysql_config not found解决方法

PATH="/usr/local/mysql/bin:${PATH}" export PATH export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/ export VERSIONER_PYTHON_PREFER_64_BIT=no export VERSIONER_PYTHON_PREFER_32_BIT=yes 参考文档:http://www.cnblogs.com/ifantastic/archive/2013/04/13/3017677.h

Duanxx的STM32学习: 报错 No Such File or directory

xcode6 真机运行报错 Command /usr/bin/codesign failed with exit code 1

解决方法: 百度下载‘iphone配置实用工具’, 打开此软件之后,选择预配置描述文件, 选中iphone过期和重复的描述文件,按delete键删除.然后重启xcode即可

PHP连接MYSQL 报错"No such file or directory"

首先确定是mysql_connect()和mysql_pconnect()的问题,故障现象就是函数返回空,而mysql_error()返回“No such file or directory”. 写个phpinfo页面,找到mysql.default_socket.mysqli.default_socket.pdo_mysql.default_socket. 启动mysql(见说明2),执行命令 STATUS; 记下UNIX socket的值. 如果2和3的值不一样,则打开php.ini(可以从

报错:Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lex failed with exit code 1

这里有两种情况: 第一种是某xxx.m文件不存在或路径不对,而且里面有5.1什么的 解决方法如下: 在Build Phases-->Complie Sources中找到有两个xxx.m文件,一个正常,一个标红了xxx.m,只要把标红的丢失文件删除掉就行了. 第二种是,里面有4.1什么的 解决方法如下: 在Build Settings 中,将Apple LLVM compiler 4.1 - Language 中的c++Standard Library 修改为 libstdc++(GNU C++

no identity found Command /usr/bin/codesign failed with exit code 1 报错解决方法

stackoverflow 的解决方法是 xcode->preference->account->view detail -> refresh the provisioning profile 但是我这边最后一步是 没有刷新按钮 是一个 download all 的按钮 想到provisioning profile 和证书都是别人导给我的 所以没有采用这种方法 直接  进入 ~/Library/MobileDevice/Provisioning Profiles 文件夹 删除出问题

mac编译openssl扩展报错 openssl.c:44:10: fatal error: 'openssl/evp.h' file not found

解决办法 brew link openssl --force 然后 ./configure --with-openssl --with-php-config=/usr/local/php/bin/php-config make sudo make install mac编译openssl扩展报错 openssl.c:44:10: fatal error: 'openssl/evp.h' file not found

mac系统中搭建apache+mysql+php的开发环境,安装mysql后,登录报错:mac ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

php新手在mac系统中搭建apache+mysql+php的开发环境(按照这篇博客来操作的:http://my.oschina.net/joanfen/blog/171109?fromerr=xvCsafCe),在安装配置mysql完毕后,登录mysql,报错:mac ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO),折腾很久,终于解决,随手记录下,备忘. 解决方法: 第一步:如