diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-13 12:01:58 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-08-13 12:01:58 -0400 |
commit | 883dc335e9ea3e0d944ce5cb3c6f140a6cad6ff1 (patch) | |
tree | ca64e7d3fa75495b7497f0f394623f767ee782dd /changes/bug12693 | |
parent | fcac4b4467427e8f6ad948e8c8e6f34a0131e716 (diff) | |
download | tor-883dc335e9ea3e0d944ce5cb3c6f140a6cad6ff1.tar.gz tor-883dc335e9ea3e0d944ce5cb3c6f140a6cad6ff1.zip |
Fix configure script build with autoconf < 2.63
We added some AS_VAR_IF-based checks to detect whether we have
managed to compile (but not link) with stack-protector. On autoconf
before 2.63, we don't have AS_VAR_IF, so we just have to let the
user get a compile error rather than a helpful "find libssp" error.
Fixes bug 12693; bugfix on 0.2.5.2-alpha (commit 21ac292820da578)
Diffstat (limited to 'changes/bug12693')
-rw-r--r-- | changes/bug12693 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug12693 b/changes/bug12693 new file mode 100644 index 0000000000..11dfe78a2f --- /dev/null +++ b/changes/bug12693 @@ -0,0 +1,3 @@ + o Build fixes: + - Allow our configure script to build correctly with autoconf 2.62 + again. Fixes bug 12693; bugfix on 0.2.5.2-alpha. |