summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libsdl
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-22 10:59:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-16 15:31:40 +0100
commit3476a49b10093c58b2f89e3d9a8527224f1bd7f6 (patch)
tree369d23a1d434e43284ea2bdffa318f5408b13014 /meta/recipes-graphics/libsdl
parent3a88df915831f2fd5e46ed71b21190398d1de0f1 (diff)
downloadpoky-3476a49b10093c58b2f89e3d9a8527224f1bd7f6.tar.gz
binconfig-disabled: Add class and use
This adds a binconfig-disabled class which can be used by recipes where a -config file is installed but we wish to disable it and just rely on the .pc files instead. Rather than simply deleting it, we make the script "exit 1" so that it can be found in PATH and raise a build error rather than something silently falling back to the build system for example. Rather than randomly finding -config files, this adds in the specification of a list of binconfig scripts which is more deterministic and maintainable moving forward. This patch converts various users in OE-Core to use this, a world build of OE-Core tests out ok with this change. There will likely be issues in other layers however, hence this being a RFT. (From OE-Core rev: 5870bd272b0b077d0826fb900b251884c1c05061) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libsdl')
-rw-r--r--meta/recipes-graphics/libsdl/libsdl_1.2.15.bb4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb b/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb
index 4a7712116f..f81d862cdc 100644
--- a/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb
+++ b/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb
@@ -30,7 +30,9 @@ S = "${WORKDIR}/SDL-${PV}"
30SRC_URI[md5sum] = "9d96df8417572a2afb781a7c4c811a85" 30SRC_URI[md5sum] = "9d96df8417572a2afb781a7c4c811a85"
31SRC_URI[sha256sum] = "d6d316a793e5e348155f0dd93b979798933fb98aa1edebcc108829d6474aad00" 31SRC_URI[sha256sum] = "d6d316a793e5e348155f0dd93b979798933fb98aa1edebcc108829d6474aad00"
32 32
33inherit autotools lib_package binconfig pkgconfig 33BINCONFIG = "${bindir}/sdl-config"
34
35inherit autotools lib_package binconfig-disabled pkgconfig
34 36
35EXTRA_OECONF = "--disable-static --enable-cdrom --enable-threads --enable-timers \ 37EXTRA_OECONF = "--disable-static --enable-cdrom --enable-threads --enable-timers \
36 --enable-file --disable-oss --disable-esd --disable-arts \ 38 --enable-file --disable-oss --disable-esd --disable-arts \