ba79afa667
Its main focus is on cards that support cryptographic operations, and facilitate their use in security applications such as mail encryption, authentication, and digital signature. OpenSC implements the PKCS#11 API so applications supporting this API such as Mozilla Firefox and Thunderbird can use it. OpenSC implements the PKCS#15 standard and aims to be compatible with every software that does so, too.
22 lines
619 B
Makefile
22 lines
619 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2009/02/26 10:50:05 hasso Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.opensc
|
|
PKG_SUPPORTED_OPTIONS= openct pcsc-lite
|
|
PKG_SUGGESTED_OPTIONS= pcsc-lite
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mpcsc-lite)
|
|
.include "../../security/pcsc-lite/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-pcsc
|
|
CONFIGURE_ARGS+= --with-pcsc-provider=${BUILDLINK_PREFIX.pcsc-lite}/lib/libpcsclite.la
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-pcsc
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenct)
|
|
.include "../../security/openct/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-openct
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-openct
|
|
.endif
|