* Address changes in sysctl() storage, which has yielded values such as IP-MIB::ipForwarding.0 invalid. * RAM reporting on 64-bit systems.
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# $NetBSD: options.mk,v 1.10 2010/05/11 04:39:54 adam Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.net-snmp
|
|
PKG_SUPPORTED_OPTIONS= ssl snmp-unprived snmp-nokmem perl
|
|
PKG_SUGGESTED_OPTIONS= perl
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} != "SunOS" && ${OPSYS} != "Darwin"
|
|
# net-snmp doesn't do IPv6 on Solaris & Darwin
|
|
PKG_SUPPORTED_OPTIONS+= inet6
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= inet6
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
PLIST.inet6= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-openssl
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msnmp-nokmem)
|
|
CONFIGURE_ARGS+= --without-kmem-usage
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msnmp-unprived)
|
|
CONFIGURE_ARGS+= --without-root-access
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mperl)
|
|
# The self-test of Perl modules only works after installation because perl
|
|
# can't load the shared libraries from WRKSRC/
|
|
# Until this is fixed you can test them after installation by doing
|
|
# `make test TEST_TARGET=perltest'
|
|
TEST_TARGET= test
|
|
|
|
# Enable the perl modules build and installation
|
|
USE_TOOLS+= perl
|
|
PERL5_CONFIGURE= no
|
|
PERL5_PACKLIST= auto/Bundle/NetSNMP/.packlist
|
|
CONFIGURE_ARGS+= --with-perl-modules=${MAKE_PARAMS:Q}
|
|
CONFIGURE_ENV+= PERLPROG=${PERL5:Q}
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.else # !perl
|
|
CONFIGURE_ARGS+= --enable-embedded-perl=no
|
|
CONFIGURE_ARGS+= --enable-perl-cc-checks=no
|
|
CONFIGURE_ARGS+= --with-perl-modules=no
|
|
.endif # perl
|