[openssl-commits] Failed: openssl/openssl#2761 (master - ffbc5b5)
Travis CI
builds at travis-ci.org
Thu Mar 10 10:17:42 UTC 2016
Build Update for openssl/openssl
-------------------------------------
Build: #2761
Status: Failed
Duration: 20 minutes and 30 seconds
Commit: ffbc5b5 (master)
Author: David Woodhouse
Message: Allow OPENSSL_NO_SOCK in e_os.h even for non-Windows/DOS platforms
UEFI needs this too. Don't keep it only in the Windows/DOS ifdef block.
This is a fixed version of what was originally commit 963bb62195 and
subsequently reverted in commit 37b1f8bd62. Somewhere along the way, the
Windows/DOS ifdef actually got removed, leaving it just broken. It should
have been turned into an #elif, not removed.
This one correctly changes the logic from
# if WINDOWS|DOS
# if OPENSSL_NO_SOCK
... no-sock ...
# elif !DJGPP
... native windows ...
to
# if OPENSSL_NO_SOCK
... no-sock ...
# elif WINDOWS|DOS
# if !DJGPP
... native windows ...
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
View the changeset: https://github.com/openssl/openssl/compare/6a7de8e0942d...ffbc5b577d62
View the full build log and details: https://travis-ci.org/openssl/openssl/builds/115018314
--
You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mta.openssl.org/pipermail/openssl-commits/attachments/20160310/3bff0630/attachment-0001.html>
More information about the openssl-commits
mailing list