zoukankan      html  css  js  c++  java
  • linux 下安装 搭建 svn服务器

    1、下载svn  

         http://subversion.apache.org/download

         下载完成后解压,执行

         ./configure --prefix=/usr/svn

         提示 configure: error: no suitable APR found

    2、下载并安装 apr 和 apr-util

         http://archive.apache.org/dist/apr/

         下载完成后安装

         a)  tar -zxvf apr-1.5.2.tar.gz

         b)  cd apr-1.5.2/

         c)  ./configure

         d) make

         e) make install

         f)  tar -zxvf apr-util-1.5.2.tar.gz

         g) cd apr-util-1.5.2/

         h) ./configure --with-apr=/usr/local/apr ;  make  ; make install

    3、再次安装 svn

         提示 svn requires SQLite

    4、下载并安装SQLite

        a) wget http://www.sqlite.org/2016/sqlite-autoconf-3120200.tar.gz

        b) tar -zxvf sqlite-autoconf-3120200.tar.gz

        c) ./configure;  make & make install

    5、再次安装svn

        a) ./configure --prefix=/usr/svn --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr

        b) make & make install

  • 相关阅读:
    Winsock 2 入门指南
    Winsock 2 入门指南
    [手游新项目历程]-40-linux环境实现C/C++程序崩溃退出时打印栈信息
    1月下旬解题
    poj1226,poj3080
    poj3666
    poj3067
    poj12月其他题解(未完)
    poj1823,3667
    poj2352
  • 原文地址:https://www.cnblogs.com/yinkh/p/5463875.html
Copyright © 2011-2022 走看看