Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Allan W. Nielsen <a@awn.dk>
To: buildroot@busybox.net
Subject: [Buildroot] =?y?q?=5BPATCH=2007/63=5D=20xlib=5FlibXt=3A=20version=20bump=20to=201=2E1=2E1?=
Date: Wed,  6 Apr 2011 12:03:21 +0200	[thread overview]
Message-ID: <1302084257-30775-8-git-send-email-a@awn.dk> (raw)
In-Reply-To: <1302084257-30775-1-git-send-email-a@awn.dk>

xlib_libXt-1.0.7-fix-cross-compile.patch is deleted as it did not seemed to be
needed anymore

Signed-off-by: Allan W. Nielsen <a@awn.dk>
---
 .../xlib_libXt-1.0.7-fix-cross-compile.patch       |   96 --------------------
 package/x11r7/xlib_libXt/xlib_libXt.mk             |    2 +-
 2 files changed, 1 insertions(+), 97 deletions(-)
 delete mode 100644 package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch

diff --git a/package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch b/package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch
deleted file mode 100644
index fc5ea7d..0000000
--- a/package/x11r7/xlib_libXt/xlib_libXt-1.0.7-fix-cross-compile.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-From da5ba611fbff6f939a7cec9ca41fa7df0f76a197 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?R=C3=A9mi=20Cardona?= <remi@gentoo.org>
-Date: Thu, 5 Nov 2009 11:55:22 +0100
-Subject: [PATCH] fix cross-compile again
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-makestrs should always be built for the target arch. When cross-compiling,
-create a native version "xmakestrs" which will always be noinst, and use it
-to generate the other sources.
-
-This avoids installing a makestrs built for the wrong arch.
-
-Based on this patch :
-http://overlays.gentoo.org/proj/embedded/browser/openmoko/trunk/openmoko-target/x11-libs/libXt/files/libXt-1.0.7-crosscompile-makestr.patch
-
-Signed-off-by: R??mi Cardona <remi@gentoo.org>
----
- configure.ac     |    2 ++
- src/Makefile.am  |    8 +++++++-
- util/Makefile.am |   15 ++++++++++-----
- 3 files changed, 19 insertions(+), 6 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 6a66d45..73bfbc0 100755
---- a/configure.ac
-+++ b/configure.ac
-@@ -40,6 +40,8 @@ AC_PROG_LIBTOOL
- AM_PROG_CC_C_O
- XORG_DEFAULT_OPTIONS
- 
-+AM_CONDITIONAL(CROSS_COMPILING, [ test $cross_compiling = yes ])
-+
- if test x"$CC_FOR_BUILD" = x; then
- 	if test x"$cross_compiling" = xyes; then
- 		AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
-diff --git a/src/Makefile.am b/src/Makefile.am
-index a43fb22..6b767a7 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -92,12 +92,18 @@ BUILT_FILES = $(BUILT_SOURCE) $(BUILT_HEADER)
- 
- STRING_LIST = $(top_srcdir)/util/string.list
- 
-+if CROSS_COMPILING
-+MAKESTRS=$(top_builddir)/util/xmakestrs
-+else
-+MAKESTRS=$(top_builddir)/util/makestrs
-+endif
-+
- all-local: $(BUILT_FILES)
- 
- $(BUILT_HEADER): $(BUILT_SOURCE)
- 
- $(BUILT_SOURCE):
--	$(top_builddir)/util/makestrs -i $(top_srcdir) $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c
-+	$(MAKESTRS) -i $(top_srcdir) $(STRINGSABIOPTIONS) < $(STRING_LIST) > StringDefs.c
- 	mkdir -p $(top_builddir)/src
- 	mkdir -p $(top_builddir)/include/X11
- 	cp StringDefs.h $(top_builddir)/include/X11
-diff --git a/util/Makefile.am b/util/Makefile.am
-index d51365e..6853d89 100644
---- a/util/Makefile.am
-+++ b/util/Makefile.am
-@@ -1,13 +1,10 @@
- if INSTALL_MAKESTRS
- bin_PROGRAMS = makestrs
-+noinst_PROGRAMS = $(MAKESTRS_PROG)
- else
--noinst_PROGRAMS = makestrs
-+noinst_PROGRAMS = makestrs $(MAKESTRS_PROG)
- endif
- 
--CC = @CC_FOR_BUILD@
--CFLAGS = @CFLAGS_FOR_BUILD@
--LDFLAGS = @LDFLAGS_FOR_BUILD@
--
- EXTRA_DIST = \
- 	Shell.ht \
- 	StrDefs.ct \
-@@ -45,3 +42,11 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man
- 
- .man.$(APP_MAN_SUFFIX):
- 	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
-+
-+if CROSS_COMPILING
-+MAKESTRS_PROG=xmakestrs$(EXEEXT)
-+
-+xmakestrs$(EXEEXT): makestrs.c
-+	$(AM_V_GEN)$(CC_FOR_BUILD) $(X11_CFLAGS) $(CPPFLAGS_FOR_BUILD) \
-+	$(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ makestrs.c
-+endif
--- 
-1.6.5.2
-
diff --git a/package/x11r7/xlib_libXt/xlib_libXt.mk b/package/x11r7/xlib_libXt/xlib_libXt.mk
index c1cdb15..c7ea519 100644
--- a/package/x11r7/xlib_libXt/xlib_libXt.mk
+++ b/package/x11r7/xlib_libXt/xlib_libXt.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XLIB_LIBXT_VERSION = 1.0.7
+XLIB_LIBXT_VERSION = 1.1.1
 XLIB_LIBXT_SOURCE = libXt-$(XLIB_LIBXT_VERSION).tar.bz2
 XLIB_LIBXT_SITE = http://xorg.freedesktop.org/releases/individual/lib
 XLIB_LIBXT_AUTORECONF = YES
-- 
1.7.3.4

  parent reply	other threads:[~2011-04-06 10:03 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-06 10:03 [Buildroot] Upgrade of the Xorg-server to newest version Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 01/63] xlib_xtrans: bump version to 1.2.6 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 02/63] xlib_libXxf86vm: bump version to 1.1.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 03/63] xlib_libXxf86dga: bump version to 1.1.2 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 04/63] xlib_libXvMC: bump version to 1.0.6 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 05/63] xlib_libXv: " Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 06/63] xlib_libXtst: bump version to 1.2.0 Allan W. Nielsen
