aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2017-10-25bump to 0.2.8.16-devNick Mathewson
2017-10-24bump to 0.2.8.16Nick Mathewson
2017-09-18bump to 0.2.8.15-devNick Mathewson
2017-09-14version bump: 0.2.8.15Nick Mathewson
2017-06-08Add -dev to version number.Nick Mathewson
2017-06-08Bump to 0.2.8.14Nick Mathewson
2017-02-28bump version to 0.2.8.13Nick Mathewson
2016-12-19Bump to 0.2.8.12-devNick Mathewson
2016-12-19Bump to 0.2.8.12Nick Mathewson
2016-12-08Bump to 0.2.8.11-devNick Mathewson
2016-12-08Bump to 0.2.8.11Nick Mathewson
2016-12-02Bump to 0.2.8.10-devNick Mathewson
2016-12-01Bump to 0.2.8.10Nick 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-10-17Bump to 0.2.8.9-devNick Mathewson
2016-10-17bump to 0.2.8.9Nick Mathewson
2016-09-23Bump to 0.2.8.8-dev.Nick Mathewson
2016-09-22Update versions to 0.2.8.8Nick Mathewson
2016-08-24bump to 0.2.8.7-devNick Mathewson
2016-08-24Bump to 0.2.8.7Nick Mathewson
2016-08-02bump maint-0.2.8 to 0.2.8.6-devNick Mathewson
2016-07-29bump to 0.2.8.6Nick Mathewson
2016-07-07Bump maint-0.2.8 to 0.2.8.5-rc-devNick Mathewson
2016-07-05Update version to 0.2.8.5-rc. This is not yet a release.Nick Mathewson
2016-06-15Bump to 0.2.8.4-rc-devNick Mathewson
2016-06-14bump version to 0.2.8.4-rcNick Mathewson
2016-05-26Bump to 0.2.8.3-alpha-devNick Mathewson
2016-05-26Bump to 0.2.8.3-alphaNick Mathewson
2016-05-24Make sure that libscrypt_scrypt actually exists before using it.Nick Mathewson
Previously, if the header was present, we'd proceed even if the function wasn't there. Easy fix for bug 19161. A better fix would involve trying harder to find libscrypt_scrypt.
2016-05-11Merge branch 'maint-0.2.7' into maint-0.2.8Nick Mathewson
2016-05-11Merge branch 'bug18841_1_025' into maint-0.2.7Nick Mathewson
2016-05-11Undefine _FORTIFY_SOURCE before defining it.Nick Mathewson
This makes our compilation options checks in autoconf work better on systems that already define _FORTIFY_SOURCE. Fixes at least one case of bug 18841; bugfix on 0.2.3.17-beta. Patch from "trudokal".
2016-03-28Remove a couple of redundant lines from the makefileNick Mathewson
Fixes the last case of 17744.
2016-03-28and NOW the version is 0.2.8.2-alpha-devNick Mathewson
2016-03-28Bump version correctly this timeNick Mathewson
2016-03-28Bump the version numberNick Mathewson
2016-03-25Merge branch 'bug18626_027'Nick Mathewson
2016-03-25Remove spurious exit() calls from configure.acNick Mathewson
We added these a while ago, but they do no actual good, and cause implicit declaration warnings in some situations. Rather than just adding stdint.h, it's easier to remove the exit() calls as redundant. Fixes bug 18626; bugfix from "cypherpunks"
2016-03-11Move Automake options to configure.accypherpunks
This will centralize the version configuration in one file to simplify future changes. Also fixes some typos in the Automake options comments.
2016-02-23Document required autotools versionsNick Mathewson
CentOS 6 is roughly the oldest thing we care about developers still using, and it has autoconf 2.63 / automake 1.11. These are both older than openssl 1.0.0, so anybody who can't upgrade past those probably can't upgrade to a modern openssl either. And since only people building from git or editing configure.ac/Makefile.am need to use autotools, I'm not totally enthused about keeping support for old ones anyway. Closes ticket 17732.
2016-02-10Quotes added on configure script's string comparison.zerosion
Solves #17744 The syntax has been generalized too, so there are only double quotes. Signed-off-by: zerosion <zerosion@protonmail.ch>
2016-02-10Merge remote-tracking branch 'sebastian/bug18242'Nick Mathewson
2016-02-10Merge remote-tracking branch 'public/bug18184'Nick Mathewson
2016-02-05Fix the --disable-asserts-in-tests configure optionSebastian Hahn
2016-02-04Bump to 0.2.8.1-alpha-devNick Mathewson
2016-02-04Make the no-assertions-during-coverage check into a configure optionNick Mathewson
Closes ticket 18242. The rationale here is that I like having coverage on by default in my own working directory, but I always want assertions turned on unless I'm doing branch coverage specifically.
2016-02-04Bump version. (This is not yet the release.)Nick Mathewson
2016-01-29Remove support for unsigned time_tNick Mathewson
We've never actually tested this support, and we should probably assume it's broken. To the best of my knowledge, only OpenVMS has this, and even on OpenVMS it's a compile-time option to disable it. And I don't think we build on openvms anyway. (Everybody else seems to be working around the 2038 problem by using a 64-bit time_t, which won't expire for roughly 292 billion years.) Closes ticket 18184.
2016-01-11Try a little harder to only use SecureZeroMemory when it's presentNick Mathewson
We could be using AC_CHECK_FUNC_DECL too, but it shouldn't be needed.
2016-01-07Use memset_s or explicit_bzero when available.Nick Mathewson