configure: error: libXpm.(a|so) not found】的更多相关文章

编译环境 centos7 php 5.4.26 $ yum install libXpm-devel 显示已安装 百度得知 ubuntu虚拟机安装lamp遇到的问题 configure: error: libXpm.(a|so) not found.不是你缺少东西了,输入如下命令帮编译程序找到相关文件! 64位的OS cd /usr/lib/ln -s /usr/lib/x86_64-linux-gnu/libXpm.aln -s /usr/lib/x86_64-linux-gnu/libXpm…
libXpm-devel明明已经安装过了,libXpm.so之类的也都存在,但是还是一直报这个问题, 百度了很长时间,终于找到了: configure一般的搜索编译路径为/usr/lib/下,因为php默认就在/usr/lib/下找相关库文件 所以添加一个软连接: ln -s /usr/lib64/libXpm.so* /usr/lib/(主机64位) 然后在编译时指定, --with-xpm-dir=/usr/lib64/x11…
仅限于CentOS 5 configure: error: No curses/termcap library found 网上有的说法是: --with-named-curses-libs=/usr/lib/libncursesw.so.5 其实是不对的,虽然能解决configure的错误,但是make的时候会提示错误,正确的做法应该是 yum -y install ncurses-devel debian: apt-get install libncurses5-dev configure:…
centos 6.5 安装php时老是报错,找了很久答案都是千篇一律且不起作用,最后找到一个答案,特记录在此 脚本: tar zxvf php-5.3.28.tar.gz && cd php-5.3.28 #拷贝cp /usr/local/mysql/lib/libmysql* /usr/lib64/ ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/us…
centos6.5 32位系统: checking for the location of libpng... yeschecking for the location of libXpm... nochecking for FreeType 2... yeschecking for T1lib support... nochecking whether to enable truetype string function in GD... yeschecking whether to enab…
CentOS上安装软件错误提示:configure: error: no acceptable C compiler found in $PATH 因为是centos linux,默认可以采用yum方式安装,则采用如下命令安装gcc编译器即可:# yum -y install gcc…
configure: error: no acceptable C compiler found in $PATH See `config.log' for more details.你的机器里没有安装任何C语言编译器,可以安装gcc yum install -y gcc…
Linux上安装Apache时,编译出现错误: checking for APR... no configure: error: APR not found .  Please read the documentation 安装APR,下载所需软件包,如果此时计算机可以上网,执行命令下载文件: wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/apr-u…
linux下安装安装pcre-8.32./configure --prefix=/usr/local/pcre 出现以下错误configure: error: You need a C++ compiler for C++ support 正解 yum install -y gcc gcc-c++…
今日编译apache时出错: #./configure --prefix……检查编辑环境时出现: checking for APR... no configure: error: APR not found .  Please read the documentation 解决办法: 1.下载所需软件包: apr以及apr-util官网 http://apr.apache.org/download.cgi wget http://apache.fayea.com//apr/apr-1.5.2.t…
错误如下: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 build system type... x86_64-unknown-linux-gnu checking host system type... x86…
今天centos出现了下面的异常: checking for tgetent()... configure: error: NOT FOUND! You need to install a terminal library; for example ncurses. Or specify the name of the library with --with-tlib. 这个问题的解决办法很简单,只需要安装下面的库就好了: yum install ncurses ncurses-devel…
先前按照这篇文章“CentOS6.x编译安装LAMP(2):编译安装 Apache2.2.22”去编译安装Apache2.2.x版本时,安装得挺顺利,今天换成Apache2.4.x版本,安装方法一样,在执行./configure命令时,却报如下错误: configure: error: Bundled APR requested but not found at ./srclib/. Download and unpack the corresponding apr and apr-util p…
当在安装tar源码包的时候出现以下报错如何解决? [root@jieniruyan gst-fluendo-mp3-]# ./configurechecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... configure: error: newly created file is older than distributed files!Che…
configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/ 基本上确定是丢失了什么包所致,上网搜索得到需要事先安装的依赖包. # RetHat CentOS or Fedora 使用下面安装命令 yum install curl curl-devel # Debian or Ubuntu使用下面的安装命令 apt-get install curl apt-get…
解决php configure: error: Cannot find ldap libraries in /usr/lib.错误 iitshare 分类:Linux,PHP,项目实施 | 标签:Cannot find ldap libraries in /usr/lib., configure: error: |1Comment发表评论   错误说明 今天在centos 6.3 64位版本上安装PHP5.4.3时在./configure 步骤的时候出现了下面错误configure: error…
今天装虚拟机LNMP环境 安装报错:configure: error: C++ compiler cannot create executables 这是因为 gcc 组件不完整,执行安装 yum install gcc gcc-c++ 这样就可以解决了 查看gcc安装情况 rpm -qa | grep gcc 结果显示: libgcc-4.1.2-54.el5libgcc-4.1.2-54.el5gcc-4.1.2-54.el5gcc-c++-4.1.2-54.el5 这样就是安装正确了…
要安装 readline , readline-dev 开发包,要么使用 --without-readline 选项关闭 readline 功能. #yum install readline; #yum install readline-dev; readline 也就是命令行编辑,关闭的话,你直接用psql 就不能编辑命令行,如果输错指令,不能回滚命令历史记录,只能手工重新输入. 在安装postgreSQL的过程中遇到一个问题,在执行 configure 过程中报以下错误,configure:…
转载:http://blog.chinaunix.net/uid-23733724-id-290980.html     昨天开始在自己的fedora12下装qt~ 但是按照教程在/opt/EmbedSky/Qte目录下输入./x86-qtopia-2.2.0-konqueror_build 开始编译qt~ 可是,没多久就报错了:[root@localhost LG]# cd /opt/EmbedSky/[root@localhost EmbedSky]# ls4.3.3  crosstools…
今天在64位centos5.6系统上编译PHP5.2.17报错 checking for MySQL support... yes, shared checking for specified location of the MySQL UNIX socket... no checking for the location of libz... no checking for MySQL UNIX socket location... /var/lib/mysql/mysql.sock conf…
configure: error: zlib library and headers are required (1)直接看是zlib没安装导致的,yum list |grep zlib* 看到的是全部都安装好的: (2)直接打开configure,这个是一个shell脚本,找到报错的这一行:设置set -x结果发现一大串的日志输出,并没有什么有效的信息: (3)打开config.log,里面有报错的,原来这里有报错 configure:35519: result: no configure:3…
安装tcpreplay时报错configure: error: libdnet not found 解决方法: 下载包libdnet-1.8.tar.gz并安装,依次执行: ./configure make make install 验证问题解决. 下载地址:http://download.chinaunix.net/download/0006000/5777.shtml…
错误说明 今天在centos 6.3 64位版本上安装PHP5.4.3时在./configure 步骤的时候出现了下面错误configure: error: Cannot find libmysqlclient under /usr.Note that the MySQL client library is not bundled anymore! 原因分析与解决 通过查找libmysqlclient,发现是在/usr/lib64/mysql/目录内的libmysqlclient.so.15.0…
安装ImageMagick扩展报错: checking ImageMagick MagickWand API configuration program... checking Testing /u sr/local/bin/MagickWand-config... Doesn't existchecking Testing /usr/bin/MagickWand-config... Doesn't existchecking Testing /usr/sbin/bin/MagickWand-c…
centos 6 安装mosh 1.2 2012-05-07 17:21:41标签:centos mosh 关于mosh(引用于) 芬兰研究员Tatu Ylönen于1995年设计出最早的SSH协议,它迅速成为最流行的远程登录安全协议.17年后,一组MIT的黑客提出了mosh,让SSH走向现代化.mosh是基于新的State Synchronization Protocol(SSP)协议,运行在UDP上,能同步不同主机对象的状态,加密和认证使用AES-128.当客户在WiFi网络中漫游或切换到3…
为php增加mysql模块时报错 configure: error: mysql configure failed. Please check config.log for more information. 解决方法: ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql-dir=/usr --with- mysqli=/usr/bin/mysql_config -…
If you installed MacPorts using the package installer, skip this section. To install MacPorts from the source code, follow the steps below. 1. Download and extract the MacPorts 2.2.1 tarball. Either do so using your browser and the Finder, or use the…
CentOS 6.2 二进制安装apache2.4.3出现configure: error: APR-util not found. Please read the documentation的解决方 一.准备环境 1.安装gcc [root@localhost /]# yum install gcc gcc-c++ 2.安装apr,apr-util 下载apr-1.4.6.tar.gz与apr-util-1.5.1.tar.gz,地址:http://apr.apache.org   ,上传至/…
解决编译apache出现的问题:configure: error: APR not found . Please read the documentation - ____哊.時^随记 - 51CTO技术博客  解决编译apache出现的问题:configure: error: APR not found . Please read the documentation2012-04-17 11:45:27标签:编译 ./configure apache原创作品,允许转载,转载时请务必以超链接形式…
在对php进行安装的过程中出现如下错误: 1.报错信息: 1 checking for known struct flock definition... configure: error: Don't know how to define struct flock on this system, set --enable-opcache=no   2.解决办法: 1 2 3 4 vim /etc/ld.so.conf.d/local.conf     # 编辑库文件 /usr/local/lib…