blob: c2d37cd110502571ce05dfe4d166dee0ef5ae434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: options.mk,v 1.1.1.1 2008/03/04 11:29:08 shannonjr Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.pcsc-lite
PKG_SUPPORTED_OPTIONS= extendedapdu
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mextendedapdu)
CONFIGURE_ARGS+= --enable-extendedapdu
.else
CONFIGURE_ARGS+= --enable-extendedapdu=no
.endif
|