Bump default Boost version to 1.46.1

This commit is contained in:
John Wiegley 2011-03-23 00:33:10 -04:00
parent 584bdb1600
commit 7b7a9503c9
2 changed files with 12 additions and 11 deletions

19
acprep
View file

@ -244,7 +244,8 @@ class CommandLineApp(object):
force_exit = True # If true, always ends run() with sys.exit()
log_handler = None
darwin_gcc = False
boost_version = "1_46"
boost_version = "1_46_1"
boost_major = "1_46_1"
options = {
'debug': False,
@ -1246,20 +1247,20 @@ class PrepareBuild(CommandLineApp):
self.CPPFLAGS.append('-D_GLIBCXX_DEBUG=1')
if self.boost_info.configure(
home_path = '/usr/local/stow/boost_%s_0-%s' % \
home_path = '/usr/local/stow/boost_%s-%s' % \
(self.boost_version, self.boost_inc_ident),
suffix = '-%s-sd-%s' % \
(self.boost_lib_ident, self.boost_version),
file_suffix = '.dylib',
include_path = 'include/boost-%s' % self.boost_version):
include_path = 'include/boost-%s' % self.boost_major):
pass
elif self.boost_info.configure(
home_path = '/usr/local/stow/boost_%s_0-%s' % \
home_path = '/usr/local/stow/boost_%s-%s' % \
(self.boost_version, self.boost_inc_ident),
suffix = '-%s-d-%s' % \
(self.boost_lib_ident, self.boost_version),
file_suffix = '.dylib',
include_path = 'include/boost-%s' % self.boost_version):
include_path = 'include/boost-%s' % self.boost_major):
pass
elif self.boost_info.configure(suffix = '-d', file_suffix = '.dylib'):
pass
@ -1268,20 +1269,20 @@ class PrepareBuild(CommandLineApp):
if self.boost_info.configure():
pass
elif self.boost_info.configure(
home_path = '/usr/local/stow/boost_%s_0-%s' % \
home_path = '/usr/local/stow/boost_%s-%s' % \
(self.boost_version, self.boost_inc_ident),
suffix = '-%s-s-%s' % \
(self.boost_lib_ident, self.boost_version),
file_suffix = '.dylib',
include_path = 'include/boost-%s' % self.boost_version):
include_path = 'include/boost-%s' % self.boost_major):
pass
elif self.boost_info.configure(
home_path = '/usr/local/stow/boost_%s_0-%s' % \
home_path = '/usr/local/stow/boost_%s-%s' % \
(self.boost_version, self.boost_inc_ident),
suffix = '-%s-%s' % \
(self.boost_lib_ident, self.boost_version),
file_suffix = '.dylib',
include_path = 'include/boost-%s' % self.boost_version):
include_path = 'include/boost-%s' % self.boost_major):
pass
def setup_flavor_default(self):

View file

@ -5,8 +5,8 @@
STOW_ROOT = /usr/local/stow
PRODUCTS = $(HOME)/Products
GCC_VERSION = 4.6
BOOST_VERSION = 1_46_0
GCC_VERSION = 4.5
BOOST_VERSION = 1_46_1
CC = gcc-mp-$(GCC_VERSION)
ifeq ($(CC),clang)