summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2015-12-09Try to fix windows build more.Nick Mathewson
patch from rubiate on #16651
2015-12-09Try to fix windows buildNick Mathewson
patch from rubiate on #16651
2015-12-08Add support for getrandom() and getentropy() when availableYawning Angel
Implements feature #13696.
2015-11-26Quote variables in case they contain spacescypherpunks
2015-11-25Attempt to make openbsd compilation happier with libevent2 installedNick Mathewson
Fix for bug 16651; patch from "rubiate".
2015-11-25Merge branch 'maint-0.2.7'Nick Mathewson
2015-11-25Include netinet/in.h (if detected) in check for net/pfvar.hNick Mathewson
Patch from rubiate; fixes bug 17551.
2015-11-20bump version to 0.2.7-devNick Mathewson
2015-11-13Bump to 0.2.7.5Nick Mathewson
2015-10-19Bump version to 0.2.7.4-rcNick Mathewson
2015-09-30Remove comment about a workaround for libevent versions we no longer work ↵Nick Mathewson
around. Fixes 16647
2015-09-29Merge remote-tracking branch 'origin/maint-0.2.7'Nick Mathewson
2015-09-29FreeBSD needs -lexecinfo to get backtrace()Marcin Cieślak
2015-09-25Bump master to 0.2.8.0-alpha-devNick Mathewson
2015-09-25Bump to 0.2.7.3-rc-devNick Mathewson
2015-09-24Stop trying to generate test scripts via autoconf substitution.Nick Mathewson
Use environment variables instead. This repairs 'make distcheck', which was running into trouble when it tried to chmod the generated scripts. Fixes 17148.
2015-09-24Increment version.Nick Mathewson
2015-09-22Check that openssl has ECC support during configureSebastian Hahn
This allows builds on machines with a crippled openssl to fail early during configure. Bugfix on 0.2.7.1-alpha, which introduced the requirement for ECC support. Fixes bug 17109.
2015-09-10Use : rather than /bin/true in configure.acteor (Tim Wilson-Brown)
Some platforms have true at different locations, like /usr/bin/true.
2015-09-03Try to fix #16974; bug not in any released versionNick Mathewson
2015-09-01Fail in configure when openssl is too old. #16901.Nick Mathewson
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.