diff options
author | Brent Cook <bcook@openbsd.org> | 2015-03-18 19:12:42 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-03-19 00:39:50 -0500 |
commit | dd646a3302e66f351111f3fe94d147269ca149fb (patch) | |
tree | 2043415672acb2d58d80a0c7e6d96c5458a76c4d /scripts | |
parent | 1d62b3be371c3a1e3fb3aadc57291cf3f6c29858 (diff) | |
download | portable-dd646a3302e66f351111f3fe94d147269ca149fb.tar.gz portable-dd646a3302e66f351111f3fe94d147269ca149fb.tar.bz2 portable-dd646a3302e66f351111f3fe94d147269ca149fb.zip |
enable libtls by default
The API/ABI for the LibreSSL 2.1.x series is now fixed, so we can safely
enable libtls it by default. This is useful for new OpenNTPD and
OpenSMTPD releases as well.
ok deraadt@ beck@ sthen@
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis b/scripts/travis index c52be79..091f37d 100755 --- a/scripts/travis +++ b/scripts/travis | |||
@@ -4,7 +4,7 @@ set -e | |||
4 | ./autogen.sh | 4 | ./autogen.sh |
5 | 5 | ||
6 | if [ "x$ARCH" = "xnative" ]; then | 6 | if [ "x$ARCH" = "xnative" ]; then |
7 | ./configure --enable-libtls | 7 | ./configure |
8 | if [ `uname` = "Darwin" ]; then | 8 | if [ `uname` = "Darwin" ]; then |
9 | # OS X runs out of resources if we run 'make -j check' | 9 | # OS X runs out of resources if we run 'make -j check' |
10 | make check | 10 | make check |
@@ -28,6 +28,6 @@ else | |||
28 | export PATH=$PATH:/opt/$ARCH/bin | 28 | export PATH=$PATH:/opt/$ARCH/bin |
29 | fi | 29 | fi |
30 | 30 | ||
31 | ./configure --host=$CPU-w64-mingw32 --enable-libtls | 31 | ./configure --host=$CPU-w64-mingw32 |
32 | make -j | 32 | make -j |
33 | fi | 33 | fi |