aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-02-12 19:54:13 -0500
committerNick Mathewson <nickm@torproject.org>2012-02-12 19:54:13 -0500
commitb3abf153428b8f0bbcaeb245207742f7df5fad38 (patch)
treefa88d2e5098c18b5ce5bc42c68068b3185f51fcc /changes
parent61452299d1067298a2865deb6398b1fb269b2a81 (diff)
downloadtor-b3abf153428b8f0bbcaeb245207742f7df5fad38.tar
tor-b3abf153428b8f0bbcaeb245207742f7df5fad38.tar.gz
Fix --enable-static-tor on OpenBSD
Previously we'd been using "we have clock_gettime()" as a proxy for "we need -lrt to link a static libevent". But that's not really accurate: we should only add -lrt if searching for clock_gettime function adds -lrt to our libraries.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug51033
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug5103 b/changes/bug5103
new file mode 100644
index 000000000..dbc462ca7
--- /dev/null
+++ b/changes/bug5103
@@ -0,0 +1,3 @@
+ o Minor bugfixes (build):
+ - When building with --enable-static-tor on OpenBSD, do not
+ erroneously attempt to link -lrt.