diff options
author | Adam Duskett <aduskett@gmail.com> | 2018-01-30 18:52:29 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-02-03 08:26:16 +0100 |
commit | 233202597d9411399aeaded2f9a7cd14f2e29833 (patch) | |
tree | 1a7c36255df3ec5d90a7319aa6decfc5aef9bc46 /package/python3/0019-Add-an-option-to-disable-expat.patch | |
parent | 60f9c9f98b3fef9de5d33b9185c1bd2265766920 (diff) | |
download | buildroot-233202597d9411399aeaded2f9a7cd14f2e29833.tar.gz buildroot-233202597d9411399aeaded2f9a7cd14f2e29833.zip |
python3: bump to 2.6.4
Also update necessary patches.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python3/0019-Add-an-option-to-disable-expat.patch')
-rw-r--r-- | package/python3/0019-Add-an-option-to-disable-expat.patch | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/package/python3/0019-Add-an-option-to-disable-expat.patch b/package/python3/0019-Add-an-option-to-disable-expat.patch index 0ec0b21555..6361c1f450 100644 --- a/package/python3/0019-Add-an-option-to-disable-expat.patch +++ b/package/python3/0019-Add-an-option-to-disable-expat.patch @@ -13,6 +13,8 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Samuel Martin <s.martin49@gmail.com> [ Andrey Smirnov: ported to Python 3.6 ] Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> +[aduskett@gmail.com: Update for python 3.6.4] +Signed-off-by: Adam Duskett <aduskett@gmail.com> --- Makefile.pre.in | 6 +++++- configure.ac | 18 +++++++++++++----- @@ -23,7 +25,7 @@ diff --git a/Makefile.pre.in b/Makefile.pre.in index 6a6bc082cd..dc4b92b6fe 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in -@@ -1208,7 +1208,7 @@ LIBSUBDIRS= site-packages \ +@@ -1240,7 +1240,7 @@ LIBSUBDIRS= site-packages \ logging csv wsgiref urllib \ ctypes ctypes/macholib \ idlelib idlelib/Icons \ @@ -32,7 +34,7 @@ index 6a6bc082cd..dc4b92b6fe 100644 importlib \ turtledemo \ multiprocessing multiprocessing/dummy \ -@@ -1271,6 +1271,10 @@ ifeq (@CURSES@,yes) +@@ -1305,6 +1305,10 @@ ifeq (@CURSES@,yes) LIBSUBDIRS += curses endif @@ -78,7 +80,7 @@ diff --git a/setup.py b/setup.py index 76429e1326..38aa5e605e 100644 --- a/setup.py +++ b/setup.py -@@ -1495,7 +1495,7 @@ class PyBuildExt(build_ext): +@@ -1525,7 +1525,7 @@ class PyBuildExt(build_ext): # # More information on Expat can be found at www.libexpat.org. # @@ -86,7 +88,7 @@ index 76429e1326..38aa5e605e 100644 + if '--with-expat=system' in sysconfig.get_config_var("CONFIG_ARGS"): expat_inc = [] define_macros = [] - expat_lib = ['expat'] + extra_compile_args = [] -- 2.13.5 |