glib-2.0-2.14.0: fix inline warnings with gcc 4.2 in gutils.h
authorHolger Freyther <zecke@selfish.org>
Sun, 7 Oct 2007 17:35:31 +0000 (17:35 +0000)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Sun, 7 Oct 2007 17:35:31 +0000 (17:35 +0000)
packages/glib-2.0/glib-2.0-2.14.0/gcc-4.2-inline-fix.patch [new file with mode: 0644]
packages/glib-2.0/glib-2.0_2.14.0.bb

diff --git a/packages/glib-2.0/glib-2.0-2.14.0/gcc-4.2-inline-fix.patch b/packages/glib-2.0/glib-2.0-2.14.0/gcc-4.2-inline-fix.patch
new file mode 100644 (file)
index 0000000..ea2b41e
--- /dev/null
@@ -0,0 +1,17 @@
+Index: glib-2.12.9/glib/gutils.h
+===================================================================
+--- glib-2.12.9.orig/glib/gutils.h     2007-10-07 19:13:53.000000000 +0200
++++ glib-2.12.9/glib/gutils.h  2007-10-07 19:15:04.000000000 +0200
+@@ -97,7 +97,11 @@
+ #  define G_INLINE_FUNC
+ #  undef  G_CAN_INLINE
+ #elif defined (__GNUC__) 
+-#  define G_INLINE_FUNC extern inline
++#  if defined (__GNUC_GNU_INLINE__)
++#    define G_INLINE_FUNC extern  __attribute__((gnu_inline)) inline
++#  else
++#    define G_INLINE_FUNC extern inline
++#  endif
+ #elif defined (G_CAN_INLINE) 
+ #  define G_INLINE_FUNC static inline
+ #else /* can't inline */
index 995efbd..e4318cd 100644 (file)
@@ -2,4 +2,5 @@ require glib.inc
 
 SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/glib/2.14/glib-${PV}.tar.bz2 \
            file://glibconfig-sysdefs.h \
-           file://configure-libtool.patch;patch=1"
+           file://configure-libtool.patch;patch=1 \
+           file://gcc-4.2-inline-fix.patch;patch=1"