diff options
| author | Steven Fackler <[email protected]> | 2016-10-17 21:21:09 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-10-17 21:57:54 -0700 |
| commit | 194298a057bad2b79e45ef346a0e6f37f8bc0716 (patch) | |
| tree | 2725a3d891ba46de9b93a6e752a6f0c96f58ebbb /openssl/test | |
| parent | Merge pull request #476 from sfackler/error-handling (diff) | |
| download | rust-openssl-194298a057bad2b79e45ef346a0e6f37f8bc0716.tar.xz rust-openssl-194298a057bad2b79e45ef346a0e6f37f8bc0716.zip | |
Implement new feature setup
The basic idea here is that there is a feature for each supported
OpenSSL version. Enabling multiple features represents support for
multiple OpenSSL versions, but it's then up to you to check which
version you link against (probably by depending on openssl-sys and
making a build script similar to what openssl does).
Diffstat (limited to 'openssl/test')
| -rwxr-xr-x | openssl/test/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/test/run.sh b/openssl/test/run.sh index cd422db7..4d3397a6 100755 --- a/openssl/test/run.sh +++ b/openssl/test/run.sh @@ -3,10 +3,10 @@ set -e case "$BUILD_OPENSSL_VERSION" in 1.0.2*) - FEATURES="openssl-102" + FEATURES="v102" ;; 1.1.0*) - FEATURES="openssl-110" + FEATURES="v110" ;; esac |