| 125 | |
| 126 | == build on MacOS X == |
| 127 | * Darwin 10.4.0 |
| 128 | * no root privilege |
| 129 | |
| 130 | * gcc -v |
| 131 | {{{ |
| 132 | Target: i686-apple-darwin10 |
| 133 | Configured with: /var/tmp/gcc/gcc-5664~38/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1 |
| 134 | Thread model: posix |
| 135 | gcc version 4.2.1 (Apple Inc. build 5664) |
| 136 | }}} |
| 137 | * openssl version |
| 138 | {{{ |
| 139 | OpenSSL 0.9.8l 5 Nov 2009 |
| 140 | }}} |
| 141 | * grep VERSION /usr/include/zlib.h |
| 142 | {{{ |
| 143 | #define ZLIB_VERSION "1.2.3" |
| 144 | }}} |
| 145 | * sqlite3 --version |
| 146 | {{{ |
| 147 | 3.6.12 |
| 148 | }}} |
| 149 | * httpd -V |
| 150 | {{{ |
| 151 | Server version: Apache/2.2.14 (Unix) |
| 152 | Server built: Feb 10 2010 22:22:39 |
| 153 | Server's Module Magic Number: 20051115:23 |
| 154 | Server loaded: APR 1.3.8, APR-Util 1.3.9 |
| 155 | Compiled using: APR 1.3.8, APR-Util 1.3.9 |
| 156 | Architecture: 64-bit |
| 157 | Server MPM: Prefork |
| 158 | threaded: no |
| 159 | forked: yes (variable process count) |
| 160 | }}} |
| 161 | |
| 162 | === source === |
| 163 | * wget http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz |
| 164 | * wget http://www.webdav.org/neon/neon-0.29.4.tar.gz |
| 165 | |
| 166 | === extract === |
| 167 | * tar xzf subversion-1.6.13.tar.gz |
| 168 | |
| 169 | * tar xzf neon-0.29.4.tar.gz |
| 170 | * mv neon-0.29.4 subversion-1.6.13/neon |
| 171 | |
| 172 | === build === |
| 173 | * cd subversion-1.6.13 |
| 174 | * ./configure --with-ssl --enable-shared=no --without-berkeley-db --with-apache-libexecdir=no --prefix=$HOME/local/$OSTYPE |
| 175 | * make |
| 176 | * make install |