zoukankan      html  css  js  c++  java
  • linux编译找不到aprt apr-util

    Linux很多地方编译的时候都会用到apr
    如果找不到apr就会报错
    
        configure: WARNING: APR not found
        The Apache Portable Runtime (APR) library cannot be found.
        Please install APR on this system and configure Subversion
        with the appropriate –with-apr option.
    
        You probably need to do something similar with the Apache
        Portable Runtime Utility (APRUTIL) library and then configure
        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
        
    wget http://mirrors.cnnic.cn/apache/apr/apr-1.4.8.tar.gz
    tar zxvf apr-1.4.8.tar.gz
    cd apr-1.4.8
    ./configure --prefix=/usr/local/apr
    make & make install
    
    然后安装apr-util,指定安装到/usr/local/apr-util   
    wget http://mirrors.cnnic.cn/apache/apr/apr-util-1.5.2.tar.gz
    tar zxvf apr-util-1.5.2.tar.gz
    cd apr-util-1.5.2
    ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
    make & make install
    
    经过上面的步骤我们就可以安装其他程序了,比如编译安装svn的时候指定apr和apr-util
    指定svn位置/usr/local/subversion 同时也要指定apr和apr-util位置,代码如下   
    wget http://mirror.esocc.com/apache/subversion/subversion-1.8.3.tar.gz
    cd subversion-1.8.3.tar.gz
    ./configure --prefix=/usr/local/subversion --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util
    make & make install
  • 相关阅读:
    215. Kth Largest Element in an Array (have better solution )
    414. Third Maximum Number
    442. Find All Duplicates in an Array
    448. Find All Numbers Disappeared in an Array
    485. Max Consecutive Ones
    532. K-diff Pairs in an Array
    8. String to Integer (atoi)
    7. Reverse Integer
    [CTSC2012]熟悉的文章(广义后缀自动机+二分答案+单调队列优化DP)
    BZOJ 2119 股市的预测(后缀数组)
  • 原文地址:https://www.cnblogs.com/yingsi/p/3789047.html
Copyright © 2011-2022 走看看