Buildroot 2018-11 (#258)

* Update to buildroot 2018.11

* containerd update

* runc update

* runc docker engine

* runc docker proxy

* update rpi firmware

* update network manager

* update dhcpd

* update wait on network

* update rpi wifi

* revert glibc
This commit is contained in:
Pascal Vizeli
2018-11-26 11:04:01 +01:00
committed by GitHub
parent a9bbc7babe
commit 4411307353
3154 changed files with 41316 additions and 24203 deletions

View File

@@ -4,9 +4,13 @@ Date: Thu, 27 Jul 2017 09:46:07 +0200
Subject: [PATCH] Determine boost_python name depending on current Python
version
Python2 requires boost_python and Python3 requires boost_python3.
Python2 requires boost_python27 and Python3 requires boost_python37
(since boost 1.67).
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Bernd: adapted for python-3.7]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
setup.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
@@ -19,9 +23,9 @@ index fdf5c27..4b38569 100644
from setuptools import setup, find_packages, Extension
import sys, os
+boostlib = "boost_python3"
+boostlib = "boost_python37"
+if sys.version_info < (3, 0):
+ boostlib = "boost_python"
+ boostlib = "boost_python27"
+
setup(
name = 'pylibconfig',