当前位置:首页 > linux教程 > 列表

linux编译找不到apr问题解决办法

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-24 17:08:04 浏览: 评论:0 

在linux中apr是非常常用的一个东西了,但有时你会发现apr编辑安装时提示configure: WARNING: APR not found错误了,下面小编就为各位介绍解决办法.

linux很多地方编译的时候都会用到apr,如果找不到apr就会报错.

  1. configure: WARNING: APR not found 
  2. The Apache Portable Runtime (APR) library cannot be found. 
  3. Please install APR on this system and configure Subversion 
  4. with the appropriate –with-apr option. 
  5. You probably need to do something similar with the Apache 
  6. Portable Runtime Utility (APRUTIL) library and then configure 
  7. Subversion with both the –with-apr and –with-apr-util options. 

apr是比较恶心的一个东东,因为用直接用yum install apr安装apr后,当再安装其他东西需要apr环境时候 经常还是找不到,尽管已经安装它了,这样的话我们只能通过下面这两个参数来指定他们的位置了,但是首先要做的就是安装apr和apr-until,代码如下:

--with-apr

--with-apr-util

apr 和 apr-util官网下载地址:http://apr.apache.org/download.cgi

安装顺序是先安装apr然后再安装 apr-util,因为安装apr-util需要apr环境,首先安装apr 指定安装到/usr/local/apr,代码如下:

  1. wget http://mirrors.cnnic.cn/apache/apr/apr-1.4.8.tar.gz 
  2. tar zxvf apr-1.4.8.tar.gz  //phpfensi.com 
  3. cd apr-1.4.8 
  4. ./configure --prefix=/usr/local/apr 
  5. make & make install 

然后安装apr-util,指定安装到/usr/local/apr-util,代码如下:

  1. wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.5.2.tar.gz 
  2. tar zxvf apr-util-1.5.2.tar.gz 
  3. cd apr-util-1.5.2 
  4. ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr 
  5. make & make install 

经过上面的步骤我们就可以安装其他程序了,比如编译安装svn的时候指定apr和apr-util,指定svn位置/usr/local/subversion 同时也要指定apr和apr-util位置,代码如下:

  1. wget http://mirror.esocc.com/apache/subversion/subversion-1.8.3.tar.gz 
  2. cd subversion-1.8.3.tar.gz 
  3. ./configure --prefix=/usr/local/subversion --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util 
  4. make & make install

Tags: linux编译 找不到apr

分享到: