diff options
author | John Wiegley <johnw@newartisans.com> | 2005-02-15 03:31:35 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:01 -0400 |
commit | 7a48610f427b948f8e809cd3ff0ea3a00b40e95f (patch) | |
tree | 2e58c02cac7d8477ed023b2651d5da54b42ce31a | |
parent | 6e5996e3d02a7e40640c68d532641a95646598e9 (diff) | |
download | fork-ledger-7a48610f427b948f8e809cd3ff0ea3a00b40e95f.tar.gz fork-ledger-7a48610f427b948f8e809cd3ff0ea3a00b40e95f.tar.bz2 fork-ledger-7a48610f427b948f8e809cd3ff0ea3a00b40e95f.zip |
Added OFX library support.
-rwxr-xr-x | setup.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ if os.environ.has_key ("HAVE_XMLPARSE") and\ os.environ["HAVE_XMLPARSE"] == "true": libs.extend (["xmlparse", "xmltok"]) +if os.environ.has_key ("HAVE_LIBOFX") and\ + os.environ["HAVE_LIBOFX"] == "true": + libs.extend (["ofx"]) + setup(name = "Ledger", version = "2.0b", description = "Ledger Accounting Tool", |