blob: efedd7fb216263e25b6a2a1fd4f43bb67bf634c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PR:append = ".arago4"
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
PACKAGECONFIG = "charon curl openssl stroke sqlite3 \
${@bb.utils.filter('DISTRO_FEATURES', 'ldap', d)} \
"
EXTRA_OECONF += " \
--enable-ctr \
--enable-pkcs11 \
--enable-mgf1 \
"
SRC_URI += "file://pkcs11_plugin.conf"
do_install:append () {
install -m 0644 ${UNPACKDIR}/pkcs11_plugin.conf ${D}${sysconfdir}/strongswan.d/
}
|