From 7a48610f427b948f8e809cd3ff0ea3a00b40e95f Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 15 Feb 2005 03:31:35 +0000 Subject: [PATCH] Added OFX library support. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 45f39896..df934f41 100755 --- a/setup.py +++ b/setup.py @@ -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",