summaryrefslogtreecommitdiff
path: root/README
blob: 47022eecd44ee67d8ae9cee736c85d0f224fa233 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Dependencies
============

uAnytun can be built by using either libgcrypt or the openssl-crypto library. 
The latter is more performant in most cases but there are some license 
issues when using this library. It also needs more space when installed.

Linux
-----

using libgcrypt:
 
 build-essential
 libgcrypt11-dev

using ssl crypto library:

 build-essential
 libssl-dev


OpenBSD
-------

using libgcrypt:

 gmake
 libgcrypt
 libgpg-error

using ssl crypto library:

 gmake


Installation
============

Getting the source via subversion:
----------------------------------
svn co https://svn.chaos-at-home.org/uanytun/trunk uanytun

Building from source
--------------------

using libgcrypt:

# cd src
# ./configure
# make

using ssl crypto library:

# cd src
# ./configure --use-ssl-crypto
# make


Notes: 
  - try './configure --help' for further information
  - if using openssl pre 0.9.8 you have to disable passphrase
    because openssl had no SHA256 implementation prior to this
    version
  - on OpenBSD you have to use gmake instead of make