aboutsummaryrefslogtreecommitdiff
path: root/changes/bug27081
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-08-08 09:56:51 -0400
committerNick Mathewson <nickm@torproject.org>2018-08-08 09:56:51 -0400
commit7a570b818246ca8c8efe4b7de116804f6ebddd91 (patch)
tree669d0e601479b9fc3836486bdf39013bd1ffb70b /changes/bug27081
parent27a2a6cb9b8a590a88c479539efae7bd31a4102f (diff)
downloadtor-7a570b818246ca8c8efe4b7de116804f6ebddd91.tar.gz
tor-7a570b818246ca8c8efe4b7de116804f6ebddd91.zip
Don't search for -lpthread on Windows
If we're building for Windows, we want to use windows threads no matter what, and we don't want to link a pthread library even if it is present. Fixes bug 27081; bugfix on 1790dc67607799a in 0.1.0.1-rc.
Diffstat (limited to 'changes/bug27081')
-rw-r--r--changes/bug270814
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug27081 b/changes/bug27081
new file mode 100644
index 0000000000..74e0efbd29
--- /dev/null
+++ b/changes/bug27081
@@ -0,0 +1,4 @@
+ o Minor bugfixes (compilation, windows):
+ - Don't link or search for pthreads when building for Windows, even if we
+ are using build environment (like mingw) that provides a pthreads
+ library. Fixes bug 27081; bugfix on 0.1.0.1-rc.