Sat Aug 21 12:04:52 2010 UTC ()
Add libsmi option.
Requested by PR#32371.


(obache)
diff -r1.1 -r1.2 pkgsrc/net/tcpdump/options.mk

cvs diff -r1.1 -r1.2 pkgsrc/net/tcpdump/options.mk (expand / switch to unified diff)

--- pkgsrc/net/tcpdump/options.mk 2005/06/12 19:41:45 1.1
+++ pkgsrc/net/tcpdump/options.mk 2010/08/21 12:04:52 1.2
@@ -1,20 +1,24 @@ @@ -1,20 +1,24 @@
1# $NetBSD: options.mk,v 1.1 2005/06/12 19:41:45 salo Exp $ 1# $NetBSD: options.mk,v 1.2 2010/08/21 12:04:52 obache Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.tcpdump 3PKG_OPTIONS_VAR= PKG_OPTIONS.tcpdump
4PKG_SUPPORTED_OPTIONS= inet6 ssl 4PKG_SUPPORTED_OPTIONS= inet6 ssl libsmi
5PKG_SUGGESTED_OPTIONS= ssl 5PKG_SUGGESTED_OPTIONS= ssl
6 6
7.include "../../mk/bsd.options.mk" 7.include "../../mk/bsd.options.mk"
8 8
9.if !empty(PKG_OPTIONS:Minet6) 9.if !empty(PKG_OPTIONS:Minet6)
10CONFIGURE_ARGS+= --enable-ipv6 10CONFIGURE_ARGS+= --enable-ipv6
11.else 11.else
12CONFIGURE_ARGS+= --disable-ipv6 12CONFIGURE_ARGS+= --disable-ipv6
13.endif 13.endif
14 14
15.if !empty(PKG_OPTIONS:Mssl) 15.if !empty(PKG_OPTIONS:Mssl)
16USE_OLD_DES_API= yes 16USE_OLD_DES_API= yes
17.include "../../security/openssl/buildlink3.mk" 17.include "../../security/openssl/buildlink3.mk"
18.else 18.else
19CONFIGURE_ARGS+= --without-crypto 19CONFIGURE_ARGS+= --without-crypto
20.endif 20.endif
 21
 22.if !empty(PKG_OPTIONS:Mlibsmi)
 23.include "../../devel/libsmi/buildlink3.mk"
 24.endif