diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2020-08-20 13:43:39 +0200 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-08-21 16:11:33 +0000 |
commit | c011155bd3a094d3fcb40482ddba8ce5f7f6b435 (patch) | |
tree | 54c0a1a97ba2fa46ad5e351576fc7366e78d8146 | |
parent | 43fac3bf32d35c5c984b40c5616670ee02d5582d (diff) | |
download | aports-c011155bd3a094d3fcb40482ddba8ce5f7f6b435.tar.gz aports-c011155bd3a094d3fcb40482ddba8ce5f7f6b435.tar.bz2 aports-c011155bd3a094d3fcb40482ddba8ce5f7f6b435.tar.xz |
community/tpm2-tss-engine: make library more versatile
The tpm2 engine can have different engines based on an environment
variable. This feature is hidden behind a compile flag. Lets enable this
flag to make the library more versatile.
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
-rw-r--r-- | community/tpm2-tss-engine/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/tpm2-tss-engine/APKBUILD b/community/tpm2-tss-engine/APKBUILD index 6f21a0ead02..af6f5c46a17 100644 --- a/community/tpm2-tss-engine/APKBUILD +++ b/community/tpm2-tss-engine/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Alexander Sack <asac@pantacor.com> pkgname=tpm2-tss-engine pkgver=1.0.1 -pkgrel=0 +pkgrel=1 pkgdesc="tpm2tss engine for openssl" url="https://github.com/tpm2-software/tpm2-tss-engine/" arch="all" @@ -20,7 +20,8 @@ build() { --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ - --disable-static + --disable-static \ + --enable-tctienvvar make } |