aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-09-22 09:59:37 -0400
committerNick Mathewson <nickm@torproject.org>2020-09-22 10:07:14 -0400
commit88d99fc1bd87b17517e49fd7ae82c0de6eaff992 (patch)
treec1926f824d1381243d9fcbbe9cbff495427eded0 /changes
parent1cce0588e10b952d6acff8e55365011bdabbefdb (diff)
downloadtor-88d99fc1bd87b17517e49fd7ae82c0de6eaff992.tar.gz
tor-88d99fc1bd87b17517e49fd7ae82c0de6eaff992.zip
Fix warnings when using two unusual options together.
The option `--enable-all-bugs-are-fatal` when used with `--disable-module-relay` caused GCC to warn about functions that it thought should be labeled noreturn. I've tried a couple of approaches, but disabling the warning on these functions seems to be the best approach. Fixed #40129; bugfix on 0.4.4.1-alpha.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug401294
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug40129 b/changes/bug40129
new file mode 100644
index 0000000000..80de5ef355
--- /dev/null
+++ b/changes/bug40129
@@ -0,0 +1,4 @@
+ o Minor bugfixes (compilation):
+ - Fix compiler warnings that would occur when building with
+ "--enable-all-bugs-are-fatal" and "--disable-module-relay"
+ at the same time. Fixes bug 40129; bugfix on 0.4.4.1-alpha.