-
Notifications
You must be signed in to change notification settings - Fork 2
/
INSTALL
48 lines (32 loc) · 1.33 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
Dependencies:
- cmake (tested with version 2.2-patch3 and 2.4.1-beta)
you can download cmake at http://www.cmake.org/HTML/Download.html
- libxml2 >= 2.6.0
- blas
- gsl
- xmlblaster (http://xmlblaster.org) (you need the client-c++-api)
Note on xmlblaster:
If the compiled client C++ library is not included in the xmlblaster
distribution, you have to rebuild xmlblaster by executing the following
command in xmlblaster home directory:
$ ./build -DXMLBLASTER_COMPILE_LOG4CPLUS_PLUGIN=1 cpp-lib
Make sure that xerces >2.4 is installed!
You need cmake (http://www.cmake.org) for building the system. Install the
packet and start cmake:
$ cmake .
This should create all the necessary Makefiles for you. You'll need a working
xmlBlaster installation to compile the sources.
Then go and compile the packet:
$ make
Options for cmake:
- You can disable IDMEF support via:
$ cmake -DIDMEF=OFF .
- You can set the path to your xmlBlaster installation by unsing the
XML_BLASTER_HOME variable:
$ cmake -DXML_BLASTER_HOME=/path/to/your/xmlBlaster/
If cmake fails (and you don't know why), please try the following steps:
1.) delete CMakeCache.txt and rerun cmake.
2.) If the problem still exists, please send cmake's output and the file
CMakeFiles/CMakeError.log to <[email protected]> and i'll
have a look at it.
Have fun :)