source: freewrt/package/pmacct/Config.in@ 18c227bd

freewrt_2_0
Last change on this file since 18c227bd was 418e6805, checked in by Markus Wigge <markus@…>, 19 years ago

removed CONFIG_DEVEL and other cleanups

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1119 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 5.9 KB
Line 
1config FWRT_COMPILE_PMACCT
2 tristate
3 default n
4 depends FWRT_COMPILE_PMACCT_BASIC || FWRT_COMPILE_PMACCT_MYSQL || FWRT_COMPILE_PMACCT_PGSQL || FWRT_COMPILE_PMACCT_SQLITE || FWRT_COMPILE_PMACCT_CUSTOM || FWRT_PACKAGE_PMACCT_CLIENT
5
6config FWRT_COMPILE_PMACCT_BASIC
7 tristate
8 default n
9 depends FWRT_PACKAGE_NFACCTD_BASIC || FWRT_PACKAGE_PMACCTD_BASIC
10 select FWRT_COMPILE_PMACCT
11
12config FWRT_COMPILE_PMACCT_MYSQL
13 tristate
14 default n
15 depends FWRT_PACKAGE_NFACCTD_MYSQL || FWRT_PACKAGE_PMACCTD_MYSQL
16 select FWRT_COMPILE_PMACCT
17
18config FWRT_COMPILE_PMACCT_PGSQL
19 tristate
20 default n
21 depends FWRT_PACKAGE_NFACCTD_PGSQL || FWRT_PACKAGE_PMACCTD_PGSQL
22 select FWRT_COMPILE_PMACCT
23
24config FWRT_COMPILE_PMACCT_SQLITE
25 tristate
26 default n
27 depends FWRT_PACKAGE_NFACCTD_SQLITE || FWRT_PACKAGE_PMACCTD_SQLITE
28 select FWRT_COMPILE_PMACCT
29
30config FWRT_COMPILE_PMACCT_CUSTOM
31 tristate
32 default n
33 depends FWRT_PACKAGE_NFACCTD_CUSTOM || FWRT_PACKAGE_PMACCTD_CUSTOM
34 select FWRT_COMPILE_PMACCT
35
36config FWRT_SHOW_PMACCT
37 bool "pmacct/nfacct..................... IPv4/IPv6 accounting and aggregation tools"
38
39config FWRT_SHOW_NFACCTD
40 prompt "nfacctd......................... NetFlow accounting daemon"
41 bool
42 default n
43 depends FWRT_SHOW_PMACCT
44 help
45
46 An IPv4/IPv6 Netflow accounting and aggregation daemon
47
48 http://www.ba.cnr.it/~paolo/pmacct/
49
50 Depends:
51 - libmysqlclient (for MySQL database logging support)
52 - libpq (for PostgreSQL database logging support)
53 - libsqlite (for SQLite database logging support)
54
55config FWRT_PACKAGE_NFACCTD_BASIC
56 prompt "nfacctd....................... built without database support"
57 tristate
58 select FWRT_COMPILE_PMACCT_BASIC
59 select FWRT_PACKAGE_LIBPCAP
60 depends FWRT_SHOW_NFACCTD
61
62config FWRT_PACKAGE_NFACCTD_MYSQL
63 prompt "nfacctd-mysql................. built with MySQL database support"
64 tristate
65 select FWRT_COMPILE_PMACCT_MYSQL
66 select FWRT_PACKAGE_LIBPCAP
67 select FWRT_PACKAGE_LIBMYSQLCLIENT
68 depends FWRT_SHOW_NFACCTD
69
70config FWRT_PACKAGE_NFACCTD_PGSQL
71 prompt "nfacctd-pgsql................. built with PostgreSQL database support"
72 tristate
73 select FWRT_COMPILE_PMACCT_PGSQL
74 select FWRT_PACKAGE_LIBPCAP
75 select FWRT_PACKAGE_LIBPQ
76 depends FWRT_SHOW_NFACCTD
77
78config FWRT_PACKAGE_NFACCTD_SQLITE
79 prompt "nfacctd-sqlite................ built with SQLite database support"
80 tristate
81 select FWRT_COMPILE_PMACCT_SQLITE
82 select FWRT_PACKAGE_LIBPCAP
83 select FWRT_PACKAGE_LIBSQLITE
84 depends FWRT_SHOW_NFACCTD
85
86config FWRT_PACKAGE_NFACCTD_CUSTOM
87 prompt "nfacctd-custom................ customized to your needs"
88 tristate
89 select FWRT_COMPILE_PMACCT_CUSTOM
90 select FWRT_PACKAGE_LIBPCAP
91 depends FWRT_SHOW_NFACCTD
92
93config FWRT_COMPILE_NFACCTD_ENABLE_DEBUG
94 prompt "debug (enable debugging options, useful for bugreports)"
95 bool
96 default n
97 depends FWRT_PACKAGE_NFACCTD_CUSTOM
98
99config FWRT_COMPILE_NFACCTD_ENABLE_IPV6
100 prompt "IPv6 support"
101 bool
102 default n
103 depends FWRT_PACKAGE_NFACCTD_CUSTOM
104
105config FWRT_COMPILE_NFACCTD_WITH_MYSQL
106 prompt "MySQL database support"
107 bool
108 default n
109 depends FWRT_PACKAGE_NFACCTD_CUSTOM
110 select FWRT_PACKAGE_LIBMYSQLCLIENT
111
112config FWRT_COMPILE_NFACCTD_WITH_PGSQL
113 prompt "PostgreSQL database support"
114 bool
115 default n
116 depends FWRT_PACKAGE_NFACCTD_CUSTOM
117 select FWRT_PACKAGE_LIBPQ
118
119config FWRT_COMPILE_NFACCTD_WITH_SQLITE
120 prompt "SQLite database support"
121 bool
122 default n
123 depends FWRT_PACKAGE_NFACCTD_CUSTOM
124 select FWRT_PACKAGE_LIBSQLITE
125
126config FWRT_SHOW_PMACCTD
127 prompt "pmacctd......................... IP accounting daemon (libpcap based)"
128 bool
129 default n
130 depends FWRT_SHOW_PMACCT
131 help
132
133 An IPv4/IPv6 libpcap-based accounting and aggregation daemon
134
135 http://www.ba.cnr.it/~paolo/pmacct/
136
137 Depends:
138 - libpcap
139 - libmysqlclient (for MySQL database logging support)
140 - libpq (for PostgreSQL database logging support)
141 - libsqlite (for SQLite database logging support)
142
143
144config FWRT_PACKAGE_PMACCTD_BASIC
145 prompt "pmacctd....................... built without database support"
146 tristate
147 select FWRT_COMPILE_PMACCT_BASIC
148 select FWRT_PACKAGE_LIBPCAP
149 depends FWRT_SHOW_PMACCTD
150
151config FWRT_PACKAGE_PMACCTD_MYSQL
152 prompt "pmacctd-mysql................. built with MySQL database support"
153 tristate
154 select FWRT_COMPILE_PMACCT_MYSQL
155 select FWRT_PACKAGE_LIBPCAP
156 select FWRT_PACKAGE_LIBMYSQLCLIENT
157 depends FWRT_SHOW_PMACCTD
158
159config FWRT_PACKAGE_PMACCTD_PGSQL
160 prompt "pmacctd-pgsql................. built with PostgreSQL database support"
161 tristate
162 select FWRT_COMPILE_PMACCT_PGSQL
163 select FWRT_PACKAGE_LIBPCAP
164 select FWRT_PACKAGE_LIBPQ
165 depends FWRT_SHOW_PMACCTD
166
167config FWRT_PACKAGE_PMACCTD_SQLITE
168 prompt "pmacctd-sqlite................ built with SQLite database support"
169 tristate
170 select FWRT_COMPILE_PMACCT_SQLITE
171 select FWRT_PACKAGE_LIBPCAP
172 select FWRT_PACKAGE_LIBSQLITE
173 depends FWRT_SHOW_PMACCTD
174
175config FWRT_PACKAGE_PMACCTD_CUSTOM
176 prompt "pmacctd-custom................ customized to your needs"
177 tristate
178 select FWRT_COMPILE_PMACCT_CUSTOM
179 select FWRT_PACKAGE_LIBPCAP
180 depends FWRT_SHOW_PMACCTD
181
182config FWRT_COMPILE_PMACCTD_ENABLE_DEBUG
183 prompt "debug (enable debugging options, useful for bugreports)"
184 bool
185 default n
186 depends FWRT_PACKAGE_PMACCTD_CUSTOM
187
188config FWRT_COMPILE_PMACCTD_ENABLE_IPV6
189 prompt "IPv6 support"
190 bool
191 default n
192 depends FWRT_PACKAGE_PMACCTD_CUSTOM
193
194config FWRT_COMPILE_PMACCTD_WITH_MYSQL
195 prompt "MySQL database support"
196 bool
197 default n
198 depends FWRT_PACKAGE_PMACCTD_CUSTOM
199 select FWRT_PACKAGE_LIBMYSQLCLIENT
200
201config FWRT_COMPILE_PMACCTD_WITH_PGSQL
202 prompt "PostgreSQL database support"
203 bool
204 default n
205 depends FWRT_PACKAGE_PMACCTD_CUSTOM
206 select FWRT_PACKAGE_LIBPQ
207
208config FWRT_COMPILE_PMACCTD_WITH_SQLITE
209 prompt "SQLite database support"
210 bool
211 default n
212 depends FWRT_PACKAGE_PMACCTD_CUSTOM
213 select FWRT_PACKAGE_LIBSQLITE
214
215config FWRT_PACKAGE_PMACCT_CLIENT
216 prompt "pmacct-client................... Command-line client to gather data from the IMT plugin"
217 tristate
218 default n
219 select FWRT_COMPILE_PMACCT
220 depends FWRT_SHOW_PMACCT
221
Note: See TracBrowser for help on using the repository browser.