source: doc/INSTALL @ ac79e33

mei_rt2mei_rt2_fix_1meiyap-rt1rt2
Last change on this file since ac79e33 was 9806e76, checked in by Mei <mei@…>, 12 years ago

1) add handling for typed anonymous term, [int:?]
2) make a pass through abac/doc
3) fix up creddy to take oset option at different calls

  • Property mode set to 100644
File size: 1.3 KB
Line 
1For Java installation instructions, see doc/java_install.
2
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
14
15Download strongswan-4.4.0 from strongswan.org:
16    http://download.strongswan.org/strongswan-4.4.0.tar.bz2
17
18FreeBSD users: add --with-group=wheel to strongswan ./configure
19
20Linux users: add --disable-gmp --enable-openssl to strongswan ./configure
21to avoid long credential creation times. The entropy sources
22libstrongswan uses by default gather entropy slowly on Linux.  These
23flags allow it to gather entropy from the same sources as openssl, which
24is noticeably faster.
25
26$ tar xjvf strongswan-4.4.0.tar.bz2
27$ cd strongswan-4.4.0
28$ # see note above about configure flags
29$ ./configure --enable-monolithic
30$ cd src/libstrongswan
31$ make && sudo make install
32
33Be sure to make note of the directory into which you've untarred
34strongswan-4.4.0.tar.bz2. You will use this in the next step.
35
36BUILDING LIBABAC
37
38$ STRONGSWAN_SRC_DIR=path/to/strongswan-4.4.0
39$ ./configure --with-strongswan=$STRONGSWAN_SRC_DIR
40$ make && sudo make install
Note: See TracBrowser for help on using the repository browser.