aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2015-08-05Add a compat function to check how much disk space is free.Nick Mathewson
Closes ticket 16734.
2015-08-04Merge remote-tracking branch 'public/bug13338'Nick Mathewson
2015-07-27Bump version to 0.2.7.2-alpha-devNick Mathewson
2015-07-23Bump version (and explain how)Nick Mathewson
2015-07-14Remove tor-fw-helper codeNick Mathewson
It did a good idea, but the code-quality of libupnpc and libnatpnp is so dodgy that I'm not really comfortable including them alongside Tor proper. Instead, we'll recommend that people do the pure-go reimplementation instead. Closes ticket 13338.
2015-07-12Nth time is maybe the charm for fixing windows readpassword build errorsNick Mathewson
2015-07-10Try one more one more time to get tor-ci-windows workingNick Mathewson
Apparently its mingw headers are missing some stuff.
2015-07-09Merge branch 'libscrypt_eq_openssl_squashed'Nick Mathewson
2015-07-09More windows header stuff. Will it work this time?Nick Mathewson
2015-07-09Fix dumb windows compilation bug in d9052c62Nick Mathewson
2015-07-06Check if OpenSSL includes scrypt.rl1987
2015-06-29Remove checks for visual C 6.Nick Mathewson
2015-06-17Add the openssh 6.8p1 readpassphrase implementationNick Mathewson
This way glibc users don't have to fall back to getpass. Windows users are still out of luck
2015-06-17Merge branch '13642_offline_master_v2_squashed'Nick Mathewson
2015-06-17Add a tor_getpass to read passphrases. Needs better backend.Nick Mathewson
2015-06-02Merge remote-tracking branch 'public/bug15760_hard_026_v2'Nick Mathewson
2015-06-02A few more minor OpenSSL 1.1 fixes.Yawning Angel
* Use `TLS_method()` instead of the deprecated `SSLv23_method()` * Fix one missed conversion to `SSL_CIPHER_get_id()`
2015-06-02Merge remote-tracking branch 'public/bug15760_hard_026_v2'Nick Mathewson
Conflicts: src/common/tortls.c
2015-06-02Use autoconf, not OPENSSL_VERSION_NUMBER, to detect SSL_CIPHER_findNick Mathewson
Repairs build with libressl
2015-05-26Stop looking at session->ciphers when possibleNick Mathewson
If the OpenSSL team accepts my patch to add an SSL_get_client_ciphers function, this patch will make Tor use it when available, thereby working better with openssl 1.1.
2015-05-26Merge remote-tracking branch 'origin/maint-0.2.6'Nick Mathewson
2015-05-26Fix --enable-systemd builds on systems with libsystemd but not systemdNick Mathewson
Fixes bug 16164; bugfix on 0.2.6.3-alpha. Patch from Peter Palfrader.
2015-05-19Bump maint-0.2.6 to 0.2.6.8Nick Mathewson
2015-05-12Bump version to 0.2.7.1-alpha-devNick Mathewson
2015-05-11Bump version to 0.2.7.1-alpha. (This is not the release yet.)Nick Mathewson
2015-04-23Merge remote-tracking branch 'public/remove_old_libevent_autoconf_stuff'Nick Mathewson
2015-04-23Integrate backtrace test into the automake test suite.cypherpunks
For this to work bt_test.py now returns an exit code indicating success or failure. Additionally, check-local and its specific dependencies are now obsolete so they are removed.
2015-04-23Integrate ntor test into the automake test suite.cypherpunks
2015-04-23Integrate zero_length_keys test into the automake test suite.cypherpunks
The zero length keys test now requires the path to the Tor binary as the first parameter to ensure the correct Tor binary is used without hard coding a path. The wrapper script calls the zero length keys test for each test separately to ensure the correct shell is used (as configured by autoconf). Another solution would have been to place the tests into separate functions so multiple tests could be run internally. This would have made a diff of considerable size and frankly it is outside the scope of this fix.
2015-04-06bump version to 0.2.6.7-devNick Mathewson
2015-04-06bump version to 0.2.6.7Nick Mathewson
2015-04-01Remove now-needless AC_PATH_PROG checks from configure.acNick Mathewson
2015-03-25Bump to 0.2.6.6-devNick Mathewson
2015-03-24bump to 0.2.6.6Nick Mathewson
2015-03-18bump to 0.2.6.5-rc.devNick Mathewson
2015-03-18Merge remote-tracking branch 'public/feature15053'Nick Mathewson
2015-03-18bump to 0.2.6.5-rcNick Mathewson
2015-03-15Be consistent with capitalization, quoting, and spacing of help strings.cypherpunks
2015-03-14Revive updateVersions.pl with `make update-versions`.cypherpunks
2015-03-14Make `check-docs` work from out-of-tree builds.cypherpunks
2015-03-14Stop updating versions on every execution of `./configure`.cypherpunks
2015-03-12Remove workarounds for Libevent < 1.3.Nick Mathewson
This actually lets us dump a lot of old cruft that nobody had (I hope!) tested in ages. Closes 15248.
2015-03-10bump 0.2.6 to 0.2.6.4-rc-devNick Mathewson
2015-02-24Bump master to 0.2.7tor-0.2.7.0-rootNick Mathewson
2015-02-23Remove lingering mempool codecypherpunks
2015-02-19bump version to 0.2.6.3-alpha-devNick Mathewson
2015-02-19Increment version to 0.2.6.3-alphaNick Mathewson
2015-02-18Add description to the precious Python variable.cypherpunks
2015-02-11Remove mempools and buf freelistsNick Mathewson
They have been off-by-default since 0.2.5 and nobody has complained. :) Also remove the buf_shrink() function, which hasn't done anything since we first stopped using contiguous memory to store buffers. Closes ticket 14848.
2015-02-09Re-remove the --disable-threads configure optionSebastian Hahn