2011-04-06 10:03 ` Allan W. Nielsen [this message]
2011-04-06 10:03 ` [Buildroot] [PATCH 08/63] xlib_libXScrnSaver: version bump Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 09/63] xlib_libXres: version bump to 1.0.5 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 10/63] xlib_libXrender: version bump to 0.9.6 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 11/63] xlib_libXrandr: version bump to 1.3.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 12/63] xlib_libXpm: version bump to 3.5.9 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 13/63] xlib_libXp: version bump to 1.0.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 14/63] xlib_libXmu: version bump to 1.1.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 15/63] xlib_libxkbfile: version bump to 1.0.7 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 16/63] xlib_libXinerama: version bump to 1.1.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 17/63] xlib_libXi: version bump to 1.4.2 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 18/63] xlib_libXft: version bump to 2.2.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 19/63] xlib_libXfont: version bump to 1.4.3 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 20/63] xlib_libXfixes: version bump to 5.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 21/63] xlib_libXext: version bump to 1.2.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 22/63] xlib_libXdmcp: version bump to 1.1.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 23/63] xlib_libXdamage: version bump to 1.1.3 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 24/63] xlib_libXcursor: version bump to 1.1.11 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 25/63] xlib_libXcomposite: version bump to 0.4.3 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 26/63] xlib_libXaw: version bump to 1.0.9 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 27/63] xlib_libXau: version bump to 1.0.6 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 28/63] xlib_libX11: verison bump to 1.4.2 and removed patch file xlib_libX11-1.3.2-keysymdef Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 29/63] xlib_libSM: version bump to 1.2.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 30/63] xlib_libpciaccess: version bump to 0.12.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 31/63] xlib_libICE: version bump to 1.0.7 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 32/63] xlib_libFS: version bump to 1.0.3 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 33/63] xlib_libfontenc: version bump to 1.1.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 34/63] xlib_libdmx: version bump to 1.1.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 35/63] xproto_xproto: version bump to 7.0.21 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 36/63] xproto_xineramaproto: version bumpt to 1.2.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 37/63] xproto_xf86vidmodeproto: version bump to 2.3.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 38/63] xproto_xf86driproto: version bump to 2.1.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 39/63] xproto_xextproto: version bump to 7.2.0 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 40/63] xproto_xcmiscproto: version bump to 1.2.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 41/63] xproto_videoproto: version bump to 2.3.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 42/63] xproto_scrnsaverproto: version bump to 1.2.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 43/63] xproto_resourceproto: version bump to 1.1.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 44/63] xproto_renderproto: version bump to 0.11.1 Allan W. Nielsen
2011-04-06 10:03 ` [Buildroot] [PATCH 45/63] xproto_randrproto: version bump to 1.3.2 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 46/63] xproto_printproto: version bump to 1.0.5 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 47/63] xproto_kbproto: " Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 48/63] xproto_inputproto: version bump to 2.0.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 49/63] xproto_glproto: version bump to 1.4.12 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 50/63] xproto_fontsproto: verison bump to 2.1.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 51/63] xproto_fixesproto: version bump to 5.0 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 52/63] xproto_dmxproto: version bump to 2.3.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 53/63] xproto_damageproto: version bump to 1.2.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 54/63] xproto_compositeproto: version bump to 0.4.2 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 55/63] xproto_bigreqsproto: version bump to 1.1.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 56/63] xutil_util-macros: version bump to 1.11.0 and xutil_util-macros-1.3.0.patch deleted Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 57/63] mesa3d: version bump to 7.10.1 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 58/63] xfont_encodings: version bump to 1.0.4 and add --with-fontrootdir option Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 59/63] libxcb: version bump to 1.7 Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 60/63] xdriver_xf86-video-ati: version bump to 6.14.1 and removed cross-compile patch Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 61/63] libdrm: upgraded to version 2.4.23 and added udev as dependency Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 62/63] xserver_xorg-server: dependency to udev added Allan W. Nielsen
2011-04-06 10:04 ` [Buildroot] [PATCH 63/63] udev: upgraded to version 151 Allan W. Nielsen
2011-04-06 13:32   ` Thomas Petazzoni
2011-04-07  6:10 ` [Buildroot] Upgrade of the Xorg-server to newest version Patryk Benderz
2011-04-07  6:35   ` Peter Korsgaard
2012-09-22 19:39 ` Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1302084257-30775-8-git-send-email-a@awn.dk \
    --to=a@awn.dk \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox