| | 217 | === compile Ariba & MCPO === |
| | 218 | |
| | 219 | At first, you have to compile ''Ariba'' and ''MCPO''. Therefor you can follow the instructions below. Further information are provided on the official Ariba-Installation page (http://ariba-underlay.org/wiki/BaseInstall). |
| | 220 | |
| | 221 | On an clean ''ubuntu 9.10 / 10.04'' the following packages are necessary: |
| | 222 | * (subversion) |
| | 223 | * build-essential |
| | 224 | * libtool |
| | 225 | * autoconf |
| | 226 | * automake |
| | 227 | * libgmp3-dev |
| | 228 | * liblog4cxx10-dev |
| | 229 | * libboost-thread-dev |
| | 230 | * libboost-system-dev |
| | 231 | * libboost-regex-dev |
| | 232 | |
| | 233 | The following lines compile ''Ariba'' and ''MCPO'' and installing them to ''$HOME/local'' in the user's home-directory. |
| | 234 | |
| | 235 | {{{ |
| | 236 | * get the Ariba sourcecode |
| | 237 | * in the "ariba"-directory do: |
| | 238 | ./bootstrap |
| | 239 | ./configure --prefix=$HOME/local |
| | 240 | make install |
| | 241 | |
| | 242 | * get the MCPO sourcecode |
| | 243 | * in the "mcpo"-directory do: |
| | 244 | ./bootstrap |
| | 245 | ./configure --prefix=$HOME/local LDFLAGS=-L$HOME/local/lib CPPFLAGS=-I$HOME/local/include |
| | 246 | make install |
| | 247 | }}} |
| | 248 | |
| | 249 | |
| | 250 | |
| | 251 | |
| | 252 | |