diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-06-02 05:09:03 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-06-04 23:27:48 +0200 |
commit | 48189d95001c41969ffddad427aaf73a9b57bc15 (patch) | |
tree | c42ec8a51e354d0b1ec5cab7799ff1bbec761dfa /package | |
parent | 05d7b16f53dcfeeba28d4932958458dbb49c6683 (diff) | |
download | buildroot-novena-48189d95001c41969ffddad427aaf73a9b57bc15.tar.gz buildroot-novena-48189d95001c41969ffddad427aaf73a9b57bc15.zip |
php: fix build error for snmp extension
PHP requires that net-snmp be built with the ability to load MIB code,
so force it on when the extension is enabled.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/php/Config.ext | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/php/Config.ext b/package/php/Config.ext index fa73bb4de..80bab70da 100644 --- a/package/php/Config.ext +++ b/package/php/Config.ext @@ -219,6 +219,7 @@ config BR2_PACKAGE_PHP_EXT_FTP config BR2_PACKAGE_PHP_EXT_SNMP bool "SNMP" select BR2_PACKAGE_NETSNMP + select BR2_PACKAGE_NETSNMP_ENABLE_MIBS help SNMP support |