Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice/files: libimobiledevice-1.1.5-cython.patch
Date: Tue, 30 Jul 2013 16:43:39
Message-Id: 20130730164335.552422171D@flycatcher.gentoo.org
1 ssuominen 13/07/30 16:43:35
2
3 Added: libimobiledevice-1.1.5-cython.patch
4 Log:
5 Fix building of Cython based python bindings by backporting patch from upstream wrt #471620 by Brett Royles and Martin Cyr
6
7 (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.1 app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/files/libimobiledevice-1.1.5-cython.patch?rev=1.1&content-type=text/plain
14
15 Index: libimobiledevice-1.1.5-cython.patch
16 ===================================================================
17 http://bugs.gentoo.org/471620
18 http://github.com/libimobiledevice/libimobiledevice/commit/62ab50f64fa210304338a5bfccdc6a26fac5f0ec
19
20 --- cython/lockdown.pxi
21 +++ cython/lockdown.pxi
22 @@ -221,7 +221,7 @@
23 char* c_session_id = NULL
24 bint ssl_enabled
25 bytes session_id
26 - err = lockdownd_start_session(self._c_client, host_id, &c_session_id, &ssl_enabled)
27 + err = lockdownd_start_session(self._c_client, host_id, &c_session_id, <int *>&ssl_enabled)
28 try:
29 self.handle_error(err)