summaryrefslogtreecommitdiffstats
path: root/package/x11r7
Commit message (Collapse)AuthorAgeFilesLines
* xorg-server: needs mmuPeter Korsgaard2014-11-241-1/+2
| | | | | | | | | | | | os/utils.c::System() unconditionally uses fork(), so it only builds on configurations with mmu. (Indirectly) fixes: http://autobuild.buildroot.net/results/497/4970352598a68d7af89acbb33cdf69d656e23f4d/ http://autobuild.buildroot.net/results/d27/d279dc35bff53b7f939af02bee70b1ed3014e49b/ http://autobuild.buildroot.net/results/84b/84b8f19221a5c841de3016959c99b92c96c57e81/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: indentation cleanupJerzy Grzegorek2014-11-021-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: indentation cleanupJerzy Grzegorek2014-10-261-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package: indentation cleanupJerzy Grzegorek2014-10-231-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Bump version to 1.16.1Bernd Kuhls2014-10-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libpciaccess: Rename package to libpciaccessBernd Kuhls2014-10-197-27/+4
| | | | | | | | | While libpciaccess is part of the X libraries, it does not depend upon X11 or any other X library. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages/*.mk: Remove duplicate optionsMaxime Hadjinlian2014-10-191-1/+0
| | | | | | | | | | | | These flags are already defined in pkg-autotools.mk. There is no need to have them twice. [Thomas: restore += instead of = in the opus package, as suggested by Yann E. Morin.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/.mk files: remove --localstatedir=/var from autotools packagesJörg Krause2014-10-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Remove --localstatedir=/var from all autotools packages where it is no longer needed. Also remove --localstatedir=/var/lib/dhcp from package dhcp. localstatedir is used by dhcp to set the default directory for the leases files. This can also be done by setting --with-*-lease-file=/var/lib/dhcp/*, which is done in dhcp.mk. A custom --localstatedir is left in: * proftpd.mk * mysql.mk This is safe to do: One of the good thing with autoconf is that if you pass: --localstatedir=/var ... --localstatedir=/var/something Then /var/something will be used. So, we can set --localstatedir=/var by default in the infrastructure, and still have certain packages doing weird things override it. [Thanks to Thomas Petazzoni] Signed-off-by: Jörg Krause <jkrause@posteo.de> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Add optional package xlib_libXcomposite as dependencyBernd Kuhls2014-10-121-1/+3
| | | | | | | | | | | | | | | | | Make sure that xlib_libXcomposite is build before xserver_xorg-server. With this defconfig BR2_TOOLCHAIN_EXTERNAL=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XSERVER_XORG_SERVER=y BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y BR2_PACKAGE_XLIB_LIBXCOMPOSITE=y and "make xserver_xorg-server" the package xlib_libXcomposite was ignored. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages: rename FOO_CONF_OPT into FOO_CONF_OPTSThomas De Schampheleire2014-10-0427-76/+76
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_INSTALL_STAGING_OPT into FOO_INSTALL_STAGING_OPTSThomas De Schampheleire2014-10-0435-35/+35
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_INSTALL_STAGING_OPT. Sed command used: find * -type f | xargs sed -i 's#_INSTALL_STAGING_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: rename FOO_INSTALL_TARGET_OPT into FOO_INSTALL_TARGET_OPTSThomas De Schampheleire2014-10-0436-36/+36
| | | | | | | | | | | | To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_INSTALL_TARGET_OPT. Sed command used: find * -type f | xargs sed -i 's#_INSTALL_TARGET_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Fix compile error for microblazeBernd Kuhls2014-09-211-0/+33
| | | | | | | | | | | | Fixes mipushpxl.c: In function 'miPushPixels': mipushpxl.c:110:38: error: 'IMAGE_BYTE_ORDER' undeclared (first use in this function) if (screenInfo.bitmapBitOrder == IMAGE_BYTE_ORDER) Patch submitted upstream: https://bugs.freedesktop.org/show_bug.cgi?id=83582 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Fix compile error for microblaze & xtensaBernd Kuhls2014-09-211-0/+232
| | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/05f/05f2f1317f366b724c2d6b1bb572bb6778c69896/ http://autobuild.buildroot.net/results/655/655c00859ea61378739309539d71b38fab62e229/ http://autobuild.buildroot.net/results/4d3/4d37c5594c0916c27c897b0d2545d1c5cc492598/ http://autobuild.buildroot.net/results/d1a/d1af06d73ee0fd57ee0ad8b371927b2f9478d44e/ http://autobuild.buildroot.net/results/5cc/5cceb96ac29a410316fd7d8f7de0615ba33e3f2c/ http://autobuild.buildroot.net/results/143/14308a9d1806574f06ab2a7d222f53119fab1c90/ http://autobuild.buildroot.net/results/c6a/c6a5bbee21b5c4ce84c6a95bd764f294d3791720/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xapp_xdm: depends on MMUJérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | | | | | | | Fixes http://sysmic.org/~jezz/results/e891eb7e: dm.o: In function `_StartDisplay': dm.c:(.text+0xd6e): undefined reference to `_fork' server.o: In function `_StartServerOnce': server.c:(.text+0x266): undefined reference to `_fork' session.o: In function `_runAndWait': session.c:(.text+0x67a): undefined reference to `_fork' session.o: In function `_ManageSession': session.c:(.text+0xa2a): undefined reference to `_fork' collect2: ld returned 1 exit status Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xmh: depends on MMUJérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | Fixes http://sysmic.org/~jezz/results/1a0bc183: command.o: In function `__DoCommandToFileOrPipe': command.c:(.text+0x35e): undefined reference to `_fork' collect2: ld returned 1 exit status Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xsm: depends on MMUJérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | | | | | Fixes: http://sysmic.org/~jezz/results/455f2788: remote.o: In function `_remote_start': remote.c:(.text+0x74): undefined reference to `_fork' restart.o: In function `_Clone': restart.c:(.text+0x5a8): undefined reference to `_fork' restart.o: In function `_Restart': restart.c:(.text+0xa44): undefined reference to `_fork' collect2: ld returned 1 exit status Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xinit: depends on MMUJérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | | Fixes http://sysmic.org/~jezz/results/8b5af679: xinit.o: In function `_main': xinit.c:(.text+0x65e): undefined reference to `_fork' xinit.c:(.text+0x7d4): undefined reference to `_fork' collect2: ld returned 1 exit status Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xkbevd: depends on MMUJérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | Fixes http://sysmic.org/~jezz/results/a9ec03bd: xkbevd.o: In function `_main': xkbevd.c:(.text+0x3ca): undefined reference to `_fork' collect2: ld returned 1 exit status Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xdriver_xf86-video-vmware: only avaiblable on x86Jérôme Pouiller2014-09-121-0/+1
| | | | | | | | | | | | ... since BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SVGA is only available on x86. Fix warnings like: warning: (BR2_PACKAGE_XDRIVER_XF86_VIDEO_VMWARE) selects BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SVGA which has unmet direct dependencies (BR2_PACKAGE_MESA3D && (BR2_i386 || BR2_x86_64)) Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xdpyinfo: depends on MMUYuvaraj Patil2014-09-111-0/+1
| | | | | | | | | This package needs MMU. Hence added dependency on BR2_USE_MMU Fixes http://autobuild.buildroot.net/results/2da/2dada0264409d8fa6befedbc02c0de77c605a5fa/ Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xdriver_xf86-input-mouse: Bump version to 1.9.1Bernd Kuhls2014-09-071-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xdriver_xf86-video-ast: Bump version to 1.0.1, add dependenciesBernd Kuhls2014-09-072-1/+4
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xfs: Bump version to 1.1.4Bernd Kuhls2014-09-071-6/+4
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xf86dga: Needs MMUBernd Kuhls2014-09-071-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/e76/e76b8ff1767f061587b630091174c58da599d5e3/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xserver_xorg-server: add patch to fix build issue on gcc <= 4.5Thomas Petazzoni2014-09-041-0/+62
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/e28/e28080f53f33b66fbb244e30a040aaf0a458bce5/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_luit: needs MMUBernd Kuhls2014-08-271-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/13a/13a97461e3b6098e59cfcd829e6bcafa51e50bb4/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_xfs: needs MMUThomas Petazzoni2014-08-271-0/+1
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/7a89f79499e167cc98449a045604d25d4fc88484/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xapp_rstart: Depends on MMUBernd Kuhls2014-08-161-0/+1
| | | | | | | | | | | | | | | Fixes CCLD rstartd.real auth.o: In function `_do_auth': auth.c:(.text+0x6a): undefined reference to `_fork' server.o: In function `_detach': server.c:(.text+0x80a): undefined reference to `_fork' To reproduce use this defconfig http://autobuild.buildroot.net/results/8d5/8d5ad404fab7ec2a501972ba9c08b0109e420b80/defconfig Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libxcb: Bump version to 1.11Bernd Kuhls2014-08-031-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xcb-proto: Bump version to 1.11Bernd Kuhls2014-08-031-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xapp_xrandr: Bump version to 1.4.3Bernd Kuhls2014-08-031-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: remove the trailing slash sign from <PKG>_SITE variableJerzy Grzegorek2014-07-318-8/+8
| | | | | | | | | | | | Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xdriver_xf86-video-intel: Bump version to 2.99.914Bernd Kuhls2014-07-292-14/+27
| | | | | | | | | | | | | - enable sna module by default - optionally enable uxa module if DRI2 support is enabled - add support for DRI3 - dependencies for DRI1/2/3 modules are provided by xserver_xorg-server, therefore remove mesa3d dependency - clean-up ums/kms options, configure picks sane defaults - replace dependencies xproto_randrproto & xproto_renderproto with xlib_libXrandr Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Add support for DRI3Bernd Kuhls2014-07-291-1/+5
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xapp_xconsole: Needs MMUBernd Kuhls2014-07-281-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/be8/be89847832a2588dbda8dd921edb09b2af130e03/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libXext: Bump version to 1.3.3Bernd Kuhls2014-07-261-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libFS: Add missing host-pkgconf dependencyBernd Kuhls2014-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compile error: checking for FS... configure: error: in `/home/br/br/output/build/xlib_libFS-1.0.6': configure: error: The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables FS_CFLAGS and FS_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see <http://pkg-config.freedesktop.org/>. See `config.log' for more details using this minimal defconfig BR2_TOOLCHAIN_EXTERNAL=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XAPP_XFS=y Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xapp_xfs: Fix compile errors after libXfont 1.5.0 updateBernd Kuhls2014-07-201-4/+6
| | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/385/385cffbab4261337afa449998aa7457a8142db92/ [Thomas: add comment about the new xfont_font-util dependency being needed only for autoreconf.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libXfont: Bump version to 1.5.0Bernd Kuhls2014-07-201-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Bump version to 1.16.0Bernd Kuhls2014-07-196-175/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This version bump includes bumping version xlib_libXfont to 1.4.99.901 & xproto_fontsproto to 2.1.3. xserver_xorg-server 1.16.0 depends on them, but they are incompatible with older versions of xserver_xorg-server, for details and libXfont-related CVE´s see http://lists.x.org/archives/xorg-announce/2014-July/002453.html Also remove patches applied upstream. Since a different patch than xserver_xorg-server-100-mips.patch was committed upstream: http://cgit.freedesktop.org/xorg/xserver/commit/?id=19e5a13970ad9d440c0789395e94931429ef4fbb I also compile tested using this defconfig: BR2_mips64=y BR2_TOOLCHAIN_BUILDROOT_CXX=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_PACKAGE_MESA3D=y BR2_PACKAGE_MESA3D_DRI_DRIVER_SWRAST=y BR2_PACKAGE_MESA3D_OPENGL_EGL=y BR2_PACKAGE_MESA3D_OPENGL_ES=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XSERVER_XORG_SERVER=y BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xapp_xcursorgen: Bump version to 1.0.6Bernd Kuhls2014-07-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xproto_inputproto: Bump version to 2.3.1Bernd Kuhls2014-07-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libXft: Bump version to 2.3.2Bernd Kuhls2014-07-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libICE: Bump version to 1.0.9Bernd Kuhls2014-07-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libXi: Bump version to 1.7.4Bernd Kuhls2014-07-191-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xlib_libxshmfence: New packageBernd Kuhls2014-07-173-0/+21
| | | | | | | | | | | | Needed for DRI3 support in mesa3d: configure: error: Package requirements (x11 xext xdamage xfixes x11-xcb xcb-glx >= 1.8.1 xcb-dri2 >= 1.8 xcb-dri3 xcb-present xcb-sync xshmfence >= 1.1) were not met: Package xshmfence was not found in the pkg-config search path. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: drop host-xfont_font-util dependencyPeter Korsgaard2014-07-091-1/+0
| | | | | | | This is no longer needed now that e244eb12d (xserver_xorg-server: Fix race condition when installing man pages) has been reverted. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xserver_xorg-server: Fix race condition when installing man pages, 2nd tryBernd Kuhls2014-07-092-21/+0
| | | | | | | | | | | | | | | | | | | | | | | | Should fix the still present bug: http://autobuild.buildroot.net/results/045/04514bc9a8d1aad8ddd7af4f0fd8c16edd2e89a9/ http://autobuild.buildroot.net/results/1f2/1f25f744771fbb5124dca4563d79ea92cbfd72a3/ This patch reverts my previous attempt to fix this hard-to-catch race condition http://git.buildroot.net/buildroot/commit/package/x11r7/xserver_xorg-server?id=e244eb12dfc50bb56167d5fdaef3aac52b0ff6a3 and removes make target install-data from _INSTALL_STAGING_OPT, which was introduced in 2008: http://git.buildroot.net/buildroot/commit/package/x11r7/xserver_xorg-server/xserver_xorg-server.mk?id=d4e56ff4dc8a0528550eb8503956bdcddb2fe516 Comparing the content of STAGING_DIR with and without "make install-data" showed no difference so I assume that is it no longer necessary to explicitly call this make target as the normal install target takes care of everything. The race condition occurs because "make install" and "make install-data" both install usr/share/man/man1/Xserver.1 [Peter: don't remove host-xfont_font-util] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xserver_xorg-server: Bump version to 1.15.2Bernd Kuhls2014-07-041-1/+1
| | | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud