From 7b7a9503c974bf58b5255930370a03aff5c148d2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 23 Mar 2011 00:33:10 -0400 Subject: Bump default Boost version to 1.46.1 --- acprep | 19 ++++++++++--------- lib/Makefile | 4 ++-- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/acprep b/acprep index 00999256..5797f4b2 100755 --- a/acprep +++ b/acprep @@ -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): diff --git a/lib/Makefile b/lib/Makefile index 0e3d1da1..10e63d5b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -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) -- cgit v1.2.3