Brad Bishop | 868407c | 2019-11-04 13:24:47 -0500 | [diff] [blame] | 1 | From 862a981ce462cd83a99e3db9faeeda1f8c64983f Mon Sep 17 00:00:00 2001 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Mon, 18 Mar 2019 23:23:55 -0400 |
| 4 | Subject: [PATCH] explicitly set compile options |
| 5 | |
| 6 | OE does not support to install egg package, so |
| 7 | explicitly set build_ext options for oe-core's |
| 8 | `setup.py install' |
| 9 | |
| 10 | Upstream-Status: Inappropriate [oe specific] |
| 11 | |
| 12 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
Brad Bishop | 868407c | 2019-11-04 13:24:47 -0500 | [diff] [blame] | 13 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 14 | --- |
| 15 | setup.cfg | 12 ++++++++++++ |
| 16 | 1 file changed, 12 insertions(+) |
| 17 | |
| 18 | diff --git a/setup.cfg b/setup.cfg |
Brad Bishop | 868407c | 2019-11-04 13:24:47 -0500 | [diff] [blame] | 19 | index 1c6ebc84..1ccc3d69 100644 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 20 | --- a/setup.cfg |
| 21 | +++ b/setup.cfg |
Brad Bishop | 868407c | 2019-11-04 13:24:47 -0500 | [diff] [blame] | 22 | @@ -13,3 +13,15 @@ multi_line_output = 3 |
| 23 | |
| 24 | [tool:pytest] |
| 25 | addopts = -rs |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 26 | + |
| 27 | +[build_ext] |
| 28 | +disable-platform-guessing = 1 |
| 29 | +enable-zlib = 1 |
| 30 | +enable-jpeg = 1 |
| 31 | +enable-tiff = 1 |
| 32 | +enable-freetype = 1 |
| 33 | +enable-lcms = 1 |
| 34 | +enable-jpeg2000 = 1 |
| 35 | +disable-webp = 1 |
| 36 | +disable-webpmux = 1 |
| 37 | +disable-imagequant = 1 |