Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 1 | From 9f3073bf6a7c7c51bb49d25f65c8f75cc704a5ee 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> |
| 13 | --- |
| 14 | setup.cfg | 12 ++++++++++++ |
| 15 | 1 file changed, 12 insertions(+) |
| 16 | |
| 17 | diff --git a/setup.cfg b/setup.cfg |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 18 | index 3ab2e127..e92615f3 100644 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 19 | --- a/setup.cfg |
| 20 | +++ b/setup.cfg |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 21 | @@ -4,3 +4,15 @@ test=pytest |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 22 | [flake8] |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 23 | extend-ignore = E203, W503 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 24 | max-line-length = 88 |
| 25 | + |
| 26 | +[build_ext] |
| 27 | +disable-platform-guessing = 1 |
| 28 | +enable-zlib = 1 |
| 29 | +enable-jpeg = 1 |
| 30 | +enable-tiff = 1 |
| 31 | +enable-freetype = 1 |
| 32 | +enable-lcms = 1 |
| 33 | +enable-jpeg2000 = 1 |
| 34 | +disable-webp = 1 |
| 35 | +disable-webpmux = 1 |
| 36 | +disable-imagequant = 1 |
| 37 | -- |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 38 | 2.20.1 |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 39 | |