diff options
-rw-r--r-- | graphics/sane-backends/options.mk | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/graphics/sane-backends/options.mk b/graphics/sane-backends/options.mk index 469822921f6..d7b7a8fbe4e 100644 --- a/graphics/sane-backends/options.mk +++ b/graphics/sane-backends/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.7 2008/04/13 21:43:39 wiz Exp $ +# $NetBSD: options.mk,v 1.8 2011/08/15 01:56:33 schnoebe Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.sane-backends -PKG_SUPPORTED_OPTIONS= inet6 +PKG_SUPPORTED_OPTIONS= inet6 snmp PKG_SUGGESTED_OPTIONS= #defined .include "../../mk/bsd.options.mk" @@ -13,3 +13,10 @@ CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif + +.if !empty(PKG_OPTIONS:Msnmp) +CONFIGURE_ARGS+= --with-snmp=yes +.include "../../net/net-snmp/buildlink3.mk" +.else +CONFIGURE_ARGS+= --with-snmp=no +.endif |