summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
Commit message (Collapse)AuthorAgeFilesLines
* mesa: inherit gettextMartin Jansa2013-08-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * build in clean tmpdir fails with: | make[6]: Entering directory `/OE/mesa/2_9.1.3-r9.0/git/src/mesa/drivers/dri/common/xmlpool' | Updating (de) de/LC_MESSAGES/options.mo from de.po. | Updating (es) es/LC_MESSAGES/options.mo from es.po. | Updating (nl) nl/LC_MESSAGES/options.mo from nl.po. | Updating (fr) fr/LC_MESSAGES/options.mo from fr.po. | /bin/bash: line 4: msgfmt: command not found | make[6]: *** [de/LC_MESSAGES/options.mo] Error 127 | Updating (sv) sv/LC_MESSAGES/options.mo from sv.po. | make[6]: *** Waiting for unfinished jobs.... | /bin/bash: line 4: msgfmt: command not found | make[6]: *** [es/LC_MESSAGES/options.mo] Error 127 | /bin/bash: line 4: msgfmt: command not found | make[6]: *** [nl/LC_MESSAGES/options.mo] Error 127 | /bin/bash: line 4: msgfmt: command not found | /bin/bash: line 4: msgfmt: command not found | make[6]: *** [fr/LC_MESSAGES/options.mo] Error 127 | make[6]: *** [sv/LC_MESSAGES/options.mo] Error 127 | make[6]: Leaving directory `/OE/mesa/2_9.1.3-r9.0/git/src/mesa/drivers/dri/common/xmlpool' (From OE-Core master rev: c30c8820828ea5a7ed99d58a9b400eeee916bf72) (From OE-Core rev: a065c225a70ef7c0bc7f169cad961765f9366263) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* weston: backport patch for libunwind configure option and disable itMartin Jansa2013-08-162-1/+42
| | | | | | | | | | | | * it's autodetected from sysroot and runtime dependency on libunwind isn't deterministic * master has weston 1.1.0 which already has this option and also explicitly disables libunwind (From OE-Core rev: f1297d0ad9356f34e29ccabdd6d4c21b2fd4f27f) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* directfb: add PACKAGECONFIG for jpeg2000Martin Jansa2013-08-161-0/+3
| | | | | | | | | | | | | * it's autodetected from sysroot * add PACKAGECONFIG to make it deterministic (From OE-Core master rev: abbe0da427ae9184bba19f1286e5edf0df132c22) (From OE-Core rev: 6e1b44a92e3f4725ef42c031e34c826dca53c988) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xkeyboard-config: add missing dependency on util-macrosMartin Jansa2013-08-161-1/+1
| | | | | | | | | | | | | * build fails without it configure.ac:7: error: must install xorg-macros 1.12 or later before (From OE-Core master rev: 8fb59ebab3758d41a13b4892d997176cadbc00e8) (From OE-Core rev: 321e9a837e00906d04c1b18a7699e6c2a636450c) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* directfb: don't patch pkg-config filesAndré Draszik2013-08-122-49/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are currently getting build failures of projects that rely on being able to access DirectFB's internal include directories, as returned via pkg-config, since the include paths returned by pkg-config are incomplete. The reason for that is the patch that is being removed with this change. It modified the cflags returned by pkg-config in an incorrect way, causing us to miss important include paths: For reference, pkg-config output with incorrect patch applied: ad@bril0118 #513 ~> pkg-config --cflags directfb-internal -D_GNU_SOURCE -D_REENTRANT -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb -I<builddir>/tmp/sysroots/<machine>/usr/include Now, with the incorrect patch removed, the output is as expected: ad@bril0118 #514 ~> pkg-config --cflags directfb-internal -D_GNU_SOURCE -D_REENTRANT -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb-internal -I<builddir>/tmp/sysroots/<machine>/usr/include/directfb Overall, the removed patch is not needed - pkg-config does the right thing these days and we can simply use the correctly working upstream versions of all DirectFB .pc files. (From OE-Core master rev: 795db65706d28bc194244a2ebbe6624ded584a33) (From OE-Core rev: 6d66de326bc355ff7bbb3923e0f3d59625f2ead9) Signed-off-by: André Draszik <andre.draszik@linaro.org> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: fix EGL compilation without X11 headersNicolas Dechesne2013-07-293-33/+362
| | | | | | | | | | | | | | | | | | Extracted from "d7033f4 mesa: upgrade to 9.1.3", already merged in master. Add EGL-Mutate-NativeDisplayType-depending-on-config.patch to build correctly in a non-X11 environment, it replaces fix-egl-compilation-without-x11-headers.patch. The new patch fixes compilation issues for components that include EGL/eglplatform.h file. With the original patch it was required to use -DMESA_EGL_NO_X11_HEADERS when using mesa .h files to get proper C definitions. The new patch was backported (trivial) to mesa 9.0.2 which is in dylan. (From OE-Core rev: e4f5a568ec8df772f2b8c07f2ac946b2e9247ccd) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* directfb:filter out -fno-omit-frame-pointer option on x86 archRoy.Li2013-07-091-0/+4
| | | | | | | | | | | | | | directfb need -fomit-frame-pointer option of gcc to build some inline asm code about mmx. But once -fno-omit-frame-pointer was added into TARGET_CFLAGS. That will cause directfb build error on x86 arch. (From OE-Core master rev: 07f4030909dcc14c4ce4d6d3690a192c0b4040a9) (From OE-Core rev: 7494dcf0c33a2bf256d9f43432113425e0f5ddbe) Signed-off-by: Roy.Li <rongqing.li@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* menu-cache: Fix segmentation faultLaurentiu Palcu2013-06-112-1/+34
| | | | | | | | | | | [YOCTO #4353] (From OE-Core master rev: 8c9c6155e6d83675a94b4eaae4ffc6dfeca399ee) (From OE-Core rev: 9bc9bb1eaca328b28aa1e914bb6e756989f7e301) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxi: Add libxfixes as dependencySaul Wold2013-06-101-1/+1
| | | | | | | | | | | | A clean build found libxi missing this dependency, possible build order issue. (From OE-Core master rev: 7f5a0f98b3449d0a95fd6c12f1d6fa61b835fc2b) (From OE-Core rev: 60dba251d2c7966643474940df337421e9521cd6) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-xorg: Add xkbcomp to RRECOMMENDSStefan Stanacar2013-05-221-1/+1
| | | | | | | | | | | | | OE-Core commit bdcc5e8f1286d288baf410458efc39a59b68d751 removed xkbcomp from RDEPENDS for xkeyboard-config but X server still needs it otherwise it fails to start. (From OE-Core master rev: f2330ebc3071d780cbc6d1ddab5c54bfadf8fffc) (From OE-Core rev: 3c77e7a6f40325e99dcf48ece77955e651248c33) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* pango: fix postinstall when using multilibLaurentiu Palcu2013-05-221-1/+1
| | | | | | | | | | | | | The pango-query-modules binary gets a multilib prefix and the postinstall has to call the appropriate binary. (From OE-Core master rev: 21ae18ca5e3be0b3e5cb0fdcf19b1476dbd38b0c) (From OE-Core rev: 8fb80d0387f657083c6ad54d8647bf76a8f62895) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-xf86-config: set DefaultDepth to 16 for qemumipsLaurentiu Palcu2013-04-181-0/+1
| | | | | | | | | | | | | Apparently, the default qemumips color depth was set to 8 and the colors were not displayed properly. cirrusfb driver doensn't seem to accept color depth as a kernel parameter, so we have to do it here. [YOCTO #4340] (From OE-Core rev: 876e020be334a9350094dbd1a29b9e49eceed603) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-xorg: fix segfaults for ARM SoCsAndreas Müller2013-04-162-1/+41
| | | | | | | (From OE-Core rev: f45a03b510479f6c27b24a0fd8d0c661674495e1) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: fix builds with libpng 1.6Ross Burton2013-04-162-1/+125
| | | | | | | | | | | libpng 1.6 emits more warnings than before, and is also stricter with function ordering. Fix the function ordering when reading PNGs, and stop treating all warnings as errors. (From OE-Core rev: 55d00b750f5c45e583abef406c96416cd6a8caa7) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: don't fail if x11 isn't availableAndreas Oberritter2013-04-164-1/+71
| | | | | | | | | Patches backported from mesa Git and from mesa-dev mailing list. (From OE-Core rev: f704bb42062f2ac15edaad36497a8d2815b8b8b2) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* allarch: Drop various problematic allarch usagesRichard Purdie2013-04-153-4/+2
| | | | | | | | | | | | | In each of these cases allarch is used where the package in question has a dependency on things which are not allach and change when MACHINE is changed. This leads to a rebuild of the package each time MACHINE is switched and the sstate checksum changes. The dependencies in question are not suited be being marked as ABISAFE. (From OE-Core rev: 087a680429efa713a98fbb89f927b046fe07f87c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* encodings: Set RDEPENDS correctlyRichard Purdie2013-04-151-0/+1
| | | | | | | | | | The .inc file sets RDEPENDS for the general font case but the dependencies don't apply to this recipe. This removes those dependencies, simplifying the dependency chains a little. (From OE-Core rev: 71b3a156c11d01565f546f33e3f1e1bea2fafdff) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ttf-bitstream-vera: Use fontcache class for postinstallRichard Purdie2013-04-151-7/+3
| | | | | | | | | Using the fontcache class means we can run the postinstall at build time so this is generally more efficient. (From OE-Core rev: 00cc684885efa555f7eac7653482f72095b1c443) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa-demos: fix build with non-Mesa GL stacksRoss Burton2013-04-124-1/+392
| | | | | | | | | | | | | These patches from upstream allow mesa-demos to build and run against a non-Mesa GL stack. Thanks to Tom Zanussi for doing this work for EMGD in meta-intel, and Otavio Salvador for confirming it also works for Freescale. [ YOCTO #3469 ] (From OE-Core rev: 60fabb6ea0474b19ad57873b402a608a92c5a5d4) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wayland: only build the scanner in wayland-nativeRoss Burton2013-04-122-0/+38
| | | | | | | | | | | | | We only build wayland-native for the scanner, so disable the bits we don't actually need. This gives us a small speed up but importantly should allow wayland-native to compile on older hosts such as CentOS 5 which currently fails. [ YOCTO #4245 ] (From OE-Core rev: bfbe9b6a4fd7a8b5e5827847c2adff894e609e94) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xmodmap: fix compile with gcc 4.8Ross Burton2013-04-122-0/+62
| | | | | | | | | | | | | | | With gcc 4.8 there are compile errors: xmodmap.c:289:5: error: implicit declaration of function 'asprintf' [-Werror=implicit-function-declaration] (and more) These have been fixed upstream so take the patch from git until 1.0.8 is released. (From OE-Core rev: 3a4ce4bd2b1ab7834edabbaf63acb18113cf1907) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wayland: add necessary dependencies to fix build errorZhenhua Luo2013-04-111-2/+4
| | | | | | | | | | | | | add libffi into DEPENDS to fix following build error: | checking for FFI... no | configure: error: Package requirements (libffi) were not met: | | No package 'libffi' found (From OE-Core rev: 23d6746efe1b3f31ad156db58fbc2767f750b712) Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* liberation-fonts: remove 1.06Ross Burton2013-04-041-45/+0
| | | | | | | | | | 1.06 requires fontforge-native to build, which as we don't have this version has never been used. (From OE-Core rev: 035e074cb7ff943defe3a10dc2a73b3cb2fd7e96) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxcb: remove obsolete version 1.1.91Ross Burton2013-04-041-4/+0
| | | | | | | | | We have 1.9 and git snapshot recipes, we don't also need this ancient version. (From OE-Core rev: b037ac6f6e319c14895b2d3d7dd1b4a72a143670) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-nodm-init: Add xuser to input groupDarren Hart2013-04-042-3/+2
| | | | | | | | | | | | | | | | | | | | Fixes [YOCTO 4164](3/3) Input devices come and go, so a single chmod in this init script is not adequate to ensure rootless X servers can use input devices. The o+rw method also introduces a security hole. The newly added input group and input udev rule address this in a secure way. Ensure the xuser is added to the input group. (From OE-Core rev: 150b7ac8e1c0f029b90f63424867ee5347821cf7) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Saul Wold <sgw@linux.intel.com> Cc: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* build-appliance-image: fix git proxy accessCristian Iorga2013-04-021-1/+1
| | | | | | | | | | | Updated the name of git proxy access script. Fixes [YOCTO #4161] (From OE-Core rev: 381c79dfacf4e990604b8c1ca5845a47958681fc) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* wayland: upgrade to 1.0.6Ross Burton2013-03-291-2/+2
| | | | | | | (From OE-Core rev: 918460cff5b82a69feea0ec3d787c420927eaa35) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* weston: upgrade to 1.0.6Ross Burton2013-03-291-2/+2
| | | | | | | (From OE-Core rev: 58924fe567963c0e6cead3e75a2cfd5b2252aefd) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-nodm: Correct initscript headerRichard Purdie2013-03-271-1/+1
| | | | | | | | The init script header is incorrect, we only start this at runlevels 2 and 5. (From OE-Core rev: c1181d376d20dc203ef036d5659d1c2bf2308975) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* font-alias: Add depends on font-util-nativeRichard Purdie2013-03-261-1/+1
| | | | | | | | | | Without this, the font-util.m4 macro can be missing leading to an undefined macro. The recipe will still build but generate an empty font-alias package since the files are installed into "${D}@XORGROOTFONTDIR@". (From OE-Core rev: 12dc7ae22ddaae0d79e0f86b66c1f5a9b18329f9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-input-evdev: add mtdev dependencyLaurentiu Palcu2013-03-251-1/+3
| | | | | | | | | | | This is needed in order to have multitouch protocol enabled. [YOCTO #4087] (From OE-Core rev: be7e4da2a402ddea196b8b25f8ed9e9647b50563) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxcb: fix repeated configuresRoss Burton2013-03-251-4/+4
| | | | | | | | | | | If configure is re-ran on an existing build tree the string substitutions we need are done twice, resulting in invalid paths. Anchor the expressions so they only match a pristine configure.ac. (From OE-Core rev: a167176c3e41e4eb2a1931df566367e3da2b3b86) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* cairo: explicity disable lzoSaul Wold2013-03-231-1/+2
| | | | | | | | | | | By explicitly disabling the LZO check, we ensure a deterministic build [YOCTO #4076] (From OE-Core rev: 7d855cb624f9330e185ff0f03b5b317d805eda09) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa: rename mesa-dri recipe to just mesaLaurentiu Palcu2013-03-229-22/+22
| | | | | | | | | | | | | | | | | Rename mesa-dri recipes to just mesa. Also, replace all references to mesa-dri in all recipes/configs. The reason for this renaming (quote from bugzilla): "mesa-dri is a artefact of mesa-xlib existing, which doesn't anymore. mesa-dri should be renamed to mesa." [YOCTO #3385] (From OE-Core rev: c8bbb9983bcc7cfc5332e89c3e8148505b4ca83f) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* directfb: Fix case where ${B} != ${S}Richard Purdie2013-03-222-1/+21
| | | | | | | | Add patch to allow out of tree builds to work. (From OE-Core rev: 15d7fe81bf3c52a14bfdd6a8a854836c8571e14f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mtdev: Fix case where ${B} != ${S}Richard Purdie2013-03-222-1/+26
| | | | | | | | Add patch to allow out of tree builds to work. (From OE-Core rev: d14012cbf4a55a66030a51da281cc68fc727d9f6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* harfbuzz: update the license informationMaxin B. John2013-03-191-1/+1
| | | | | | | | | | | | | | | | | harfbuzz is using the 'Modern Variants' of MIT License: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Modern_Variants We can update the LICENSE as 'MIT & ICU'. Fixes this warning: WARNING: harfbuzz: No generic license file exists for: Old-MIT in any provider WARNING: harfbuzz: No generic license file exists for: UCDN in any provider WARNING: harfbuzz: No generic license file exists for: HarfBuzz-old in any provider (From OE-Core rev: 2ecb3b99373e17d93f50142f2da3f786c83c7eb2) Signed-off-by: Maxin B. John <maxin.john@enea.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xcursor-transparent-theme: Refresh patches and ${B} != ${S} fixesRichard Purdie2013-03-182-22/+25
| | | | | | | | Refresh the patches and fix out of tree build issue. (From OE-Core rev: f0ccc06a051d5db2fee5aa52b066563d403f6e25) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libsdl: Fix ${B} != ${S} issuesRichard Purdie2013-03-181-1/+1
| | | | | | | | Fix out of tree builds by remvoing cwd assumption. (From OE-Core rev: 4a805f74b8a2ac5db27ed8f3c3232d2391a18842) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libfakekey: Update to new revision to fix ${B} != ${S} issuesRichard Purdie2013-03-181-2/+1
| | | | | | | | | Upgrade to new upstream revision which includes out of tree build fixes. (From OE-Core rev: be335eab958546c8ae39b879767dd30f1e95a701) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* mesa-common: Fix confused variable assignment/commentRichard Purdie2013-03-181-2/+2
| | | | | | | | | Its clear this was meant to be a prepend. Also fix an out of date comment. (From OE-Core rev: 775692b36fe726479eafdbc9e3f2141acb171f8d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ttf-fonts: fix PN -> BPN in do_install for multilibsJackie Huang2013-03-163-9/+9
| | | | | | | (From OE-Core rev: 7720c356534e46614578619d5a8f0462485b81f6) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-video-*: delete references to mibstore.hLaurentiu Palcu2013-03-156-0/+141
| | | | | | | | | | | | | | This patch removes any references to mibstore.h, which has been removed from xserver-org, from the following drivers: * xf86-video-vmware * xf86-video-fbdev * xf86-video-vesa (From OE-Core rev: c2a2ac579876695c162ccca0ca3673f4d06ce60e) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-video-intel: upgrade to 2.21.3Laurentiu Palcu2013-03-151-2/+2
| | | | | | | | (From OE-Core rev: 54a60a31a99394f1707d55f027f2cb12dc50845c) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xserver-xorg: upgrade to 1.14.0Laurentiu Palcu2013-03-158-66/+59
| | | | | | | | | | | | | Aditionally: * adjust the aarch64.patch because the logic changed and the lnx_video.c changes are no longer necessary; * created patch to fix compilation issue when not using xinerama; (From OE-Core rev: 1204a04c28546aa131d295fe7791f5de3694ad11) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* inputproto: upgrade to 2.3Laurentiu Palcu2013-03-151-2/+2
| | | | | | | | (From OE-Core rev: f120c0da20004908378cf3cab2d6c61b39c6cda5) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xkeyboard-config: remove long-gone build dependenciesRoss Burton2013-03-151-1/+1
| | | | | | | | (From OE-Core rev: 3e2a5722e25385e3b1b1ec44981af37c2074bc45) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* xf86-video-intel: add explicit dependency on udevRoss Burton2013-03-152-2/+2
| | | | | | | | | | Otherwise configure will auto-detect, and not be reliable. (From OE-Core rev: 6c0c3dae3ec69c811ff8cd18a634fc4832a2d29f) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libxi: upgrade to 1.7Constantin Musca2013-03-151-3/+3
| | | | | | | | (From OE-Core rev: c1fd149ecddb82fdf8ddc18c53f417a4318598e9) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* weston: recommend some reasonable fonts so the terminal worksRoss Burton2013-03-031-0/+1
| | | | | | | (From OE-Core rev: 5d3e26d12706606f804118fb77f96f0ada025e36) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>