diff options
author | Ross Burton <ross.burton@intel.com> | 2015-12-18 16:56:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-27 11:26:57 +0000 |
commit | 81f009d173f24501ab0e04d845db74ecb5f8e332 (patch) | |
tree | 14f10510d429fb06c3b58d228b5c788972a5e7db /meta | |
parent | 415fc571fdc568eb496ad0d135a04986aa66bbc9 (diff) | |
download | openembedded-core-81f009d173f24501ab0e04d845db74ecb5f8e332.tar.gz openembedded-core-81f009d173f24501ab0e04d845db74ecb5f8e332.tar.bz2 openembedded-core-81f009d173f24501ab0e04d845db74ecb5f8e332.zip |
conf/local.conf.sample: comment out ASSUME_PROVIDED=libsdl-native
Ubuntu 15.10 and Debian testing can't build qemu-native against the host libsdl.
Now that libsdl-native is buildable, comment out the ASSUME_PROVIDED which meant
it wouldn't be used.
[ YOCTO #8553 ]
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/local.conf.sample | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta/conf/local.conf.sample b/meta/conf/local.conf.sample index 3ae24aba9d..96c120a4eb 100644 --- a/meta/conf/local.conf.sample +++ b/meta/conf/local.conf.sample @@ -201,11 +201,12 @@ BB_DISKMON_DIRS = "\ # Qemu configuration # # By default qemu will build with a builtin VNC server where graphical output can be -# seen. The two lines below enable the SDL backend too. This assumes there is a -# libsdl library available on your build system. +# seen. The two lines below enable the SDL backend too. By default libsdl-native will +# be built, if you want to use your host's libSDL instead of the minimal libsdl built +# by libsdl-native then uncomment the ASSUME_PROVIDED line below. PACKAGECONFIG_append_pn-qemu-native = " sdl" PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl" -ASSUME_PROVIDED += "libsdl-native" +#ASSUME_PROVIDED += "libsdl-native" # CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to |