mirror of
https://github.com/markqvist/Sideband.git
synced 2025-12-01 04:37:03 -05:00
Updated build recipes
This commit is contained in:
parent
846e7d7687
commit
6a133842db
32 changed files with 1154 additions and 1614 deletions
12
recipes/python3/patches/py3.7.1_fix-zlib-version.patch
Normal file
12
recipes/python3/patches/py3.7.1_fix-zlib-version.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
--- Python-3.7.1/setup.py.orig 2018-10-20 08:04:19.000000000 +0200
|
||||
+++ Python-3.7.1/setup.py 2019-02-17 00:24:30.715904412 +0100
|
||||
@@ -1410,7 +1410,8 @@ class PyBuildExt(build_ext):
|
||||
if zlib_inc is not None:
|
||||
zlib_h = zlib_inc[0] + '/zlib.h'
|
||||
version = '"0.0.0"'
|
||||
- version_req = '"1.1.3"'
|
||||
+ version_req = '"{}"'.format(
|
||||
+ os.environ.get('ZLIB_VERSION', '1.1.3'))
|
||||
if host_platform == 'darwin' and is_macosx_sdk_path(zlib_h):
|
||||
zlib_h = os.path.join(macosx_sdk_root(), zlib_h[1:])
|
||||
with open(zlib_h) as fp:
|
||||
Loading…
Add table
Add a link
Reference in a new issue