Changeset 2330

Show
Ignore:
Timestamp:
11/26/07 16:42:07 (14 months ago)
Author:
markybob
Message:

tweak boost library variables

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • tags/deluge-0.5.6.96/setup.py

    r2312 r2330  
    131131            'libboost_thread.so')): 
    132132            boost_thread = "boost_thread" 
     133 
     134        if 'boost_filesystem' not in vars(): 
     135            boost_filesystem = "boost_filesystem-mt" 
     136        if 'boost_date_time' not in vars(): 
     137            boost_date_time = "boost_date_time-mt" 
     138        if 'boost_thread' not in vars(): 
     139            boost_thread = "boost_thread-mt" 
    133140             
    134141    elif OS == "freebsd": 
  • trunk/setup.py

    r2303 r2330  
    2929NAME = "deluge" 
    3030FULLNAME = "Deluge BitTorrent Client" 
    31 VERSION    = "0.5.6.95" 
     31VERSION    = "0.5.6.96" 
    3232AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul" 
    3333EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com" 
     
    131131            'libboost_thread.so')): 
    132132            boost_thread = "boost_thread" 
     133 
     134        if 'boost_filesystem' not in vars(): 
     135            boost_filesystem = "boost_filesystem-mt" 
     136        if 'boost_date_time' not in vars(): 
     137            boost_date_time = "boost_date_time-mt" 
     138        if 'boost_thread' not in vars(): 
     139            boost_thread = "boost_thread-mt" 
    133140             
    134141    elif OS == "freebsd": 
  • trunk/src/common.py

    r2315 r2330  
    3333 
    3434PROGRAM_NAME = "Deluge" 
    35 PROGRAM_VERSION = "0.5.6.95" 
     35PROGRAM_VERSION = "0.5.6.96" 
    3636 
    3737CLIENT_CODE = "DE"