Compile OpenSSL with no-async

This commit is contained in:
timvisee 2021-10-07 13:07:07 +02:00
parent 3782996376
commit 011d97f843
No known key found for this signature in database
GPG key ID: B8DB720BC383E172

View file

@ -98,7 +98,7 @@ build-x86_64-linux-musl:
- wget https://www.openssl.org/source/old/1.1.1/openssl-1.1.1k.tar.gz
- tar xzvf openssl-1.1.1k.tar.gz
- cd openssl-1.1.1k
- ./config -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local
- ./config no-async -fPIC --openssldir=/usr/local/ssl --prefix=/usr/local
- make
- make install
- cd ..