blob: 76a33373f2e8fd2f1708bf957954502496adb687 (
plain)
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
|
--- a/src/output-plugins/Makefile.am
+++ b/src/output-plugins/Makefile.am
@@ -10,7 +10,6 @@
spo_alert_csv.c spo_alert_csv.h \
spo_alert_fast.c spo_alert_fast.h \
spo_alert_full.c spo_alert_full.h \
-spo_alert_fwsam.c spo_alert_fwsam.h \
spo_alert_prelude.c spo_alert_prelude.h \
spo_alert_syslog.c spo_alert_syslog.h \
spo_alert_test.c spo_alert_test.h \
--- a/src/plugbase.c
+++ b/src/plugbase.c
@@ -63,7 +63,6 @@
#include "output-plugins/spo_alert_csv.h"
#include "output-plugins/spo_alert_fast.h"
#include "output-plugins/spo_alert_full.h"
-#include "output-plugins/spo_alert_fwsam.h"
#include "output-plugins/spo_alert_syslog.h"
#include "output-plugins/spo_alert_test.h"
#include "output-plugins/spo_alert_prelude.h"
@@ -335,7 +334,6 @@
DatabaseSetup();
AlertFastSetup();
AlertFullSetup();
- AlertFWsamSetup();
#ifndef WIN32
/* Win32 doesn't support AF_UNIX sockets */
AlertUnixSockSetup();
--- a/src/output-plugins/spo_alert_arubaaction.c
+++ b/src/output-plugins/spo_alert_arubaaction.c
@@ -42,6 +42,9 @@
*/
/* output plugin header file */
+
+#ifdef ARUBA
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -649,3 +652,4 @@
}
+#endif // ARUBA
|