diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-05 02:14:14 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-05 02:14:14 -0500 |
commit | 111881f3cea1266206c7ea6382e44d70ed71f37a (patch) | |
tree | 5ec0c6135f77e56089ff64ddde5db12971faa905 | |
parent | 78e6770c4c276db3647952f21a6bf3ea465edb88 (diff) | |
download | ledger-111881f3cea1266206c7ea6382e44d70ed71f37a.tar.gz ledger-111881f3cea1266206c7ea6382e44d70ed71f37a.tar.bz2 ledger-111881f3cea1266206c7ea6382e44d70ed71f37a.zip |
Only disable shared libraries by default for myself
-rwxr-xr-x | acprep | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -182,8 +182,7 @@ class PrepareBuild(CommandLineApp): self.current_flavor = 'debug' self.products_dir = None self.build_dir = self.source_dir - self.configure_args = ['--disable-shared', - '--with-included-gettext'] + self.configure_args = ['--with-included-gettext'] self.sys_include_dirs = [] self.sys_library_dirs = [] @@ -756,6 +755,8 @@ class PrepareBuild(CommandLineApp): self.CXXFLAGS.append('-msse3') self.CPPFLAGS.append('-D_GLIBCXX_FULLY_DYNAMIC_STRING=1') + self.configure_args.append('--disable-shared') + self.options.use_glibcxx_debug = True self.locate_my_libraries() |