summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2019-06-16Allow excluding documentation from the buildrl1987
2019-06-11Merge branch 'tor-github/pr/1060'George Kadianakis
2019-06-10Merge remote-tracking branch 'tor-github/pr/1038'Nick Mathewson
2019-06-10Bump master to 0.4.2.0-alpha-devNick Mathewson
2019-06-06bump to 0.4.1.2-alpha-devNick Mathewson
2019-06-05Bump to 0.4.1.2-alphaNick Mathewson
2019-05-29Check whether gcc-hardening is runnable, and log an error if notNick Mathewson
Closes ticket 27530.
2019-05-22Now this repository is full of 0.4.1.1-alpha-devNick Mathewson
2019-05-22Bump to 0.4.1.1-alphaNick Mathewson
2019-05-21Remove torctl.in from contrib/distrl1987
2019-04-27Remove obsolete OpenSUSE initscriptrl1987
2019-04-17Remove contrib/dist/tor.sh.inrl1987
2019-03-26Merge remote-tracking branch 'tor-github/pr/724'teor
2019-03-22Compile time check for being able to fit {unsigned} int inside void pointerrl1987
2019-03-13Merge branch 'pr_722_squashed'Nick Mathewson
2019-03-13Silence unneeded clang warns that triggered in prob distr tests.George Kadianakis
See https://trac.torproject.org/projects/tor/ticket/29528#comment:3 and https://bugs.llvm.org/show_bug.cgi?id=19535
2019-02-26Merge branch 'tor-github/pr/655'David Goulet
2019-02-19Bump to 0.4.1.0-alpha-devtor-0.4.1.0-alpha-devNick Mathewson
2019-02-06Code for anonymous mappings via mmap() or CreateFileMapping().Nick Mathewson
Using an anonymous mmap() is a good way to get pages that we can set kernel-level flags on, like minherit() or madvise() or mlock(). We're going to use that so that we can make uninheritable locked pages to store PRNG data.
2019-01-18Bump to 0.4.0.1-alpha-devNick Mathewson
2019-01-17Use openssl's version of sha3 when available.Nick Mathewson
Part of 28837.
2019-01-16Bump copyright date to 2019Nick Mathewson
2019-01-16Bump to 0.4.0.1-alphaNick Mathewson
2018-12-21Merge branch 'maint-0.3.5'Nick Mathewson
2018-12-21Try @warning_flags to avoid bloating verbose make logsNick Mathewson
We now accumulate warning flags in a separate variable, "TOR_WARNING_FLAGS", and write it to a "warning_flags" file. Then we test whether the compiler will accept "@warning_flags": if so, we put "@warning_flags" in the CFLAGS; if not, we copy the contents of "$TOR_WARNING_FLAGS" into the CFLAGS. Closes ticket 28924.
2018-12-18Bump version to 0.3.5.6-rc-devNick Mathewson
2018-12-18Bump to 0.3.5.6-rcNick Mathewson
2018-11-24Rewrite updateVersions script in Python, add datestamp functionality.Nick Mathewson
This updateVersions.pl script was one of the only essential perl scripts left in out maint system, and was the only one that used autoconf to fill in the script. This script adds a feature to define an APPROX_RELEASE_DATE macro that is updated when the version changes. We'll use this to implement prop297, so that we have an accurate view of when a release date happens.
2018-11-19Merge remote-tracking branch 'isis/bug25341' into ticket25341_merged_v2Nick Mathewson
2018-11-16Bump to 0.3.5.5-alpha-devNick Mathewson
2018-11-16Bump to 0.3.5.5-alphaNick Mathewson
2018-11-09Merge branch 'maint-0.3.5'Nick Mathewson
2018-11-09Merge branch 'maint-0.3.4' into maint-0.3.5Nick Mathewson
2018-11-09Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-11-09Merge branch 'maint-0.2.9' into maint-0.3.3Nick Mathewson
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-11-08Bump version to 0.3.5.4-alpha-dev.Nick Mathewson
2018-11-07Bump to 0.3.5.4-alphaNick Mathewson
2018-11-07Change version on master to 0.4.0.0-alpha-dev.Nick Mathewson
2018-11-02Bump to 0.3.4.9-devNick Mathewson
2018-11-02Bump to 0.3.4.9Nick Mathewson
2018-10-30Merge remote-tracking branch 'tor-github/pr/425'Nick Mathewson
2018-10-30Merge branch 'maint-0.3.5'Nick Mathewson
2018-10-30Merge remote-tracking branch 'tor-github/pr/381' into maint-0.3.5Nick Mathewson
2018-10-29Only pass `-C default-linker-libraries` with sanitizersAlex Crichton
This'll help retain test compatibility until 1.31.0 is released!
2018-10-20Check if libevent comes with evdns_base_get_nameserver_addr()rl1987
2018-10-17Bump to 0.3.6.0-alpha-dev.Nick Mathewson
2018-10-17Bump to 0.3.5.3-alpha-devNick Mathewson
2018-10-17Bump to 0.3.5.3-alphaNick Mathewson
2018-10-01Remove the `link_rust.sh.in` scriptAlex Crichton
This is no longer necessary with upstream rust-lang/rust changes as well as some local tweaks. Namely: * The `-fsanitize=address`-style options are now passed via `-C link-args` through `RUSTFLAGS`. This obviates the need for the shell script. * The `-C default-linker-libraries`, disabling `-nodefaultlibs`, is passed through `RUSTFLAGS`, which is necessary to ensure that `-fsanitize=address` links correctly. * The `-C linker` option is passed to ensure we're using the same C compiler as normal C code, although it has a bit of hackery to only get the `gcc` out of `gcc -std=c99`