-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathINSTALL
More file actions
58 lines (40 loc) · 2.05 KB
/
INSTALL
File metadata and controls
58 lines (40 loc) · 2.05 KB
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
Requirements
------------
The IP/ROHC program uses the following external runtime dependencies:
+-----------+---------------+--------------------------------+
| Name | License | Website |
+-----------+---------------+--------------------------------+
| libyaml | MIT license | http://pyyaml.org/wiki/LibYAML |
+-----------+---------------+--------------------------------+
| ROHC | GPL2+ | http://rohc-lib.org/ |
+-----------+---------------+--------------------------------+
| GnuTLS | LGPLv3+ | http://www.gnutls.org/ |
+-----------+---------------+--------------------------------+
The IP/ROHC program uses the following external and optional build
dependencies:
+-----------+---------------+---------------------------------------+
| Name | License | Website |
+-----------+---------------+---------------------------------------+
| Doxygen | GPLv2 | http://www.doxygen.org/ |
+-----------+---------------+---------------------------------------+
| help2man | GPLv3 | http://www.gnu.org/software/help2man/ |
+-----------+---------------+---------------------------------------+
Autotools are used for configuring and building the program. A C99 compiler
is also required (tested with GCC and Clang).
Build and install
-----------------
Configure the program:
$ ./configure [options]
available options:
--enable-client enable IP/ROHC client (default=yes)
--enable-server enable IP/ROHC server (default=yes)
--enable-fail-on-warning build fails on warnings if enabled (default=no)
--enable-fortify-sources build uses -D_FORTIFY_SOURCE=2 (default=no)
--enable-doc-html generate documentation in HTML format (default=no)
--enable-doc-man generate documentation in man format (default=no)
Use ./autogen.sh instead of ./configure if you retrieved sources from
the Bazaar source repository.
Build the program:
$ make all
Install the program:
$ make install