setup_ledger.py needs to link against libgmp

This commit is contained in:
John Wiegley 2004-09-08 02:00:20 -04:00
parent 6cfdd704a9
commit 612e94ceaa
2 changed files with 4 additions and 5 deletions

View file

@ -10,15 +10,13 @@ def bar (str):
register_option ("hello", "h:", foo)
register_option ("goodbye", "g:", bar)
print process_arguments (sys.argv[1:])
args = process_arguments (sys.argv[1:])
process_environment (os.environ, "TEST_")
sys.exit(0)
parser = TextualParser ()
register_parser (parser)
journal = Journal ()
parse_journal_file (sys.argv[1], journal)
parse_journal_file (args[0], journal)
print journal[-1].payee

View file

@ -11,5 +11,6 @@ setup(name = "Ledger",
ext_modules = [
Extension("ledger", ["pyledger.cc"],
define_macros = [('PYTHON_MODULE', None)],
libraries = ["amounts_bpy", "ledger_bpy", "boost_python",
libraries = ["amounts_bpy", "gmp",
"ledger_bpy", "boost_python",
"pcre", "xmlparse", "xmltok"])])