* [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-keyring/files: gnome-keyring-2.32.1-fix-undefined.patch
@ 2011-07-11 11:42 Pacho Ramos (pacho)
0 siblings, 0 replies; only message in thread
From: Pacho Ramos (pacho) @ 2011-07-11 11:42 UTC (permalink / raw
To: gentoo-commits
pacho 11/07/11 11:42:48
Added: gnome-keyring-2.32.1-fix-undefined.patch
Log:
Fix building on BSD with upstream patch, bug #362469 by Yuta SATOH.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Revision Changes Path
1.1 gnome-base/gnome-keyring/files/gnome-keyring-2.32.1-fix-undefined.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/files/gnome-keyring-2.32.1-fix-undefined.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-keyring/files/gnome-keyring-2.32.1-fix-undefined.patch?rev=1.1&content-type=text/plain
Index: gnome-keyring-2.32.1-fix-undefined.patch
===================================================================
From 4050d583e8fe6c5c4bb71f0fd4ba6498cdf5a1b6 Mon Sep 17 00:00:00 2001
From: Ryan Stonecipher <Ryan.Stonecipher.Fisher@gmail.com>
Date: Mon, 24 Jan 2011 20:42:02 +0000
Subject: Fix undefined type in egg-asn1x.c
Mac OSX doesn't have a ulong type
https://bugzilla.gnome.org/show_bug.cgi?id=640362
---
diff --git a/egg/egg-asn1x.c b/egg/egg-asn1x.c
index 122cedf..10bd92c 100644
--- a/egg/egg-asn1x.c
+++ b/egg/egg-asn1x.c
@@ -2064,8 +2064,8 @@ anode_write_integer_ulong (gulong value, guchar *data, gsize *n_data)
guchar buf[sizeof (gulong)];
gint bytes, i, off;
- for (i = 0; i < sizeof (ulong); ++i) {
- off = sizeof (ulong) - (i + 1);
+ for (i = 0; i < sizeof (gulong); ++i) {
+ off = sizeof (gulong) - (i + 1);
buf[i] = (value >> (off * 8)) & 0xFF;
}
--
cgit v0.9
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-07-11 11:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-11 11:42 [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-keyring/files: gnome-keyring-2.32.1-fix-undefined.patch Pacho Ramos (pacho)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox