source: doc/INSTALL @ 0a81d0a

mei_rt2mei_rt2_fix_1rt2
Last change on this file since 0a81d0a was d7abe40, checked in by Ted Faber <faber@…>, 13 years ago

Mention apt-get for yap

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[c0bdce8]1For Java installation instructions, see doc/java_install.
2
[9806e76]3Prior to building libabac
4   you may need to install flex, bison, and GNU readline library
5   you must install YAP and libstrongswan
6
7Download yap-6.2.2 from www.dcc.fc.up.pt
8    http://www.dcc.fc.up.pt/~vsc/Yap/yap-6.2.2.tar.gz
9
10$./configure --enable-dynamic-loading
11$make
12$make library
13$sudo make install_library
[02888af]14
[d7abe40]15
16You can also install yap on Ubuntu using
17$ sudo apt-get install yap
18
[02888af]19Download strongswan-4.4.0 from strongswan.org:
20    http://download.strongswan.org/strongswan-4.4.0.tar.bz2
21
[6aac9f8]22FreeBSD users: add --with-group=wheel to strongswan ./configure
23
[3f8f00f]24Linux users: add --disable-gmp --enable-openssl to strongswan ./configure
25to avoid long credential creation times. The entropy sources
26libstrongswan uses by default gather entropy slowly on Linux.  These
27flags allow it to gather entropy from the same sources as openssl, which
28is noticeably faster.
29
[02888af]30$ tar xjvf strongswan-4.4.0.tar.bz2
31$ cd strongswan-4.4.0
[3f8f00f]32$ # see note above about configure flags
33$ ./configure --enable-monolithic
[02888af]34$ cd src/libstrongswan
35$ make && sudo make install
36
[f675a89]37Be sure to make note of the directory into which you've untarred
38strongswan-4.4.0.tar.bz2. You will use this in the next step.
[02888af]39
40BUILDING LIBABAC
41
[b632f80]42$ STRONGSWAN_SRC_DIR=path/to/strongswan-4.4.0
[02888af]43$ ./configure --with-strongswan=$STRONGSWAN_SRC_DIR
44$ make && sudo make install
Note: See TracBrowser for help on using the repository browser.