pkgsrc/graphics/sane-backends/options.mk
schnoebe aa4dd6102b Add an option to select/suppress SNMP support.
(configure was finding libsnmp.so if net-snmp was installed, but
 net-snmp wasn't buildlink'd in. It would build just fine if net-snmp
 wasn't installed.)
2011-08-15 01:56:33 +00:00

22 lines
509 B
Makefile

# $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 snmp
PKG_SUGGESTED_OPTIONS= #defined
.include "../../mk/bsd.options.mk"
# Package-specific option-handling
.if !empty(PKG_OPTIONS:Minet6)
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