Mailing List Archive

svn commit: r1900952 - in /httpd/httpd/branches/2.4.x: ./ test/travis_run_linux.sh
Author: icing
Date: Mon May 16 11:38:37 2022
New Revision: 1900952

URL: http://svn.apache.org/viewvc?rev=1900952&view=rev
Log:
Merge /httpd/httpd/trunk:r1900875

*) test: switch rustls-ffi to v0.9.0 which gets
rid of the cbindgen dependency.


Modified:
httpd/httpd/branches/2.4.x/ (props changed)
httpd/httpd/branches/2.4.x/test/travis_run_linux.sh

Propchange: httpd/httpd/branches/2.4.x/
------------------------------------------------------------------------------
Merged /httpd/httpd/trunk:r1900875

Modified: httpd/httpd/branches/2.4.x/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/test/travis_run_linux.sh?rev=1900952&r1=1900951&r2=1900952&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/test/travis_run_linux.sh (original)
+++ httpd/httpd/branches/2.4.x/test/travis_run_linux.sh Mon May 16 11:38:37 2022
@@ -55,21 +55,13 @@ fi
# build the version we want from source
if test -v TEST_MOD_TLS; then
RUSTLS_HOME="$HOME/build/rustls-ffi"
- RUSTLS_VERSION="v0.8.2"
+ RUSTLS_VERSION="v0.9.0"
git clone https://github.com/rustls/rustls-ffi.git "$RUSTLS_HOME"
pushd "$RUSTLS_HOME"
+ # since v0.9.0, there is no longer a dependency on cbindgen
git fetch origin
git checkout tags/$RUSTLS_VERSION
- # force an update to cbindgen as focal seems to deliver v0.12.1
- # always something changes with rust/cargo every few weeks, sigh.
- RUSTC_VERSION=`rustc --version`
- CBINDGEN_INSTALLED_VERSION=`cbindgen --version`
- cargo install --force cbindgen
- CBINDGEN_LOCAL_VERSION=`"${HOME}"/.cargo/bin/cbindgen --version`
- echo "building rustls-ffi: RUSTC='${RUSTC_VERSION}', "\
- "SYSTEM CBINDGEN='${CBINDGEN_INSTALLED_VERSION}'"\
- "LOCAL CBINDGEN='${CBINDGEN_LOCAL_VERSION}'"
- PATH="${HOME}/.cargo/bin:${PATH}" make install DESTDIR="$PREFIX"
+ make install DESTDIR="$PREFIX"
popd
CONFIG="$CONFIG --with-tls --with-rustls=$PREFIX"
fi