aboutsummaryrefslogtreecommitdiff
path: root/src/win32
Commit message (Collapse)AuthorAge
* Thread support is now requiredNick Mathewson2014-06-20
| | | | | | | | | | | Long ago we supported systems where there was no support for threads, or where the threading library was broken. We shouldn't have do that any more: on every OS that matters, threads exist, and the OS supports running threads across multiple CPUs. This resolves tickets 9495 and 12439. It's a prerequisite to making our workqueue code work better, since sensible workqueue implementations don't split across multiple processes.
* Remove code for Windows CE supportNick Mathewson2014-06-20
| | | | | | | As far as I know, nobody has used this in ages. It would be a pretty big surprise if it had worked. Closes ticket 11446.
* Bump version in master to 0.2.6.0-alpha-devNick Mathewson2014-06-18
|
* Bump version to Tor 0.2.5.5-alpha-devNick Mathewson2014-06-18
|
* bump version to 0.2.5.5-alpha. Not released yet.Nick Mathewson2014-06-16
|
* Bump version to 0.2.5.4-alpha-devNick Mathewson2014-04-25
|
* Bump version to 0.2.5.4-alpha.Nick Mathewson2014-04-25
| | | | Probably releasing within ~22 hours, pending testing
* bump to 0.2.5.3-alpha-devNick Mathewson2014-03-23
|
* Increment version to 0.2.5.3-alphaNick Mathewson2014-03-22
|
* bump to 0.2.5.2-alphaRoger Dingledine2014-02-13
|
* Bump version to 0.2.5.1-alpha-devNick Mathewson2013-10-02
|
* bump to 0.2.5.1-alphaRoger Dingledine2013-10-01
|
* Whoops. I forgot the "alpha"Nick Mathewson2013-03-01
|
* Bump version in master to 0.2.5.0-alpha-devNick Mathewson2013-03-01
|
* Have autoconf check whether enums are signed.Nick Mathewson2013-02-07
| | | | Fixes bug 7727; fix on 0.2.4.10-alpha.
* bump to 0.2.4.10-alpha-devRoger Dingledine2013-02-04
|
* bump to 0.2.4.10-alphaRoger Dingledine2013-02-04
|
* Detect platforms where memset(0) doesn't set doubles to 0.0.Nick Mathewson2013-01-29
| | | | | | | This is allowed by the C statndard, which permits you to represent doubles any way you like, but in practice we have some code that assumes that memset() clears doubles in structs. Noticed as part of 7802 review; see 8081 for more info.
* For now, always use donna32 on msvcNick Mathewson2013-01-17
|
* Merge branch '024_msvc_squashed'Nick Mathewson2013-01-16
|\ | | | | | | | | | | Conflicts: src/or/or.h srcwin32/orconfig.h
| * Add HAVE_EVENT_BASE_LOOPEXIT to win32/orconfig.hNick Mathewson2013-01-16
| | | | | | | | Fix for bug 7308
| * Add HAVE_EVENT2_DNS_H to MSVC orconfig.hNick Mathewson2013-01-16
| | | | | | | | Fix for bug 7313
* | Definx HAVE_EVENT_BASE_LOOPEXITin msvc orconfig.hNick Mathewson2013-01-16
| | | | | | | | | | Fixes bug 7308; bugfix on no released Tor, since we haven't actually built right on MSVC in ages.
* | Bump to 0.2.4.9-alpha-devNick Mathewson2013-01-15
| |
* | bump to 0.2.4.9-alphaRoger Dingledine2013-01-15
| |
* | Bump version to 0.2.4.8-alpha-devNick Mathewson2013-01-15
| |
* | bump to 0.2.4.8-alphaRoger Dingledine2013-01-14
| |
* | bump to 0.2.4.7-alpha-devRoger Dingledine2012-12-25
| |
* | bump to 0.2.4.7-alphaRoger Dingledine2012-12-24
|/
* Merge branch 'win64-7260'Nick Mathewson2012-12-07
|\ | | | | | | | | Conflicts: src/or/dns.c
| * Compile (with warnings) with mingw64Nick Mathewson2012-11-02
| | | | | | | | Patch from yayooo for bug 7260, forward-ported to 0.2.4.
* | bump to 0.2.4.6-alpha-devRoger Dingledine2012-11-13
| |
* | bump to 0.2.4.6-alphaRoger Dingledine2012-11-13
|/
* bump to 0.2.4.5-alpha-devRoger Dingledine2012-10-26
|
* Bump the version number to 0.2.4.5-alphaNick Mathewson2012-10-25
| | | | (For real this time. It turns out that 4 and 5 are different numbers.)
* Bump version to 0.2.4.5-alphaNick Mathewson2012-10-25
|
* bump to 0.2.4.4-alpha-devRoger Dingledine2012-10-21
|
* bump to 0.2.4.4-alphaRoger Dingledine2012-10-20
|
* bump to 0.2.4.3-alpha-devRoger Dingledine2012-09-22
|
* bump to 0.2.4.3-alphaRoger Dingledine2012-09-22
|
* Bump version to 0.2.4.2-alpha-devNick Mathewson2012-09-10
|
* bump to 0.2.4.2-alphaRoger Dingledine2012-09-10
|
* bump to 0.2.4.1-alpha-devRoger Dingledine2012-09-05
|
* bump to 0.2.4.1-alphaRoger Dingledine2012-09-05
|
* Move to non-recursive makeStewart Smith2012-08-09
| | | | | | | | | | | | | | | | | | | | This gives us a few benefits: 1) make -j clean all this will start working, as it should. It currently doesn't. 2) increased parallel build recursive make will max out at number of files in a directory, non-recursive make doesn't have such a limitation 3) Removal of duplicate information in make files, less error prone I've also slightly updated how we call AM_INIT_AUTOMAKE, as the way that was used was not only deprecated but will be *removed* in the next major automake release (1.13).... so probably best that we can continue to bulid tor without requiring old automake. (see http://www.gnu.org/software/automake/manual/html_node/Public-Macros.html ) For more reasons why, see resources such as: http://miller.emu.id.au/pmiller/books/rmch/
* Increment master branch version to 0.2.4.0-alpha-devNick Mathewson2012-06-20
|
* bump to 0.2.3.17-beta-devRoger Dingledine2012-06-15
|
* bump to 0.2.3.17-betaRoger Dingledine2012-06-15
|
* bump to 0.2.3.16-alpha-devRoger Dingledine2012-06-05
|
* today is the day for 0.2.3.16-alphaRoger Dingledine2012-06-05
|