source: freewrt/package/pmacct/Config.in@ 655dec8

Last change on this file since 655dec8 was c144fe3, checked in by Markus Wigge <markus@…>, 19 years ago

sync with 1.0 branch

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1078 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
55
56config FWRT_PACKAGE_NFACCTD_BASIC
57 prompt "nfacctd....................... built without database support"
58 tristate
59 select FWRT_COMPILE_PMACCT_BASIC
60 select FWRT_PACKAGE_LIBPCAP
61 depends FWRT_SHOW_NFACCTD
62
63config FWRT_PACKAGE_NFACCTD_MYSQL
64 prompt "nfacctd-mysql................. built with MySQL database support"
65 tristate
66 select FWRT_COMPILE_PMACCT_MYSQL
67 select FWRT_PACKAGE_LIBPCAP
68 select FWRT_PACKAGE_LIBMYSQLCLIENT
69 depends FWRT_SHOW_NFACCTD
70
71config FWRT_PACKAGE_NFACCTD_PGSQL
72 prompt "nfacctd-pgsql................. built with PostgreSQL database support"
73 tristate
74 select FWRT_COMPILE_PMACCT_PGSQL
75 select FWRT_PACKAGE_LIBPCAP
76 select FWRT_PACKAGE_LIBPQ
77 depends FWRT_SHOW_NFACCTD
78
79config FWRT_PACKAGE_NFACCTD_SQLITE
80 prompt "nfacctd-sqlite................ built with SQLite database support"
81 tristate
82 select FWRT_COMPILE_PMACCT_SQLITE
83 select FWRT_PACKAGE_LIBPCAP
84 select FWRT_PACKAGE_LIBSQLITE
85 depends FWRT_SHOW_NFACCTD
86
87config FWRT_PACKAGE_NFACCTD_CUSTOM
88 prompt "nfacctd-custom................ customized to your needs"
89 tristate
90 select FWRT_COMPILE_PMACCT_CUSTOM
91 select FWRT_PACKAGE_LIBPCAP
92 depends FWRT_SHOW_NFACCTD
93
94config FWRT_COMPILE_NFACCTD_ENABLE_DEBUG
95 prompt "debug (enable debugging options, useful for bugreports)"
96 bool
97 default n
98 depends FWRT_PACKAGE_NFACCTD_CUSTOM
99
100config FWRT_COMPILE_NFACCTD_ENABLE_IPV6
101 prompt "IPv6 support"
102 bool
103 default n
104 depends FWRT_PACKAGE_NFACCTD_CUSTOM
105
106config FWRT_COMPILE_NFACCTD_WITH_MYSQL
107 prompt "MySQL database support"
108 bool
109 default n
110 depends FWRT_PACKAGE_NFACCTD_CUSTOM
111 select FWRT_PACKAGE_LIBMYSQLCLIENT
112
113config FWRT_COMPILE_NFACCTD_WITH_PGSQL
114 prompt "PostgreSQL database support"
115 bool
116 default n
117 depends FWRT_PACKAGE_NFACCTD_CUSTOM
118 select FWRT_PACKAGE_LIBPQ
119
120config FWRT_COMPILE_NFACCTD_WITH_SQLITE
121 prompt "SQLite database support"
122 bool
123 default n
124 depends FWRT_PACKAGE_NFACCTD_CUSTOM
125 select FWRT_PACKAGE_LIBSQLITE
126
127
128config FWRT_SHOW_PMACCTD
129 prompt "pmacctd......................... IP accounting daemon (libpcap based)"
130 bool
131 default n
132 depends FWRT_SHOW_PMACCT
133 help
134
135 An IPv4/IPv6 libpcap-based accounting and aggregation daemon
136
137 http://www.ba.cnr.it/~paolo/pmacct/
138
139 Depends:
140 - libpcap
141 - libmysqlclient (for MySQL database logging support)
142 - libpq (for PostgreSQL database logging support)
143 - libsqlite (for SQLite database logging support)
144
145
146config FWRT_PACKAGE_PMACCTD_BASIC
147 prompt "pmacctd....................... built without database support"
148 tristate
149 select FWRT_COMPILE_PMACCT_BASIC
150 select FWRT_PACKAGE_LIBPCAP
151 depends FWRT_SHOW_PMACCTD
152
153config FWRT_PACKAGE_PMACCTD_MYSQL
154 prompt "pmacctd-mysql................. built with MySQL database support"
155 tristate
156 select FWRT_COMPILE_PMACCT_MYSQL
157 select FWRT_PACKAGE_LIBPCAP
158 select FWRT_PACKAGE_LIBMYSQLCLIENT
159 depends FWRT_SHOW_PMACCTD
160
161config FWRT_PACKAGE_PMACCTD_PGSQL
162 prompt "pmacctd-pgsql................. built with PostgreSQL database support"
163 tristate
164 select FWRT_COMPILE_PMACCT_PGSQL
165 select FWRT_PACKAGE_LIBPCAP
166 select FWRT_PACKAGE_LIBPQ
167 depends FWRT_SHOW_PMACCTD
168
169config FWRT_PACKAGE_PMACCTD_SQLITE
170 prompt "pmacctd-sqlite................ built with SQLite database support"
171 tristate
172 select FWRT_COMPILE_PMACCT_SQLITE
173 select FWRT_PACKAGE_LIBPCAP
174 select FWRT_PACKAGE_LIBSQLITE
175 depends FWRT_SHOW_PMACCTD
176
177config FWRT_PACKAGE_PMACCTD_CUSTOM
178 prompt "pmacctd-custom................ customized to your needs"
179 tristate
180 select FWRT_COMPILE_PMACCT_CUSTOM
181 select FWRT_PACKAGE_LIBPCAP
182 depends FWRT_SHOW_PMACCTD
183
184config FWRT_COMPILE_PMACCTD_ENABLE_DEBUG
185 prompt "debug (enable debugging options, useful for bugreports)"
186 bool
187 default n
188 depends FWRT_PACKAGE_PMACCTD_CUSTOM
189
190config FWRT_COMPILE_PMACCTD_ENABLE_IPV6
191 prompt "IPv6 support"
192 bool
193 default n
194 depends FWRT_PACKAGE_PMACCTD_CUSTOM
195
196config FWRT_COMPILE_PMACCTD_WITH_MYSQL
197 prompt "MySQL database support"
198 bool
199 default n
200 depends FWRT_PACKAGE_PMACCTD_CUSTOM
201 select FWRT_PACKAGE_LIBMYSQLCLIENT
202
203config FWRT_COMPILE_PMACCTD_WITH_PGSQL
204 prompt "PostgreSQL database support"
205 bool
206 default n
207 depends FWRT_PACKAGE_PMACCTD_CUSTOM
208 select FWRT_PACKAGE_LIBPQ
209
210config FWRT_COMPILE_PMACCTD_WITH_SQLITE
211 prompt "SQLite database support"
212 bool
213 default n
214 depends FWRT_PACKAGE_PMACCTD_CUSTOM
215 select FWRT_PACKAGE_LIBSQLITE
216
217
218config FWRT_PACKAGE_PMACCT_CLIENT
219 prompt "pmacct-client................... Command-line client to gather data from the IMT plugin"
220 tristate
221 default n
222 select FWRT_COMPILE_PMACCT
223 depends FWRT_SHOW_PMACCT
224
Note: See TracBrowser for help on using the repository browser.