1 | For Java installation instructions, see doc/java_install. |
---|
2 | |
---|
3 | Prior to building libabac |
---|
4 | you may need to install flex, bison, and GNU readline library |
---|
5 | you must install YAP and libstrongswan |
---|
6 | Please check doc/dependencies for other software dependencies |
---|
7 | |
---|
8 | Download yap-6.2.2 from www.dcc.fc.up.pt |
---|
9 | http://www.dcc.fc.up.pt/~vsc/Yap/yap-6.2.2.tar.gz |
---|
10 | |
---|
11 | $./configure --enable-dynamic-loading |
---|
12 | $make |
---|
13 | $make library |
---|
14 | $sudo make install_library |
---|
15 | |
---|
16 | |
---|
17 | You can also install yap on Ubuntu using |
---|
18 | $ sudo apt-get install yap |
---|
19 | |
---|
20 | Download strongswan-4.6.4 from strongswan.org: |
---|
21 | http://download.strongswan.org/strongswan-4.6.4.tar.bz2 |
---|
22 | |
---|
23 | |
---|
24 | FreeBSD users: add --with-group=wheel to strongswan ./configure |
---|
25 | |
---|
26 | Linux users: add --disable-gmp --enable-openssl to strongswan ./configure |
---|
27 | to avoid long credential creation times. The entropy sources |
---|
28 | libstrongswan uses by default gather entropy slowly on Linux. These |
---|
29 | flags allow it to gather entropy from the same sources as openssl, which |
---|
30 | is noticeably faster. The internal strongswan libraries and plugins |
---|
31 | are installed in /usr/local/lib/ipsec by default unless |
---|
32 | --with-ipseclibdir and --with-plugindir are set otherwise. |
---|
33 | |
---|
34 | $ tar xjvf strongswan-4.6.4.tar.bz2 |
---|
35 | $ cd strongswan-4.6.4 |
---|
36 | $ # see note above about configure flags |
---|
37 | $ ./configure --enable-monolithic |
---|
38 | $ cd src/libstrongswan |
---|
39 | $ make && sudo make install |
---|
40 | |
---|
41 | Be sure to make note of the directory into which you've untarred |
---|
42 | strongswan-4.6.4.tar.bz2. You will use this in the next step. |
---|
43 | |
---|
44 | BUILDING LIBABAC |
---|
45 | |
---|
46 | FreeBSD users will need to install flex-2.5.35 or greater from ports and |
---|
47 | use --with-flex=/usr/local/bin/flex --with-extra-includes=/usr/local/include |
---|
48 | on ./configure in addition to --with-strongswan |
---|
49 | |
---|
50 | $ STRONGSWAN_SRC_DIR=path/to/strongswan-4.6.4 |
---|
51 | $ STRONGSWAN_LIB_DIR=path/to/strongswan-ipseclibdir (or /usr/local/lib/ipsec) |
---|
52 | $ ./configure --with-strongswan=$STRONGSWAN_SRC_DIR --with-strongswan-ld-path=$STRONSWAN_LIB_DIR |
---|
53 | $ make && sudo make install |
---|