Ticket #503: deluge-1.0.0-use-multithreaded-boost.patch
File deluge-1.0.0-use-multithreaded-boost.patch, 636 bytes (added by , 16 years ago) |
---|
-
deluge-1.0.0/setup.py
old new 145 145 ] 146 146 147 147 # Modify the libs if necessary for systems with only -mt boost libs 148 if not os.path.exists( 149 os.path.join(sysconfig.PREFIX, "lib", "libboost_filesystem.so")): 150 # It's likely that this system doesn't have symlinks setup 148 if os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \ 149 'libboost_filesystem-mt.so')): 151 150 # So add '-mt' to the libraries 152 151 for lib in _libraries: 153 152 if lib[:6] == "boost_":