Gentoo Archives: gentoo-commits

From: "Michael Haubenwallner (haubi)" <haubi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/mico/2.3.13: 011_all_gtk-check-stdlib.patch
Date: Tue, 28 Jun 2011 15:03:43
Message-Id: 20110628150334.5999420054@flycatcher.gentoo.org
1 haubi 11/06/28 15:03:34
2
3 Modified: 011_all_gtk-check-stdlib.patch
4 Log:
5 add reference to upstream patch report, additionally fix signed-unsigned-comparison warning like in upstream patch report
6
7 Revision Changes Path
8 1.2 src/patchsets/mico/2.3.13/011_all_gtk-check-stdlib.patch
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/mico/2.3.13/011_all_gtk-check-stdlib.patch?rev=1.2&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/mico/2.3.13/011_all_gtk-check-stdlib.patch?rev=1.2&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/mico/2.3.13/011_all_gtk-check-stdlib.patch?r1=1.1&r2=1.2
13
14 Index: 011_all_gtk-check-stdlib.patch
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/src/patchsets/mico/2.3.13/011_all_gtk-check-stdlib.patch,v
17 retrieving revision 1.1
18 retrieving revision 1.2
19 diff -u -r1.1 -r1.2
20 --- 011_all_gtk-check-stdlib.patch 26 May 2011 09:15:19 -0000 1.1
21 +++ 011_all_gtk-check-stdlib.patch 28 Jun 2011 15:03:34 -0000 1.2
22 @@ -1,5 +1,8 @@
23 Recent gcc is more strict against undeclared function calls
24 like system() and exit(), breaking gtk version check.
25 +Also fix signed-unsigned-comparison warning.
26 +
27 +http://sourceforge.net/mailarchive/forum.php?thread_name=4DDFA182.40903%40gentoo.org&forum_name=mico-devel
28 --- aclocal.m4.orig 2011-05-25 16:55:15.609086191 +0200
29 +++ aclocal.m4 2011-05-25 16:55:22.999136294 +0200
30 @@ -765,6 +765,7 @@
31 @@ -10,3 +13,9 @@
32
33 int
34 main ()
35 + {
36 +- int major, minor, micro;
37 ++ guint major, minor, micro;
38 +
39 + system ("touch conf.gtktest");
40 +