diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-23 16:34:36 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-23 16:34:36 +0000 |
commit | 4412a2a6422e708a991eb75e6c04514b1114da44 (patch) | |
tree | 59797b974ada5f3077506d132f3aa73909c672a5 | |
parent | f5e2125a226494f7560c29c3353f0a8df00f8d4c (diff) | |
download | upstream-4412a2a6422e708a991eb75e6c04514b1114da44.tar.gz upstream-4412a2a6422e708a991eb75e6c04514b1114da44.tar.bz2 upstream-4412a2a6422e708a991eb75e6c04514b1114da44.zip |
Fix pmacct build when no nfacctd | pmacctd options are selected
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1024 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/pmacct/Config.in | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/package/pmacct/Config.in b/package/pmacct/Config.in index 6cf63bac5d..b4b2e4daad 100644 --- a/package/pmacct/Config.in +++ b/package/pmacct/Config.in @@ -124,14 +124,14 @@ choice endchoice config BR2_PACKAGE_PMACCT_CLIENT - prompt "pmacct-client - Command-line client to gather data from the IMT plugin" if BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_NFACCTD_MYSQL || BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_NFACCTD_CUSTOM || BR2_PACKAGE_PMACCTD_BASIC || BR2_PACKAGE_PMACCTD_MYSQL || BR2_PACKAGE_PMACCTD_PGSQL || BR2_PACKAGE_PMACCTD_CUSTOM + prompt "pmacct-client - Command-line client to gather data from the IMT plugin" tristate default m if CONFIG_DEVEL depends BR2_PACKAGE_PMACCT config BR2_PACKAGE_PMACCT_BASIC tristate - default BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_PMACCTD_BASIC + default BR2_PACKAGE_NFACCTD_BASIC || BR2_PACKAGE_PMACCTD_BASIC || BR2_PACKAGE_PMACCT_CLIENT config BR2_PACKAGE_PMACCT_MYSQL tristate @@ -141,8 +141,3 @@ config BR2_PACKAGE_PMACCT_PGSQL tristate default BR2_PACKAGE_NFACCTD_PGSQL || BR2_PACKAGE_PMACCTD_PGSQL -config BR2_PACKAGE_PMACCT_DEVEL - tristate - default m if CONFIG_DEVEL - select BR2_PACKAGE_NFACCTD_BASIC if CONFIG_DEVEL - select BR2_PACKAGE_PMACCTD_BASIC if CONFIG_DEVEL |