From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4D6001388BF for ; Sat, 9 Jan 2016 11:45:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F8EE0845; Sat, 9 Jan 2016 11:44:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64E2BE0845 for ; Sat, 9 Jan 2016 11:44:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96F4C340A03 for ; Sat, 9 Jan 2016 11:44:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65AF2D03 for ; Sat, 9 Jan 2016 11:44:34 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1452339872.a07cc68a64452e90916ced64870b11455a898a76.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tigervnc/, net-misc/tigervnc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/tigervnc/files/tigervnc-1.4.2-byteorder.patch net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild X-VCS-Directories: net-misc/tigervnc/ net-misc/tigervnc/files/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: a07cc68a64452e90916ced64870b11455a898a76 X-VCS-Branch: master Date: Sat, 9 Jan 2016 11:44:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 83dc709a-025d-4b50-93de-0b8f65a782b7 X-Archives-Hash: 5cdbfc3df4c5bb8fdf95b572bbc90c14 commit: a07cc68a64452e90916ced64870b11455a898a76 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Jan 9 11:44:03 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Jan 9 11:44:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a07cc68a net-misc/tigervnc: Fix byte order issues (bug #567568). Package-Manager: portage-2.2.26 .../tigervnc/files/tigervnc-1.4.2-byteorder.patch | 21 +++++++++++++++++++++ net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild | 1 + 2 files changed, 22 insertions(+) diff --git a/net-misc/tigervnc/files/tigervnc-1.4.2-byteorder.patch b/net-misc/tigervnc/files/tigervnc-1.4.2-byteorder.patch new file mode 100644 index 0000000..bd2dc51 --- /dev/null +++ b/net-misc/tigervnc/files/tigervnc-1.4.2-byteorder.patch @@ -0,0 +1,21 @@ +--- a/include/dix-config.h.in ++++ b/include/dix-config.h.in +@@ -3,6 +3,14 @@ + #ifndef _DIX_CONFIG_H_ + #define _DIX_CONFIG_H_ + ++#ifndef X_BIG_ENDIAN ++# define X_BIG_ENDIAN 4321 ++#endif ++ ++#ifndef X_LITTLE_ENDIAN ++# define X_LITTLE_ENDIAN 1234 ++#endif ++ + /* Support BigRequests extension */ + #undef BIGREQS + +-- +2.3.5 + + diff --git a/net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild b/net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild index b2a56d1..13675ae 100644 --- a/net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild +++ b/net-misc/tigervnc/tigervnc-1.4.2-r2.ebuild @@ -114,6 +114,7 @@ src_prepare() { cd unix/xserver epatch "${WORKDIR}"/patches/1000_server_xserver-1.16-rebased.patch epatch "${WORKDIR}"/patches/1005_server_xserver-1.17.patch + epatch "${FILESDIR}"/tigervnc-1.4.2-byteorder.patch eautoreconf fi }