summaryrefslogtreecommitdiff
path: root/package/x11r7
AgeCommit message (Collapse)Author
2009-07-28xorg: add a new cross-compile fix for libXt 1.0.6Thomas Petazzoni
The cross-compile fix included in mainline of libXt between 1.0.5 and 1.0.6 is not sufficient. It allows to pass a different compiler for the host tools, but still uses the TARGET_CFLAGS/TARGET_LDFLAGS to compile the host tools, which obviously isn't correct. The new patch allows to use the CFLAGS_FOR_BUILD/LDFLAGS_FOR_BUILD variables as the CFLAGS/LDFLAGS to build the host tools. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-28xorg: bump version of xutil/macros to 1.2.2Thomas Petazzoni
This version bump is required by the bump of xlib_libXt from 1.0.5 to 1.0.6 (1.0.6 requires at least xutil/macros 1.2). The linuxdoc patch is removed, since it has been merged upstream, at http://cgit.freedesktop.org/xorg/util/macros/commit/?id=e20c503d24e5ccf03035aa0f6d833d235d2179df The other patch exposing STAGING_DIR is kept, as it is Buildroot specific. It has just been updated to resolve conflicts. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-28xorg: bump X.org server version to 1.5.3Thomas Petazzoni
This version contains a fix to allow the compilation of the Xvesa server against recent versions of the kernel headers (fix http://cgit.freedesktop.org/xorg/xserver/commit/?h=server-1.5-branch&id=992a7168f0db5733fe4a6cbd2f40c6b1f2a150e0) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-28xorg: bump libXt to 1.0.6Thomas Petazzoni
Bump libXt to 1.0.6 and remove the xlib_libXt-1.0.5-makestrs-nocc.patch, which has been included in a better form in upstream: http://cgit.freedesktop.org/xorg/lib/libXt/commit/?id=36e9f0d351afbf7fd2595990b2d39e7c551f6420 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-27xf86-video-intel: Fixed cross-compile patch to apply to version 2.4.2Maurice van der Pot
Signed-off-by: Maurice van der Pot <griffon26@kfk4ever.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25Merge branch 'xorg' of git://git.busybox.net/~tpetazzoni/git/buildrootPeter Korsgaard
2009-07-24xorg server: remove dependenciesThomas Petazzoni
Currently, the X.org server selection always trigger the compilation and installation of libXt (the X toolkit) and libXaw (Athena Widget toolkits), which is are legacy toolkits not used by modern toolkits (Gtk, Qt, etc.). They are only used by old X11 applications that are typically not used on embedded systems. Not compiling them save compilation time, and more importantly, space on the target. We also remove the compilation on xlib_libxkbui, libxmu and libxpm, because they all depend on libXt. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-24xorg server: beautify list of dependenciesThomas Petazzoni
Reorganize the list of depencies with a sane indentation level, and one dependency per line. Yes, the list is long, but is easier to read, and future patches modifying this list will be easier to review. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-18xutil_makedepend: install to target, not stagingPeter Korsgaard
makedepend is a program, not a library - So makedepend for the target should get installed to target_dir and not to staging_dir. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-18mesa3d: compile makedepend (and in turn xproto) for the hostPeter Korsgaard
The mesa3d build needs makedepend on the host, so compile one in $HOST_DIR. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-17xorg: remove useless configuration commentThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-17xorg: reindent configuration option detailsThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-17xorg: reorganize the selection of the X.org server typeThomas Petazzoni
The selection of the X.org server type was really strange. The user had to select between none, tinyx and modular. Now, the menuconfig interface display a single item for X.org, that can be selected/unselected. This entry contains a submenu, that allows to select the type of the X.org server (tinyX or modular) and that allows (as before) to enable/disable X.org libraries, drivers, etc. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-01Fix Matchbox buildThomas Petazzoni
Several issues were encountered when trying to build Matchbox. This patches fixes these issues : * Selecting BR2_PACKAGE_MATCHBOX should select BR2_PACKAGE_XORG7, otherwise the x11r7 mk files are not included, and matchbox.mk refers to non-existing dependencies (such as xlib_libXtst). * In matchbox.mk, wrong dependencies for Matchbox keyboard. When pango is available, use it through --enable-pango, otherwise, add the dependency to xlib_libXft * Enable AUTORECONF for libXfont and libXft, otherwise the libtool Buildroot patch has no effect, and these packages fail to build without the libtool hack. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-06-06xdriver_xf86-input-synaptics: fix download urlPeter Korsgaard
0.15.0 seems to never have been in Debian (it is atleast not on snapshot.debian.net), so use the real upstream (freedesktop) instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-19xserver: mark as broken on avr32Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-19mesa: needs C++ supportPeter Korsgaard
mesa (and in turn xorg) needs C++ support. Based on patch by Steffen Schulz <pepe_ml@gmx.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-19mesa: fix build for x86Jim Persson
mesa wants to compile and run gen_matypes at build time, so make sure it gets compiled for the host and not for the target. Closes #323. Signed-off-by: Jim Persson <spambox@nurd.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-03-29libX11: fix build on hosts without libx11-devPeter Korsgaard
Make sure the build doesn't use keysymdef.h from the host.
2009-03-23mesa3d: sync kconfig deps with makefilePeter Korsgaard
2009-03-23libpciaccess: needs large file supportPeter Korsgaard
2009-03-18pkgconfig: add pkgconfig package for targetPeter Korsgaard
The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
2009-03-16xserver-xorg: libXtst not neededPeter Korsgaard
2009-03-16xserver-xorg: set buildroot mailing list as builder addrPeter Korsgaard
2009-03-16xserver-xorg: more optional dependenciesPeter Korsgaard
2009-03-16xserver-xorg: dbus is optionalPeter Korsgaard
2009-03-16xorg_server: cleanup .mkPeter Korsgaard
Rearrange lines and get rid of unneeded variables. Should have no functional change.
2009-03-15xserver: 1.5.x needs openssl (for render sha functions)Peter Korsgaard
2009-03-14x11r7: update to 7.4Peter Korsgaard
Patch by Dan Lykowski <lykowdk@gmail.com>, closes #181. Minor fixups for kdrive by me.
2009-03-13xserver_xorg: add options for builtin fonts and aiglxPeter Korsgaard
Patch by Dan Lykowski <lykowdk@gmail.com>
2009-02-24mesa3d: fix makedepend argumentsPeter Korsgaard
Make sure makedepends only searches the gcc/staging dir, and not the host include dirs.
2009-02-24mesa: use correct config file for archPeter Korsgaard
2009-02-24mesa3d: use MAKE1 instead of playing around with BR2_JLEVELPeter Korsgaard
2009-02-24xserver-xorg: select mesa3d in kconfigPeter Korsgaard
xserver-xorg depends on mesa3d, so select it in kconfig as well.
2009-02-10x11/video-xgi: fix vesa/xgi typoPeter Korsgaard
Closes #95
2009-01-31x11r7: make xman and xcb-util visible in KconfigPeter Korsgaard
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2008-12-22x11r7/xserver_xorg: breaks with shared cachePeter Korsgaard
The package overrides CFLAGS, so disable shared cache.
2008-12-22x11r7/liblbxutil: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard
2008-12-22x11r7/libXt: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard
2008-12-22x11r7/libX11: use {C,LD}FLAGS_FOR_BUILD for host toolsPeter Korsgaard
2008-12-08package/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-10-23x11r7/xkeyboard-config: select xkbcompPeter Korsgaard
xkeyboard-config uses xkbcomp at runtime, so select it. closes #5704.
2008-10-23x11r7/xserver: select cursor font as wellPeter Korsgaard
Really closes #5684.
2008-10-23x11r7/xserver: select misc font + font aliasPeter Korsgaard
Closes #5684.
2008-10-22x11r7/xclock: don't force libiconv linkPeter Korsgaard
Closes #5654.
2008-10-22x11r7/libFS susv3-legacy: update to what got applied upstreamPeter Korsgaard
For details, see: http://lists.freedesktop.org/archives/xorg/2008-October/039630.html
2008-10-21x11r7/xserver: bump versionPeter Korsgaard
2008-10-21x11r7/xfs: bump version - fixes CVE-2007-4568Peter Korsgaard
For details, see: http://lists.freedesktop.org/archives/xorg-announce/2007-October/000416.html
2008-10-21x11r7/libFS: use memcpy instead of bcopyPeter Korsgaard