forked from cfengine/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
105 lines (74 loc) · 2.51 KB
/
INSTALL
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
PREREQUISITES
-------------
In order to build CFEngine you need the following tools and libraries installed:
* C compiler supporting C90 + selected C99 constructs:
- _Bool type
- anonymous aggregates "(MyType) { .foo = 1, .bar = 2 }"
- declarations in "for" loop
- named initializers
- uintmax_t and corresponding printf/scanf formats
The following compilers are known to work:
- gcc >= 3.0
- clang >= 2.6
* GNU make
* OpenSSL library
* PCRE library
* POSIX threads (pthreads) library, if not provided by the operating system
* Tokyo Cabinet or QDBM
* MySQL client library (optional)
* PostgreSQL client library (optional)
* SELinux library (optional)
* libacl library (optional)
In order to build CFEngine cloned from git, you will need the
following additional tools:
* GNU Automake >= 1.9.5
* GNU Autoconf >= 2.59
* GNU Libtool >= 1.5.4
* Yacc (note: GNU Bison 2.4.2 has troubles invoking m4)
* Lex
Latest stable versions of the tools and libraries are generally advised.
OPERATING SYSTEMS
-----------------
CFEngine is regularely built and tested on the following operating systems:
* GNU/Linux (many distributions)
* FreeBSD
* NetBSD
* Solaris
HARDWARE PLATFORMS
------------------
CFEngine is regularely built and tested on the following CPU architectures:
* x86
* x86-64
* SPARC
OTHER CONFIGURATIONS
--------------------
In case you have succesfully compiled CFEngine on a different OS and/or using
different tools or versions of tools, please report it to help-cfengine@ mailing
list[1]. Please consider running a testsuite (see below), and posting results to
mailing list too.
[1] https://cfengine.org/mailman/listinfo/help-cfengine
BUILD INSTRUCTIONS
------------------
From tarball:
$ ./configure [configure options]
$ make [-jN]
From git checkout:
$ ./autogen.sh [configure options]
$ make [-jN]
See the available configure options:
$ ./configure --help
or
$ ./autogen.sh --help
INSTALLATION INSTRUCTIONS
-------------------------
CFEngine might be installed in two configurations:
* (default) Native CFEngine file layout. Everything is installed in
/var/cfengine layed out as a "secondary FHS root". This layout is designed to
keep CFEngine running even if most of the system is broken (e.g. /usr is not
mounted due to NFS breakage).
* FHS file layout, enabled by --enable-fhs. This layout follows FHS 2.3.
After the build process has completed (see BUILD INSTRUCTIONS above), type:
$ make install
RUNNING TESTSUITE
-----------------
Please refer to the instructions in tests/README file.