diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-01-14 21:59:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-01-14 22:04:02 +0000 |
commit | c35b486b7f92a694ac2bae92d97c0e09e6a521a7 (patch) | |
tree | 6f7cb0059f24028fac0a6267a9a6d9014a7e39df /community/py-lz4/system-lz4.patch | |
parent | 008b78c9d43bb82d09cd369f04866d6bfa886af0 (diff) | |
download | aports-c35b486b7f92a694ac2bae92d97c0e09e6a521a7.tar.bz2 aports-c35b486b7f92a694ac2bae92d97c0e09e6a521a7.tar.xz |
community/py-lz4: force use of system lz4
also run tests for python3 instead of python2
Diffstat (limited to 'community/py-lz4/system-lz4.patch')
-rw-r--r-- | community/py-lz4/system-lz4.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/py-lz4/system-lz4.patch b/community/py-lz4/system-lz4.patch new file mode 100644 index 0000000000..7a7ef828c7 --- /dev/null +++ b/community/py-lz4/system-lz4.patch @@ -0,0 +1,27 @@ +diff --git a/setup.py b/setup.py +index 19b50f0..9302e4d 100644 +--- a/setup.py ++++ b/setup.py +@@ -50,6 +50,8 @@ lz4frame_sources = [ + 'lz4/frame/_frame.c' + ] + ++liblz4_found = True ++ + if liblz4_found is True: + libraries.append('lz4') + else: +@@ -86,9 +88,10 @@ if compiler == 'msvc': + extra_compile_args = ['/Ot', '/Wall'] + elif compiler in ('unix', 'mingw32'): + if liblz4_found: +- extra_link_args.append(pkgconfig.libs('liblz4')) +- if pkgconfig.cflags('liblz4'): +- extra_compile_args.append(pkgconfig.cflags('liblz4')) ++ extra_link_args.append('-llz4') ++# extra_link_args.append(pkgconfig.libs('liblz4')) ++# if pkgconfig.cflags('liblz4'): ++# extra_compile_args.append(pkgconfig.cflags('liblz4')) + else: + extra_compile_args = [ + '-O3', |