replace tabs with spaces
This commit is contained in:
parent
ffc513763f
commit
ea1f96c246
5
setup.py
5
setup.py
|
@ -118,6 +118,7 @@ if not OS == "win":
|
||||||
boosttype = 'nomt'
|
boosttype = 'nomt'
|
||||||
else:
|
else:
|
||||||
boosttype = 'mt'
|
boosttype = 'mt'
|
||||||
|
|
||||||
removals = ['-g', '-Wstrict-prototypes']
|
removals = ['-g', '-Wstrict-prototypes']
|
||||||
|
|
||||||
if python_version == '2.5':
|
if python_version == '2.5':
|
||||||
|
@ -152,8 +153,8 @@ if boosttype == "nomt":
|
||||||
'boost_thread', 'z', 'pthread', 'ssl']
|
'boost_thread', 'z', 'pthread', 'ssl']
|
||||||
print 'Libraries nomt'
|
print 'Libraries nomt'
|
||||||
elif boosttype == "mt":
|
elif boosttype == "mt":
|
||||||
librariestype = ['boost_filesystem-mt', 'boost_date_time-mt',
|
librariestype = ['boost_filesystem', 'boost_date_time',
|
||||||
'boost_thread-mt', 'z', 'pthread', 'ssl']
|
'boost_thread', 'z', 'pthread', 'ssl']
|
||||||
print 'Libraries mt'
|
print 'Libraries mt'
|
||||||
|
|
||||||
def fetchCpp():
|
def fetchCpp():
|
||||||
|
|
Loading…
Reference in New Issue