aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2018-11-09Always declare groups when building with openssl 1.1.1 APIsNick Mathewson
Failing to do on clients was causing TLS 1.3 negotiation to fail. Fixes bug 28245; bugfix on 0.2.9.15, when we added TLS 1.3 support.
2018-09-10Bump to 0.2.9.17-devNick Mathewson
2018-09-07Bump to 0.2.9.17Nick Mathewson
2018-09-07Tell openssl to build its TLS contexts with security level 1Nick Mathewson
Fixes bug 27344, where we'd break compatibility with old tors by rejecting RSA1024 and DH1024.
2018-08-08Don't search for -lpthread on WindowsNick Mathewson
If we're building for Windows, we want to use windows threads no matter what, and we don't want to link a pthread library even if it is present. Fixes bug 27081; bugfix on 1790dc67607799a in 0.1.0.1-rc.
2018-07-11When setting a nonstandard malloc, disable the system malloc.Nick Mathewson
Closes ticket 20424.
2018-06-21Prefer recent Python 3 in autoconf.Nick Mathewson
Closes ticket 26372.
2018-03-03Bump version to 0.2.9.15-devNick Mathewson
2018-03-01version bump to 0.2.9.15Nick Mathewson
2018-02-11Merge branch 'ticket24315_029' into maint-0.2.9Nick Mathewson
2017-12-01bump to 0.2.9.14-devNick Mathewson
2017-11-30version bump to 0.2.9.14Nick Mathewson
2017-11-16Check the libc version to decide whether to allow openat.Nick Mathewson
2017-10-25bump to 0.2.9.13-devNick Mathewson
2017-10-24bump to 0.2.9.13Nick Mathewson
2017-09-18bump to 0.2.9.12-devNick Mathewson
2017-09-14version bump: 0.2.9.12Nick Mathewson
2017-06-08Add -dev to version number.Nick Mathewson
2017-06-08bump to 0.2.9.11Nick Mathewson
2017-03-01Bump to 0.2.9.10-devNick Mathewson
2017-02-28bump version to 0.2.9.10Nick Mathewson
2017-02-01Support LibreSSL with opaque structuresrubiate
Determining if OpenSSL structures are opaque now uses an autoconf check instead of comparing the version number. Some definitions have been moved to their own check as assumptions which were true for OpenSSL with opaque structures did not hold for LibreSSL. Closes ticket 21359.
2017-01-23Bump version to 0.2.9.9-devNick Mathewson
2017-01-23TROVE-2017-001 : move -ftrapv back into --expensive-hardening.Nick Mathewson
2017-01-23version bumpNick Mathewson
2016-12-23Use event_base_new(), not event_init(), to detect libevent 2.Nick Mathewson
(event_init() is obsoleted in libevent 2.) Fixes bug 21051; bugfix on 0.2.9.1-alpha when we dropped libevent 1 support.
2016-12-19Bump to 0.2.9.8-devNick Mathewson
2016-12-19Bump to 0.2.9.8Nick Mathewson
2016-12-12version bump: 0.2.9.7-rc-devNick Mathewson
2016-12-11Spell MAC_OS_X_VERSION_10_12 correctly.Nick Mathewson
Fixes 20935.
2016-12-11Bump version 0.2.9.7-rcNick Mathewson
2016-12-02Bump to 0.2.9.6-rc-devNick Mathewson
2016-12-01Bump to 0.2.9.6-rcNick Mathewson
2016-12-01Merge branch 'maint-0.2.8' into maint-0.2.9Nick Mathewson
2016-11-22Try to work around breakage in the OSX 10.12 SDK.Nick Mathewson
Apple is supposed to decorate their function declarations with macros to indicate which OSX version introduced them, so that you can tell the compiler that you want to build against certain versions of OSX. But they forgot to do that for clock_gettime() and getentropy(), both of which they introduced in 10.12. This patch adds a kludge to the configure.ac script where, if we detect that we are targeting OSX 10.11 or earlier, we don't even probe to see if the two offending functions are present. Closes ticket 20235.
2016-11-08Bump version to 0.2.9.5-alpha-devNick Mathewson
2016-11-07bump version to 0.2.9.5-alphaNick Mathewson
2016-10-17Bump to 0.2.8.9-devNick Mathewson
2016-10-17Bump master to 0.2.9.4-alpha-devNick Mathewson
2016-10-17bump to 0.2.8.9Nick Mathewson
2016-10-17Bump version to 0.2.9.4-alpha.Nick Mathewson
2016-10-06Stop implying that we support openssl 1.0.0; we don't.Nick Mathewson
Closes ticket 20303. The LIBRESSL_VERSION_NUMBER check is needed because if our openssl is really libressl, it will have an openssl version number we can't really believe.
2016-10-06Only use -levent when checking functions if we will use it to link.Nick Mathewson
Fixes 19904; bugfix on b62abf9f21499ab; patch from Rubiate.
2016-09-24Merge branch 'osx_sierra_028'Nick Mathewson
2016-09-24Fix compilation on OSX Sierra (10.12)Nick Mathewson
2016-09-23Bump to 0.2.9.3-alpha-devNick Mathewson
2016-09-23Bump to 0.2.8.8-dev.Nick Mathewson
2016-09-22bump master to 0.2.9.3-alphaNick Mathewson
2016-09-22Update versions to 0.2.8.8Nick Mathewson
2016-09-08Fix libevent linking on openbsd.Nick Mathewson
Closes ticket 19902; bugfix on 0.2.9.1-alpha; patch from rubiate