summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-30 17:49:32 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-30 17:49:32 -0400
commit4fec10777b90dccf10f458d74c98164efcb95647 (patch)
tree2b88eb84f5abe6dc9420a42b65cc72960861ee49 /acprep
parent924c0a30134d0ffc591d596d2646bd946a3536ef (diff)
downloadfork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.tar.gz
fork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.tar.bz2
fork-ledger-4fec10777b90dccf10f458d74c98164efcb95647.zip
On my system, use _GLIBCXX_FULLY_DYNAMIC_STRING
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep8
1 files changed, 5 insertions, 3 deletions
diff --git a/acprep b/acprep
index a7beeae8..27c15c0f 100755
--- a/acprep
+++ b/acprep
@@ -712,12 +712,14 @@ class PrepareBuild(CommandLineApp):
def setup_for_johnw(self):
# jww (2009-03-09): Some peculiarities specific to my system
- if exists('/usr/local/stow/cppunit/include'):
- self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit/include')
- self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit/lib')
+ if exists('/Users/johnw/Dropbox/Accounts/ledger.dat'):
+ if exists('/usr/local/stow/cppunit/include'):
+ self.sys_include_dirs.insert(0, '/usr/local/stow/cppunit/include')
+ self.sys_library_dirs.insert(0, '/usr/local/stow/cppunit/lib')
self.CXXFLAGS.append('-march=nocona')
self.CXXFLAGS.append('-msse3')
+ self.CPPFLAGS.append('-D_GLIBCXX_FULLY_DYNAMIC_STRING=1')
self.options.use_glibcxx_debug = True