blob: de6f282d4d9e03c56f6e0d8be3575af26145d0b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
PR_append = ".arago3"
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
DEPENDS_remove = "gmp"
EXTRA_OECONF_remove = "--enable-gmp"
EXTRA_OECONF += "--disable-gmp \
--enable-ctr \
--enable-pkcs11 \
--disable-tools \
"
SRC_URI += "file://pkcs11_plugin.conf"
do_install_append () {
install -m 0644 ${WORKDIR}/pkcs11_plugin.conf ${D}${sysconfdir}/strongswan.d/
}
|