diff options
author | Baruch Sterin <baruchs@gmail.com> | 2013-06-18 20:30:35 -0700 |
---|---|---|
committer | Baruch Sterin <baruchs@gmail.com> | 2013-06-18 20:30:35 -0700 |
commit | 77cef7ca101a00133aae376d129a9ba0e6da4e79 (patch) | |
tree | 310cdc7b66a02fb17f18470953b060981c2cac46 /src/python | |
parent | bc39220df48d09ce7eb08c3839638b5030e31016 (diff) | |
download | abc-77cef7ca101a00133aae376d129a9ba0e6da4e79.tar.gz abc-77cef7ca101a00133aae376d129a9ba0e6da4e79.tar.bz2 abc-77cef7ca101a00133aae376d129a9ba0e6da4e79.zip |
fix pyabc to link correctly on some linux version, fixing problem caused by the changeset named: Suggested changes to counting time in Abc_Clock()
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/setup.py b/src/python/setup.py index 7613d4d3..560262d4 100644 --- a/src/python/setup.py +++ b/src/python/setup.py @@ -30,6 +30,7 @@ else: define_macros.append( ('LIN', 1) ) libraries.append( 'abc' ) + libraries.append( 'rt' ) libraries.append( 'readline' ) library_dirs.append('./../../') |