diff options
author | Binh Nguyen <binhnguyen@fastmail.fm> | 2012-08-23 15:13:34 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-23 08:14:12 -0500 |
commit | bc91b326ab5dc9522d405577370e9872d24e48ad (patch) | |
tree | 969588cc9b8c11ba414884cdf31578fc6be22e07 /libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch | |
parent | 21fd5876601d1f9f196a87d395c40993e3797a02 (diff) |
libraries/gtk-sharp: Fixed to build against gcc-4.7.x
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch')
-rw-r--r-- | libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch b/libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch new file mode 100644 index 0000000000..329d102bd6 --- /dev/null +++ b/libraries/gtk-sharp/gtk-sharp-2.12.10-gcc47.patch @@ -0,0 +1,39 @@ +diff --git a/glib/glue/list.c b/glib/glue/list.c +index dd3f0de..377df76 100644 +--- a/glib/glue/list.c ++++ b/glib/glue/list.c +@@ -20,7 +20,7 @@ + */ + + +-#include <glib/glist.h> ++#include <glib.h> + + /* Forward declarations */ + gpointer gtksharp_list_get_data (GList *l); +diff --git a/glib/glue/slist.c b/glib/glue/slist.c +index 80f5f17..ddd447c 100644 +--- a/glib/glue/slist.c ++++ b/glib/glue/slist.c +@@ -20,7 +20,7 @@ + */ + + +-#include <glib/gslist.h> ++#include <glib.h> + + /* Forward declarations */ + gpointer gtksharp_slist_get_data (GSList *l); +diff --git a/glib/glue/thread.c b/glib/glue/thread.c +index 4fcf8c6..3655cfc 100644 +--- a/glib/glue/thread.c ++++ b/glib/glue/thread.c +@@ -20,7 +20,7 @@ + */ + + +-#include <glib/gthread.h> ++#include <glib.h> + + gboolean glibsharp_g_thread_supported (void); + |