From d16a3322ad24a22c6c48562ea118bd56df24a25e Mon Sep 17 00:00:00 2001 From: Joel Guittet Date: Sat, 3 Aug 2024 22:19:45 +0200 Subject: [PATCH] ci: fix curl build option to enable versioned symbol --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b694a40..f3444ef 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: - name: Install libcurl run: | wget -q -O - https://github.com/curl/curl/archive/refs/tags/curl-8_8_0.tar.gz | tar xz - cd curl-curl-8_8_0 && autoreconf -fi && ./configure --with-openssl --enable-websockets && make -j$(nproc) && sudo make install + cd curl-curl-8_8_0 && autoreconf -fi && ./configure --with-openssl --enable-websockets --enable-versioned-symbols && make -j$(nproc) && sudo make install - name: Install msgpack-c run: | wget -q -O - https://github.com/msgpack/msgpack-c/archive/refs/tags/c-6.0.0.tar.gz | tar xz