diff options
author | OpenWrt Developers <openwrt-devel@openwrt.org> | 2006-02-16 13:56:55 +0000 |
---|---|---|
committer | OpenWrt Developers <openwrt-devel@openwrt.org> | 2006-02-16 13:56:55 +0000 |
commit | 741ebab38ec434da2b9c4005ac6ff8dd83759248 (patch) | |
tree | 6867b587009a55ffa4e13ebb4a8efbabf6c86df7 /package/pmacct/Config.in | |
parent | 9c83354ff89c6bfd97e6295e71d3676fb38afe70 (diff) | |
download | upstream-741ebab38ec434da2b9c4005ac6ff8dd83759248.tar.gz upstream-741ebab38ec434da2b9c4005ac6ff8dd83759248.tar.bz2 upstream-741ebab38ec434da2b9c4005ac6ff8dd83759248.zip |
update pmacct to new upstream release and add SQLite database support, the update in White Russian will follow later
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3245 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pmacct/Config.in')
-rw-r--r-- | package/pmacct/Config.in | 47 |
1 files changed, 42 insertions, 5 deletions
diff --git a/package/pmacct/Config.in b/package/pmacct/Config.in index 2976386113..76612b3b49 100644 --- a/package/pmacct/Config.in +++ b/package/pmacct/Config.in @@ -3,7 +3,7 @@ menu "pmacct............................ IPv4/IPv6 accounting and aggregation to config BR2_COMPILE_PMACCT tristate default n - depends BR2_COMPILE_PMACCT_BASIC || BR2_COMPILE_PMACCT_MYSQL || BR2_COMPILE_PMACCT_PGSQL || BR2_COMPILE_PMACCT_CUSTOM + depends BR2_COMPILE_PMACCT_BASIC || BR2_COMPILE_PMACCT_MYSQL || BR2_COMPILE_PMACCT_PGSQL || BR2_COMPILE_PMACCT_SQLITE || BR2_COMPILE_PMACCT_CUSTOM config BR2_COMPILE_PMACCT_BASIC tristate @@ -23,6 +23,12 @@ config BR2_COMPILE_PMACCT_PGSQL depends BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_PMACCTD_PGSQL select BR2_COMPILE_PMACCT +config BR2_COMPILE_PMACCT_SQLITE + tristate + default n + depends BR2_PACKAGE_NFACCTD_SQLITE || BR2_PACKAGE_PMACCTD_SQLITE + select BR2_COMPILE_PMACCT + config BR2_COMPILE_PMACCT_CUSTOM tristate default n @@ -43,7 +49,9 @@ choice Depends: - libmysqlclient (for MySQL database logging support) - libpq (for PostgreSQL database logging support) - + - libsqlite (for SQLite database logging support) + + config BR2_PACKAGE_NFACCTD_BASIC prompt "nfacctd....................... built without database support" tristate @@ -63,7 +71,14 @@ choice select BR2_COMPILE_PMACCT_PGSQL select BR2_PACKAGE_LIBPCAP select BR2_PACKAGE_LIBPQ - + + config BR2_PACKAGE_NFACCTD_SQLITE + prompt "nfacctd-sqlite................ built with SQLite database support" + tristate + select BR2_COMPILE_PMACCT_SQLITE + select BR2_PACKAGE_LIBPCAP + select BR2_PACKAGE_LIBSQLITE + config BR2_PACKAGE_NFACCTD_CUSTOM prompt "nfacctd-custom................ customized to your needs" tristate @@ -96,6 +111,13 @@ choice depends BR2_PACKAGE_NFACCTD_CUSTOM select BR2_PACKAGE_LIBPQ + config BR2_COMPILE_NFACCTD_WITH_SQLITE + prompt "SQLite database support" + bool + default n + depends BR2_PACKAGE_NFACCTD_CUSTOM + select BR2_PACKAGE_LIBSQLITE + endchoice choice @@ -113,7 +135,8 @@ choice - libpcap - libmysqlclient (for MySQL database logging support) - libpq (for PostgreSQL database logging support) - + - libsqlite (for SQLite database logging support) + config BR2_PACKAGE_PMACCTD_BASIC prompt "pmacctd....................... built without database support" @@ -134,7 +157,14 @@ choice select BR2_COMPILE_PMACCT_PGSQL select BR2_PACKAGE_LIBPCAP select BR2_PACKAGE_LIBPQ - + + config BR2_PACKAGE_PMACCTD_SQLITE + prompt "pmacctd-sqlite................ built with SQLite database support" + tristate + select BR2_COMPILE_PMACCT_PGSQL + select BR2_PACKAGE_LIBPCAP + select BR2_PACKAGE_LIBPQ + config BR2_PACKAGE_PMACCTD_CUSTOM prompt "pmacctd-custom................ customized to your needs" tristate @@ -167,6 +197,13 @@ choice depends BR2_PACKAGE_PMACCTD_CUSTOM select BR2_PACKAGE_LIBPQ + config BR2_COMPILE_PMACCTD_WITH_SQLITE + prompt "SQLite database support" + bool + default n + depends BR2_PACKAGE_PMACCTD_CUSTOM + select BR2_PACKAGE_LIBSQLITE + endchoice config BR2_PACKAGE_PMACCT_CLIENT |