diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-06-08 18:10:20 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2011-10-26 07:30:11 -0400 |
commit | c5a3664f27379f5f6cc9a2b92032d50ab34550f8 (patch) | |
tree | cfb3b0f61032a85885f6de3dc6465b1aaf603894 /changes | |
parent | ee545cd4cb32b2aa6a37285d0afcd1e4d11fa27c (diff) | |
download | tor-c5a3664f27379f5f6cc9a2b92032d50ab34550f8.tar tor-c5a3664f27379f5f6cc9a2b92032d50ab34550f8.tar.gz |
Fix zlib macro brokenness on osx with zlib 1.2.4 and higher.
From the code:
zlib 1.2.4 and 1.2.5 do some "clever" things with macros. Instead of
saying "(defined(FOO) ? FOO : 0)" they like to say "FOO-0", on the theory
that nobody will care if the compile outputs a no-such-identifier warning.
Sorry, but we like -Werror over here, so I guess we need to define these.
I hope that zlib 1.2.6 doesn't break these too.
Possible fix for bug 1526.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug1526 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug1526 b/changes/bug1526 new file mode 100644 index 000000000..bae710445 --- /dev/null +++ b/changes/bug1526 @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Build correctly on OSX with zlib 1.2.4 and higher with all warnings + enabled.
\ No newline at end of file |