diff options
author | John Wiegley <johnw@newartisans.com> | 2011-03-23 00:33:10 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-03-23 00:33:10 -0400 |
commit | 7b7a9503c974bf58b5255930370a03aff5c148d2 (patch) | |
tree | 7f87e1fd7a7ed423611a8381584fd7c1becaeea0 | |
parent | 584bdb1600d4e0c71cbfdeca18f4db7170c0ab3c (diff) | |
download | fork-ledger-7b7a9503c974bf58b5255930370a03aff5c148d2.tar.gz fork-ledger-7b7a9503c974bf58b5255930370a03aff5c148d2.tar.bz2 fork-ledger-7b7a9503c974bf58b5255930370a03aff5c148d2.zip |
Bump default Boost version to 1.46.1
-rwxr-xr-x | acprep | 19 | ||||
-rw-r--r-- | lib/Makefile | 4 |
2 files changed, 12 insertions, 11 deletions
@@ -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) |