diff options
author | John Wiegley <johnw@newartisans.com> | 2011-11-15 13:20:57 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-11-15 13:20:57 -0600 |
commit | 7112ff5d56af6db2418a210f39396e3f79e1369e (patch) | |
tree | 62d513a31a86e08890fa93a7e5b038b4d0a271fc /acprep | |
parent | c2c11d43ca14aad1884ab6efc4637245a4c16746 (diff) | |
download | ledger-7112ff5d56af6db2418a210f39396e3f79e1369e.tar.gz ledger-7112ff5d56af6db2418a210f39396e3f79e1369e.tar.bz2 ledger-7112ff5d56af6db2418a210f39396e3f79e1369e.zip |
Default to using Boost 1.48, without _GLIBCXX_DEBUG
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -254,8 +254,8 @@ class CommandLineApp(object): force_exit = True # If true, always ends run() with sys.exit() log_handler = None darwin_gcc = False - boost_version = "1_47_0" - boost_major = "1_47" + boost_version = "1_48_0" + boost_major = "1_48" options = { 'debug': False, @@ -1281,8 +1281,9 @@ class PrepareBuild(CommandLineApp): def locate_darwin_libraries(self): if self.current_flavor == 'debug': if self.options.use_glibcxx_debug and not self.options.use_clang: - self.log.debug('We are using GLIBCXX_DEBUG, so setting up flags') - self.CPPFLAGS.append('-D_GLIBCXX_DEBUG=1') + #self.log.debug('We are using GLIBCXX_DEBUG, so setting up flags') + #self.CPPFLAGS.append('-D_GLIBCXX_DEBUG=1') + pass if self.boost_info.configure( home_path = '/usr/local/stow/boost_%s-%s' % \ |