diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-11-22 03:19:30 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-11-22 03:19:30 +0000 |
commit | 800638d733635beaa47f11f977de169cef134ed7 (patch) | |
tree | fe0838f9e1a233543290289e3800d466cad6601c /package/pmacct/Config.in | |
parent | 0c576e363229f87900c4f1cbdc3fd7b237c14eed (diff) | |
download | upstream-800638d733635beaa47f11f977de169cef134ed7.tar.gz upstream-800638d733635beaa47f11f977de169cef134ed7.tar.bz2 upstream-800638d733635beaa47f11f977de169cef134ed7.zip |
replace bool by tristate to avoid unnecessary -install calls
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2545 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pmacct/Config.in')
-rw-r--r-- | package/pmacct/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/pmacct/Config.in b/package/pmacct/Config.in index cd3966dfde..2976386113 100644 --- a/package/pmacct/Config.in +++ b/package/pmacct/Config.in @@ -1,30 +1,30 @@ menu "pmacct............................ IPv4/IPv6 accounting and aggregation tools" config BR2_COMPILE_PMACCT - bool + tristate default n depends BR2_COMPILE_PMACCT_BASIC || BR2_COMPILE_PMACCT_MYSQL || BR2_COMPILE_PMACCT_PGSQL || BR2_COMPILE_PMACCT_CUSTOM config BR2_COMPILE_PMACCT_BASIC - bool + tristate default n depends BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_PMACCTD_BASIC select BR2_COMPILE_PMACCT config BR2_COMPILE_PMACCT_MYSQL - bool + tristate default n depends BR2_PACKAGE_NFACCTD_MYSQL || BR2_PACKAGE_PMACCTD_MYSQL select BR2_COMPILE_PMACCT config BR2_COMPILE_PMACCT_PGSQL - bool + tristate default n depends BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_PMACCTD_PGSQL select BR2_COMPILE_PMACCT config BR2_COMPILE_PMACCT_CUSTOM - bool + tristate default n depends BR2_PACKAGE_NFACCTD_CUSTOM || BR2_PACKAGE_PMACCTD_CUSTOM select BR2_COMPILE_PMACCT |