From 23cfb9ac6c07422bb1ad1c628f6f6b381feada63 Mon Sep 17 00:00:00 2001 From: olli Date: Thu, 16 Feb 2006 13:56:55 +0000 Subject: 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@3245 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/pmacct/Config.in | 47 +++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 5 deletions(-) (limited to 'openwrt/package/pmacct/Config.in') diff --git a/openwrt/package/pmacct/Config.in b/openwrt/package/pmacct/Config.in index 297638611..76612b3b4 100644 --- a/openwrt/package/pmacct/Config.in +++ b/openwrt/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 -- cgit v1.2.3