blob: d4372696fe080a7068a83a5babb7a13ed227e279 [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001From 9f3073bf6a7c7c51bb49d25f65c8f75cc704a5ee Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 18 Mar 2019 23:23:55 -0400
4Subject: [PATCH] explicitly set compile options
5
6OE does not support to install egg package, so
7explicitly set build_ext options for oe-core's
8`setup.py install'
9
10Upstream-Status: Inappropriate [oe specific]
11
12Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
13---
14 setup.cfg | 12 ++++++++++++
15 1 file changed, 12 insertions(+)
16
17diff --git a/setup.cfg b/setup.cfg
Brad Bishop26bdd442019-08-16 17:08:17 -040018index 3ab2e127..e92615f3 100644
Brad Bishop19323692019-04-05 15:28:33 -040019--- a/setup.cfg
20+++ b/setup.cfg
Brad Bishop26bdd442019-08-16 17:08:17 -040021@@ -4,3 +4,15 @@ test=pytest
Brad Bishop19323692019-04-05 15:28:33 -040022 [flake8]
Brad Bishop26bdd442019-08-16 17:08:17 -040023 extend-ignore = E203, W503
Brad Bishop19323692019-04-05 15:28:33 -040024 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 Bishop26bdd442019-08-16 17:08:17 -0400382.20.1
Brad Bishop19323692019-04-05 15:28:33 -040039