-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbro-2.5.2-configure.patch
97 lines (96 loc) · 3.11 KB
/
bro-2.5.2-configure.patch
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
--- bro-2.5.1/configure 2017-06-26 18:24:37.000000000 -0500
+++ bro-2.5.1/configure.new 2017-10-08 09:44:56.392120924 -0500
@@ -31,7 +31,13 @@
[PREFIX/spool]
--logdir=PATH when using BroControl, path to store log file
[PREFIX/logs]
+ --distdir=PATH configures development file expected paths [PWD]
+ --plugindir=PATH Sets Bro plugin install directory [PREFIX/lib/bro/plugins]
--conf-files-dir=PATH config files installation directory [PREFIX/etc]
+ --python-install-dir the desired installation directory for
+ any auxiliary python modules (if present)
+ [PREFIX/lib/broctl]
+
Optional Features:
--enable-debug compile in debugging mode
@@ -43,6 +49,7 @@
--enable-ruby build ruby bindings for broccoli (deprecated)
--enable-broker enable use of the Broker communication library
(requires C++ Actor Framework)
+ --enable-binpac build binpac
--disable-broccoli don't build or install the Broccoli library
--disable-broctl don't install Broctl
--disable-auxtools don't build or install auxiliary tools
@@ -150,6 +157,52 @@
echo "${usage}" 1>&2
exit 1
;;
+
+ --build=*)
+ ;;
+ --host=*)
+ ;;
+ --program-prefix=*)
+ ;;
+ --disable-dependency-tracking)
+ ;;
+ --exec-prefix=*)
+ ;;
+ --bindir=*)
+ ;;
+ --sbindir=*)
+ ;;
+ --sysconfdir=*)
+ ;;
+ --datadir=*)
+ ;;
+ --includedir=*)
+ ;;
+ --libdir=*)
+ libdir=$optarg
+ append_cache_entry INSTALL_LIB_DIR PATH $optarg
+ ;;
+ --libexecdir=*)
+ ;;
+ --localstatedir=*)
+ ;;
+ --sharedstatedir=*)
+ ;;
+ --mandir=*)
+ ;;
+ --infodir=*)
+ ;;
+ --disable-rpath)
+ append_cache_entry CMAKE_SKIP_RPATH BOOL true
+ ;;
+ --distdir=*)
+ brodist=$optarg
+ append_cache_entry BRO_DIST PATH $optarg
+ ;;
+ --plugindir=*)
+ plugindir=$optarg
+ append_cache_entry BRO_PLUGIN_INSTALL_PATH PATH $optarg
+ ;;
--builddir=*)
builddir=$optarg
;;
@@ -179,6 +232,9 @@
--logdir=*)
append_cache_entry BRO_LOG_DIR PATH $optarg
;;
+ --python-install-dir=*)
+ append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg
+ ;;
--enable-debug)
append_cache_entry ENABLE_DEBUG BOOL true
;;
@@ -200,6 +256,9 @@
;;
--disable-broker)
;;
+ --enable-binpac)
+ append_cache_entry BinPAC_SKIP_INSTALL BOOL false
+ ;;
--disable-broccoli)
append_cache_entry INSTALL_BROCCOLI BOOL false
;;