From 88315482b2075e7d11b5f7c08adb9b1c9df6bc55 Mon Sep 17 00:00:00 2001 From: KingLucius Date: Mon, 23 Oct 2023 15:27:34 +0300 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a971eb55..6c5409a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,11 +78,11 @@ jobs: - name: Configure autotools (Linux, gnutls) if: runner.os == 'Linux' && matrix.crypto == 'gnutls' run: | - ./configure --with-gnutls --without-openssl + ./configure ARIA2_STATIC=yes --with-gnutls --without-openssl --enable-libaria2 --enable-static - name: Configure autotools (Linux, openssl) if: runner.os == 'Linux' && matrix.crypto == 'openssl' run: | - ./configure --without-gnutls --with-openssl + ./configure ARIA2_STATIC=yes --without-gnutls --with-openssl --enable-libaria2 --enable-static - name: Configure autotools (macOS) if: runner.os == 'macOS' run: |