diff options
author | methane <songofacandy@gmail.com> | 2012-02-10 21:37:32 -0800 |
---|---|---|
committer | methane <songofacandy@gmail.com> | 2012-02-10 21:37:32 -0800 |
commit | c2e297d5dd62965010bb559561815467af9cb450 (patch) | |
tree | d24c0982c7084373d844693ca9d7bedaf4cbc4eb | |
parent | 1485b998a428514fa56877411033198877f8f7e3 (diff) | |
parent | d685614138e588dc82b84cddae254fc120279762 (diff) | |
download | msgpack-python-c2e297d5dd62965010bb559561815467af9cb450.tar.gz |
Merge pull request #2 from urso/master
adopt setup.py to work with python older 2.7
-rwxr-xr-x | setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -45,7 +45,9 @@ else: Sdist = sdist -libraries = ['ws2_32'] if sys.platform == 'win32' else [] +libraries = [] +if sys.platform == 'win32': + libraries.append('ws2_32') msgpack_mod = Extension('msgpack._msgpack', sources=sources, |