summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-05 02:14:14 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-05 02:14:14 -0500
commit111881f3cea1266206c7ea6382e44d70ed71f37a (patch)
tree5ec0c6135f77e56089ff64ddde5db12971faa905
parent78e6770c4c276db3647952f21a6bf3ea465edb88 (diff)
downloadledger-111881f3cea1266206c7ea6382e44d70ed71f37a.tar.gz
ledger-111881f3cea1266206c7ea6382e44d70ed71f37a.tar.bz2
ledger-111881f3cea1266206c7ea6382e44d70ed71f37a.zip
Only disable shared libraries by default for myself
-rwxr-xr-xacprep5
1 files changed, 3 insertions, 2 deletions
diff --git a/acprep b/acprep
index 32670915..a73e81f0 100755
--- a/acprep
+++ b/acprep
@@ -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()