← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 2757: default to Boost.Atomic on mingw

 

------------------------------------------------------------
revno: 2757
committer: poy <poy@xxxxxxxxxx>
branch nick: trunk
timestamp: Tue 2011-12-27 14:41:47 +0100
message:
  default to Boost.Atomic on mingw
modified:
  SConstruct
  changelog.txt


--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'SConstruct'
--- SConstruct	2011-12-16 17:07:49 +0000
+++ SConstruct	2011-12-27 13:41:47 +0000
@@ -79,7 +79,7 @@
 	BoolVariable('verbose', 'Show verbose command lines', 'no'),
 	BoolVariable('savetemps', 'Save intermediate compilation files (assembly output)', 'no'),
 	BoolVariable('unicode', 'Build a Unicode version which fully supports international characters', 'yes'),
-	BoolVariable('stdatomic', 'Use a standard implementation of <atomic> (turn off to switch to Boost.Atomic)', 'yes'),
+	BoolVariable('stdatomic', 'Use a standard implementation of <atomic> (turn off to switch to Boost.Atomic)', 'no'),
 	BoolVariable('i18n', 'Rebuild i18n files', 'no'),
 	BoolVariable('help', 'Build help files (requires i18n=1)', 'yes'),
 	BoolVariable('webhelp', 'Build help files for the web (requires help=1)', 'no'),

=== modified file 'changelog.txt'
--- changelog.txt	2011-12-26 16:12:50 +0000
+++ changelog.txt	2011-12-27 13:41:47 +0000
@@ -56,6 +56,7 @@
 * [L#901237] Fix a possible crash on parital list removal from the queue (thanks bigmuscle)
 * [L#900650] Fix removal of same ADC users logged into multiple hubs when they go offline (emtee)
 * Plug memory leaks in list and tree controls (poy)
+* [L#735512] Switch to Boost.Atomic to solve freezes (poy)
 
 -- 0.782 2011-03-05 --
 * Prevent a remote crash triggered via malformed user commands (poy)