summaryrefslogtreecommitdiffstats
path: root/recipes-graphics
Commit message (Collapse)AuthorAgeFilesLines
* wayland: Set meson configure optionsJoshua Watt2020-02-211-0/+1
| | | | | | | Sets the configure options required to build wayland-scanner using meson for MinGW Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
* wayland: Disable DTD validation on i686 MinGW3.1_M1Joshua Watt2019-12-091-0/+4
| | | | | | | | DTD validation can't be built for i686 MinGW because the assembly file used to encode the DTD string is incompatible (it works fine for x86_64 MinGW though). Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
* wayland: Disable libraryJoshua Watt2019-10-251-0/+2
| | | | | | | | | Disable building the wayland libraries for MinGW. The libraries don't compile for this platform, and are generally unneeded anyway. The wayland recipe is usually only compiled for nativesdk to pull in the wayland-scanner utility. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
* libsdl: remove2.8_M3Joshua Watt2019-07-241-4/+0
| | | | | libsdl is being removed from oe-core, so it should no longer be necessary here either.
* libsdl2: add bbappend to fix build with mingwRoss Burton2018-06-051-0/+13
| | | | | | | We need to disable X11 as we do with libsdl1, and also convince libtool to stop trying to be clever so the build doesn't break. Signed-off-by: Ross Burton <ross.burton@intel.com>
* Fix Yocto Project compatible errorsMark Hatle2017-08-281-5/+0
| | | | | | | | | | | | | | Each of the recipes modified fail the YP compatible checking script because they modify the checksum of the package, even when the mingw32 SDK is not enabled. This is corrected by ensuring that each of the settings is only done when the mingw32 override is enabled. The PACKAGECONFIG options are moved to oe-core, as there is no way to specify they should only available in the mingw32 override is enabled. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* libsdl: Fix ${PN}-bin handling for .exe filesNathan Rossi2017-04-061-0/+2
| | | | | | | | For mingw it is convention to have DLLs in bindir. To avoid grouping anything other that .exe files into the ${PN}-bin package, override it so that only '*.exe' files are shipped. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* libsdl: Windows specific PACKAGECONFIGNathan Rossi2017-04-061-0/+7
Add a PACKAGECONFIG for 'stdio-redirect'. This configure option enables/disables the Windows only option for redirecting the stdout/stderr to files instead of to the console. Add the 'directx' PACKAGECONFIG to configure whether to build with DirectX support. By default this is enabled (when targeting mingw32/windows) however this requires the DirectX libraries in order to include and link against. Disable X11 support when building for the nativesdk mingw32. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>