diff options
Diffstat (limited to 'math/py-CyLP/files')
-rw-r--r-- | math/py-CyLP/files/patch-setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/math/py-CyLP/files/patch-setup.py b/math/py-CyLP/files/patch-setup.py new file mode 100644 index 000000000000..f2607cf7e063 --- /dev/null +++ b/math/py-CyLP/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2014-02-14 17:25:06 UTC ++++ setup.py +@@ -108,7 +108,7 @@ ext_modules = [] + + if operatingSystem == 'mac': + extra_link_args = ['-Wl,-framework', '-Wl,Accelerate', '-headerpad_max_install_names'] +-elif operatingSystem == 'linux': ++elif operatingSystem == 'linux' or operatingSystem.startswith('freebsd'): + extra_link_args = ['-lrt'] + else: + # Assuming Windows |