diff --git a/.github/workflows/build-and-test-make.yml b/.github/workflows/build-and-test-make.yml index 5e598a46..71f6f26c 100644 --- a/.github/workflows/build-and-test-make.yml +++ b/.github/workflows/build-and-test-make.yml @@ -153,11 +153,17 @@ jobs: # Upload pre-compiled binaries to GitHub releases page and Github actions archives. - name: Create tar release files for libcurl-impersonate run: | + cp ${{ runner.temp }}/zlib/lib/lib*.a ${{ runner.temp }}/install/lib + cp nghttp2*/installed/lib/lib*.a ${{ runner.temp }}/install/lib + cp brotli*/out/installed/lib/lib*.a ${{ runner.temp }}/install/lib + cp boringssl/build/lib/lib*.a ${{ runner.temp }}/install/lib + cd ${{ runner.temp }}/install/lib + ls -lah . if [[ "${{ startsWith(github.ref, 'refs/tags/') }}" == "true" ]]; then - tar -c -z -f ${{ runner.temp }}/libcurl-impersonate-${{ github.ref_name }}.${{ matrix.host }}.tar.gz libcurl-impersonate* + tar -c -z -f ${{ runner.temp }}/libcurl-impersonate-${{ github.ref_name }}.${{ matrix.host }}.tar.gz lib* else - tar -c -z -f ${{ runner.temp }}/libcurl-impersonate.${{ matrix.host }}.tar.gz libcurl-impersonate* + tar -c -z -f ${{ runner.temp }}/libcurl-impersonate.${{ matrix.host }}.tar.gz lib* fi echo "release_file_lib=${{ runner.temp }}/libcurl-impersonate-${{ github.ref_name }}.${{ matrix.host }}.tar.gz" >> $GITHUB_ENV diff --git a/Makefile.in b/Makefile.in index bc770978..98884970 100644 --- a/Makefile.in +++ b/Makefile.in @@ -379,6 +379,7 @@ $(CURL_VERSION)/.firefox: $(firefox_libs) $(CURL_VERSION).tar.xz $(CURL_VERSION) config_flags+=" --with-nss=$(nss_install_dir) --with-nss-deprecated"; \ config_flags+=" --without-zstd"; \ config_flags+=" --enable-websockets"; \ + config_flags+=" --enable-ipv6"; \ config_flags+=" USE_CURL_SSLKEYLOGFILE=true"; \ if test "$(static_build)" = "yes"; then \ config_flags+=" --enable-static --disable-shared"; \ @@ -422,6 +423,7 @@ $(CURL_VERSION)/.chrome: $(chrome_libs) $(CURL_VERSION).tar.xz $(CURL_VERSION)/. config_flags="$$config_flags --without-zstd"; \ config_flags="$$config_flags --enable-websockets"; \ config_flags="$$config_flags --enable-ech"; \ + config_flags="$$config_flags --enable-ipv6"; \ config_flags="$$config_flags USE_CURL_SSLKEYLOGFILE=true"; \ if test "$(static_build)" = "yes"; then \ config_flags="$$config_flags --enable-static --disable-shared";