Ticket #1044: lzo.patch
File lzo.patch, 742 bytes (added by , 4 years ago) |
---|
-
setup.py
old new 47 47 include_dirs.append(os.path.join(LZO_DIR, r"include\lzo")) 48 48 include_dirs.append(os.path.join(LZO_DIR, "include")) 49 49 lib1_file = os.path.join(LZO_DIR, "lzo.lib") 50 lib2_file = os.path.join(LZO_DIR, "l ib", "liblzo2.a")50 lib2_file = os.path.join(LZO_DIR, "lzo2.lib") 51 51 if os.path.exists(lib2_file): 52 52 lib_file = lib2_file 53 53 else: … … 91 91 maintainer_email="jdboyd@jdboyd.net", 92 92 url="https://github.com/jd-boyd/python-lzo", 93 93 license="GNU General Public License (GPL)", 94 tests_require=['nose'], 94 95 cmdclass={ 95 96 'test': TestCommand 96 97 },