Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 9b8d02886f19796ff3f92f1f3bd858a2 > files > 6

perl-Gtk2-1.246.0-5.mga3.src.rpm

Index: gtk2perl-private.h
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/gtk2perl-private.h,v
retrieving revision 1.3
diff -p -u -r1.3 gtk2perl-private.h
--- gtk2perl-private.h	17 Oct 2006 20:20:37 -0000	1.3
+++ gtk2perl-private.h	10 Feb 2008 03:02:22 -0000
@@ -24,27 +24,27 @@
 #ifndef _GTK2PERL_PRIVATE_H_
 #define _GTK2PERL_PRIVATE_H_
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* Implemented in GtkItemFactory.xs. */
-GPerlCallback * gtk2perl_translate_func_create (SV * func, SV * data);
-gchar * gtk2perl_translate_func (const gchar *path, gpointer data);
+__hidden__ GPerlCallback * gtk2perl_translate_func_create (SV * func, SV * data);
+__hidden__ gchar * gtk2perl_translate_func (const gchar *path, gpointer data);
 
 /* Implemented in GtkRecentManager.xs */
-const gchar ** gtk2perl_sv_to_strv (SV *sv);
-SV * gtk2perl_sv_from_strv (const gchar **strv);
+__hidden__ const gchar ** gtk2perl_sv_to_strv (SV *sv);
+__hidden__ SV * gtk2perl_sv_from_strv (const gchar **strv);
 
 #if GTK_CHECK_VERSION (2, 6, 0)
 /* Implemented in GtkTreeView.xs. */
-GPerlCallback * gtk2perl_tree_view_row_separator_func_create (SV * func,
-							      SV * data);
-gboolean gtk2perl_tree_view_row_separator_func (GtkTreeModel *model,
-				                GtkTreeIter  *iter,
-				                gpointer      data);
+__hidden__ GPerlCallback * gtk2perl_tree_view_row_separator_func_create (SV * func,
+									 SV * data);
+__hidden__ gboolean gtk2perl_tree_view_row_separator_func (GtkTreeModel *model,
+							   GtkTreeIter  *iter,
+							   gpointer      data);
 #endif
 
 /* Implemented in PangoAttributes.xs. */
-void gtk2perl_pango_attribute_register_custom_type (PangoAttrType type, const char *package);
+__hidden__ void gtk2perl_pango_attribute_register_custom_type (PangoAttrType type, const char *package);
 
 #define GTK2PERL_PANGO_ATTR_REGISTER_CUSTOM_TYPE(attr, package)	\
 {								\
Index: gtk2perlinternal.h
===================================================================
RCS file: gtk2perlinternal.h
diff -N gtk2perlinternal.h
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gtk2perlinternal.h	10 Feb 2008 03:02:22 -0000
@@ -0,0 +1,90 @@
+#ifndef __GTK2PERL_INTERNAL_H__
+#define __GTK2PERL_INTERNAL_H__
+
+#include "gtk2perl.h"
+
+/*
+ * Evil alert:
+ *  In order to reduce the number of relocations in the shared object that
+ *  contains the binding code, we need to pull interesting tricks.  The most
+ *  obvious one we already do -- private helper functions and data are marked
+ *  "static" and "const" where possible.
+ *
+ *  However, the bulk of the symbols in the library are XSUBs.  The pattern is
+ *
+ *    XS(xsub1) { ... }
+ *    XS(xsub2) { ... }
+ *    XS(xsub3) { ... }
+ *    extern "C" XSUB(boot_Package__Name)
+ *    {
+ *        newXS("Package::Name::xsub1", XS_Package__Name_xsub1, file);
+ *        newXS("Package::Name::xsub2", XS_Package__Name_xsub2, file);
+ *        newXS("Package::Name::xsub3", XS_Package__Name_xsub3, file);
+ *    }
+ *
+ *  None of these are marked "static", and they are all defined by the XS()
+ *  macro.  Worse yet, MakeMaker calls xsubpp with the -prototype option,
+ *  which causes all of these actually to be doubled, like so:
+ *
+ *    XS(xsub1); / * prototype to pass -Wmissing-prototypes * /
+ *    XS(xsub1)
+ *    {
+ *       ...
+ *
+ *  The good news is that since each of these xsubs get stuck into a symbol
+ *  table hash in the boot function, we don't actually need them to be globally
+ *  visible.  The bad news is that the code here is generated by xsubpp, so
+ *  we don't really get control over that, and can't place a "static" in front
+ *  of each one.  And, we can't mark the boot xsub static, because it has to
+ *  be called externally by at least one other module.  (We actually have
+ *  boot_Gtk2() called from perl code, and all of the others called from
+ *  boot_Gtk2().
+ *
+ *  But, if we don't mind resorting to some evil, we can take advantage of
+ *  GCC compiler attributes and the C preprocessor's #undef to redefine the
+ *  XS() macro is a more helpful fashion.  By marking all of the xsub
+ *  definitions (except boot_Gtk2()!) with a visibility of "hidden" then we
+ *  can avoid somewhere in the neighborhood of 3000 relocations for Gtk2.so.
+ *
+ *  This macro redfinition must be carefully synchronized with the definition
+ *  in perl's XSUB.h or all hell will break loose.
+ *
+ *  See Ulrich Drepper's DSO How-To: http://people.redhat.com/drepper/dsohowto.pdf
+ */
+
+/*
+ * Figure out if we can define symbol visibility.  Prefer GLib's definition,
+ * because that supports more than just GNUC.
+ */
+#ifdef G_GNUC_INTERNAL
+# define __hidden__   G_GNUC_INTERNAL
+#elif __GNUC__
+# define __hidden__  __attribute__ ((visibility ("hidden")))
+#endif
+
+#ifdef __hidden__
+
+  /*
+   * perl's headers may define __unused__ for avoiding warnings on the cv
+   * arg of xsubs; prefer that.  otherwise, use GLib.
+   */
+# ifndef __unused__
+#  ifdef G_GNUC_UNUSED
+#   define __unused__ G_GNUC_UNUSED
+#  elif __GNUC__
+#   define __unused__  __attribute__ ((unused))
+#  else
+    /* No love. */
+#   define __unused__
+#  endif
+
+   /* Now, redefine the XS macro to include the visibility hint. */
+#  undef XS
+#  define XS(name) __hidden__ void name (pTHX_ CV* cv __unused__)
+   /* To reiterate, keep this synchronized with XSUB.h */
+
+# endif
+
+#endif /* __hidden__ */
+
+#endif /* __GTK2PERL_INTERNAL_H__ */
Index: xs/Gdk.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/Gdk.xs,v
retrieving revision 1.23
diff -p -u -r1.23 Gdk.xs
--- xs/Gdk.xs	15 Sep 2007 14:33:01 -0000	1.23
+++ xs/Gdk.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/Gdk.xs,v 1.23 2007/09/15 14:33:01 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk	PACKAGE = Gtk2::Gdk	PREFIX = gdk_
 
Index: xs/GdkCairo.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkCairo.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GdkCairo.xs
--- xs/GdkCairo.xs	19 Nov 2006 19:47:53 -0000	1.5
+++ xs/GdkCairo.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkCairo.xs,v 1.5 2006/11/19 19:47:53 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <cairo-perl.h>
 
 MODULE = Gtk2::Gdk::Cairo	PACKAGE = Gtk2::Gdk::Cairo::Context	PREFIX = gdk_cairo_
Index: xs/GdkColor.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkColor.xs,v
retrieving revision 1.22
diff -p -u -r1.22 GdkColor.xs
--- xs/GdkColor.xs	9 Dec 2007 14:56:51 -0000	1.22
+++ xs/GdkColor.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkColor.xs,v 1.22 2007/12/09 14:56:51 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 GdkColormap is a direct GObject subclass; be sure to use GdkColormap_noinc
Index: xs/GdkCursor.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkCursor.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GdkCursor.xs
--- xs/GdkCursor.xs	18 Sep 2005 15:07:22 -0000	1.12
+++ xs/GdkCursor.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkCursor.xs,v 1.12 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Cursor	PACKAGE = Gtk2::Gdk::Cursor	PREFIX = gdk_cursor_
 
Index: xs/GdkDisplay.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDisplay.xs,v
retrieving revision 1.18
diff -p -u -r1.18 GdkDisplay.xs
--- xs/GdkDisplay.xs	16 Dec 2007 18:31:16 -0000	1.18
+++ xs/GdkDisplay.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDisplay.xs,v 1.18 2007/12/16 18:31:16 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Display	PACKAGE = Gtk2::Gdk::Display	PREFIX = gdk_display_
 
Index: xs/GdkDisplayManager.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDisplayManager.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GdkDisplayManager.xs
--- xs/GdkDisplayManager.xs	18 Nov 2003 04:36:33 -0000	1.5
+++ xs/GdkDisplayManager.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDisplayManager.xs,v 1.5 2003/11/18 04:36:33 rwmcfa1 Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::DisplayManager	PACKAGE = Gtk2::Gdk::DisplayManager	PREFIX = gdk_display_manager_
 
Index: xs/GdkDnd.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDnd.xs,v
retrieving revision 1.15
diff -p -u -r1.15 GdkDnd.xs
--- xs/GdkDnd.xs	2 Jan 2005 16:25:51 -0000	1.15
+++ xs/GdkDnd.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDnd.xs,v 1.15 2005/01/02 16:25:51 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Dnd	PACKAGE = Gtk2::Gdk::DragContext	PREFIX = gdk_drag_context_
 
Index: xs/GdkDrawable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDrawable.xs,v
retrieving revision 1.19
diff -p -u -r1.19 GdkDrawable.xs
--- xs/GdkDrawable.xs	19 Nov 2006 19:47:53 -0000	1.19
+++ xs/GdkDrawable.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkDrawable.xs,v 1.19 2006/11/19 19:47:53 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 NOTE:
Index: xs/GdkEvent.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkEvent.xs,v
retrieving revision 1.52
diff -p -u -r1.52 GdkEvent.xs
--- xs/GdkEvent.xs	7 Jan 2008 19:54:49 -0000	1.52
+++ xs/GdkEvent.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkEvent.xs,v 1.52 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 
Index: xs/GdkGC.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkGC.xs,v
retrieving revision 1.23
diff -p -u -r1.23 GdkGC.xs
--- xs/GdkGC.xs	7 Jan 2008 20:23:28 -0000	1.23
+++ xs/GdkGC.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkGC.xs,v 1.23 2008/01/07 20:23:28 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
  * GdkGCValues code ported from Gtk-Perl 0.7009.  There's no boxed type
Index: xs/GdkInput.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkInput.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GdkInput.xs
--- xs/GdkInput.xs	15 May 2004 19:03:30 -0000	1.2
+++ xs/GdkInput.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkInput.xs,v 1.2 2004/05/15 19:03:30 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Device	PACKAGE = Gtk2::Gdk	PREFIX = gdk_
 
Index: xs/GdkKeys.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkKeys.xs,v
retrieving revision 1.13
diff -p -u -r1.13 GdkKeys.xs
--- xs/GdkKeys.xs	7 Jan 2008 20:23:29 -0000	1.13
+++ xs/GdkKeys.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkKeys.xs,v 1.13 2008/01/07 20:23:29 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* the _orclass type effectively allows a class name and silently maps it to
    NULL.  used as the first argument this allows a method to be invoked in two
Index: xs/GdkPango.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPango.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GdkPango.xs
--- xs/GdkPango.xs	15 Sep 2007 14:33:01 -0000	1.4
+++ xs/GdkPango.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPango.xs,v 1.4 2007/09/15 14:33:01 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include "gtk2perl-private.h"
 
 MODULE = Gtk2::Gdk::Pango	PACKAGE = Gtk2::Gdk::PangoRenderer	PREFIX = gdk_pango_renderer_
Index: xs/GdkPixbuf.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbuf.xs,v
retrieving revision 1.46
diff -p -u -r1.46 GdkPixbuf.xs
--- xs/GdkPixbuf.xs	15 Jan 2008 05:21:52 -0000	1.46
+++ xs/GdkPixbuf.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbuf.xs,v 1.46 2008/01/15 05:21:52 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 gtk2perl_pixbuf_destroy_notify (guchar * pixels,
Index: xs/GdkPixbufLoader.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbufLoader.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GdkPixbufLoader.xs
--- xs/GdkPixbufLoader.xs	11 Jul 2005 22:39:21 -0000	1.12
+++ xs/GdkPixbufLoader.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbufLoader.xs,v 1.12 2005/07/11 22:39:21 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::PixbufLoader	PACKAGE = Gtk2::Gdk::PixbufLoader	PREFIX = gdk_pixbuf_loader_
 
Index: xs/GdkPixbufSimpleAnim.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbufSimpleAnim.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GdkPixbufSimpleAnim.xs
--- xs/GdkPixbufSimpleAnim.xs	14 Oct 2005 04:00:35 -0000	1.1
+++ xs/GdkPixbufSimpleAnim.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixbufSimpleAnim.xs,v 1.1 2005/10/14 04:00:35 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::PixbufSimpleAnim	PACKAGE = Gtk2::Gdk::PixbufSimpleAnim	PREFIX = gdk_pixbuf_simple_anim_
 
Index: xs/GdkPixmap.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixmap.xs,v
retrieving revision 1.20
diff -p -u -r1.20 GdkPixmap.xs
--- xs/GdkPixmap.xs	7 Aug 2006 18:36:08 -0000	1.20
+++ xs/GdkPixmap.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkPixmap.xs,v 1.20 2006/08/07 18:36:08 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static SV *
 new_gdk_bitmap (GdkBitmap * bitmap, gboolean noinc)
Index: xs/GdkProperty.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkProperty.xs,v
retrieving revision 1.23
diff -p -u -r1.23 GdkProperty.xs
--- xs/GdkProperty.xs	13 May 2006 16:13:00 -0000	1.23
+++ xs/GdkProperty.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkProperty.xs,v 1.23 2006/05/13 16:13:00 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* ------------------------------------------------------------------------- */
 
Index: xs/GdkRegion.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkRegion.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GdkRegion.xs
--- xs/GdkRegion.xs	12 Jan 2008 20:52:19 -0000	1.11
+++ xs/GdkRegion.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkRegion.xs,v 1.11 2008/01/12 20:52:19 muppetman Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include "gperl_marshal.h"
 
 /* ------------------------------------------------------------------------- */
Index: xs/GdkRgb.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkRgb.xs,v
retrieving revision 1.16
diff -p -u -r1.16 GdkRgb.xs
--- xs/GdkRgb.xs	7 Jan 2008 20:23:29 -0000	1.16
+++ xs/GdkRgb.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkRgb.xs,v 1.16 2008/01/07 20:23:29 kaffeetisch Exp $
  */
- #include "gtk2perl.h"
+ #include "gtk2perlinternal.h"
 
 /*
 ####MODULE = Gtk2::Gdk::Rgb	PACKAGE = Gtk2::Gdk::Drawable	PREFIX = gdk_
Index: xs/GdkScreen.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkScreen.xs,v
retrieving revision 1.15
diff -p -u -r1.15 GdkScreen.xs
--- xs/GdkScreen.xs	7 Aug 2006 18:36:08 -0000	1.15
+++ xs/GdkScreen.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkScreen.xs,v 1.15 2006/08/07 18:36:08 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Screen	PACKAGE = Gtk2::Gdk::Screen	PREFIX = gdk_screen_
 
Index: xs/GdkSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkSelection.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GdkSelection.xs
--- xs/GdkSelection.xs	19 Sep 2004 21:47:11 -0000	1.11
+++ xs/GdkSelection.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkSelection.xs,v 1.11 2004/09/19 21:47:11 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Selection	PACKAGE = Gtk2::Gdk
 
Index: xs/GdkTypes.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkTypes.xs,v
retrieving revision 1.30
diff -p -u -r1.30 GdkTypes.xs
--- xs/GdkTypes.xs	7 Jan 2008 20:23:29 -0000	1.30
+++ xs/GdkTypes.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkTypes.xs,v 1.30 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* ------------------------------------------------------------------------- */
 
Index: xs/GdkVisual.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkVisual.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GdkVisual.xs
--- xs/GdkVisual.xs	15 May 2004 19:03:30 -0000	1.2
+++ xs/GdkVisual.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkVisual.xs,v 1.2 2004/05/15 19:03:30 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Gdk::Visual	PACKAGE = Gtk2::Gdk	PREFIX = gdk_
 
Index: xs/GdkWindow.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkWindow.xs,v
retrieving revision 1.52
diff -p -u -r1.52 GdkWindow.xs
--- xs/GdkWindow.xs	7 Jan 2008 20:23:29 -0000	1.52
+++ xs/GdkWindow.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkWindow.xs,v 1.52 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* ------------------------------------------------------------------------- */
 
Index: xs/GdkX11.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkX11.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GdkX11.xs
--- xs/GdkX11.xs	15 Sep 2007 14:33:02 -0000	1.10
+++ xs/GdkX11.xs	10 Feb 2008 03:02:23 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GdkX11.xs,v 1.10 2007/09/15 14:33:02 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #ifdef GDK_WINDOWING_X11
 # include <gdk/gdkx.h>
 #endif /* GDK_WINDOWING_X11 */
Index: xs/Gtk2.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/Gtk2.xs,v
retrieving revision 1.45
diff -p -u -r1.45 Gtk2.xs
--- xs/Gtk2.xs	9 Dec 2007 15:06:54 -0000	1.45
+++ xs/Gtk2.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/Gtk2.xs,v 1.45 2007/12/09 15:06:54 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static gboolean
 gtk2perl_init_add_callback_invoke (GPerlCallback * callback)
@@ -595,6 +595,18 @@ gtk_get_event_widget (class, GdkEvent_or
     C_ARGS:
 	event
 
+
+
+##
+## WARNING: FRAGILE!
+## xsubpp will generate the BOOT section, specifically boot_Gtk2(), after
+## this point in the file.  We need boot_Gtk2() to be callable from outside
+## our .so, so undo the visibility magic before that function is defined.
+##
+
+#undef __hidden__
+#define __hidden__
+
 # this stuff is only here to generate pod pages for abstract and functionless
 # object, that is the objects exist only as parents and have no functions of
 # their own
diff -p -u -r1.14 GtkAboutDialog.xs
--- xs/GtkAboutDialog.xs	15 Sep 2007 14:33:02 -0000	1.14
+++ xs/GtkAboutDialog.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAboutDialog.xs,v 1.14 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlCallback *
 gtk2perl_about_dialog_activate_link_func_create (SV * func, SV * data)
Index: xs/GtkAccelGroup.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelGroup.xs,v
retrieving revision 1.23
diff -p -u -r1.23 GtkAccelGroup.xs
--- xs/GtkAccelGroup.xs	30 Jan 2005 02:17:30 -0000	1.23
+++ xs/GtkAccelGroup.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelGroup.xs,v 1.23 2005/01/30 02:17:30 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 typedef struct {
 	GClosure * closure;
Index: xs/GtkAccelLabel.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelLabel.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkAccelLabel.xs
--- xs/GtkAccelLabel.xs	7 Aug 2006 18:36:08 -0000	1.7
+++ xs/GtkAccelLabel.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelLabel.xs,v 1.7 2006/08/07 18:36:08 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::AccelLabel	PACKAGE = Gtk2::AccelLabel	PREFIX = gtk_accel_label_
 
Index: xs/GtkAccelMap.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelMap.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkAccelMap.xs
--- xs/GtkAccelMap.xs	7 Apr 2005 11:05:43 -0000	1.8
+++ xs/GtkAccelMap.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAccelMap.xs,v 1.8 2005/04/07 11:05:43 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 gtk2perl_gtk_accel_map_foreach (GPerlCallback *callback, 
Index: xs/GtkAction.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAction.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkAction.xs
--- xs/GtkAction.xs	15 Sep 2007 14:33:02 -0000	1.10
+++ xs/GtkAction.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAction.xs,v 1.10 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Action	PACKAGE = Gtk2::Action	PREFIX = gtk_action_
 
Index: xs/GtkActionGroup.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkActionGroup.xs,v
retrieving revision 1.13
diff -p -u -r1.13 GtkActionGroup.xs
--- xs/GtkActionGroup.xs	7 Jan 2008 20:23:29 -0000	1.13
+++ xs/GtkActionGroup.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkActionGroup.xs,v 1.13 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include "gtk2perl-private.h" /* For the translate callback. */
 
 /* helper for using gperl_signal_connect when you don't have the SV of
Index: xs/GtkAdjustment.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAdjustment.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkAdjustment.xs
--- xs/GtkAdjustment.xs	26 Feb 2004 00:57:54 -0000	1.9
+++ xs/GtkAdjustment.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAdjustment.xs,v 1.9 2004/02/26 00:57:54 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Adjustment	PACKAGE = Gtk2::Adjustment	PREFIX = gtk_adjustment_
 
Index: xs/GtkAlignment.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAlignment.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkAlignment.xs
--- xs/GtkAlignment.xs	17 Mar 2004 03:52:25 -0000	1.8
+++ xs/GtkAlignment.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAlignment.xs,v 1.8 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Alignment	PACKAGE = Gtk2::Alignment	PREFIX = gtk_alignment_
 
Index: xs/GtkArrow.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkArrow.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkArrow.xs
--- xs/GtkArrow.xs	8 Mar 2004 23:04:19 -0000	1.8
+++ xs/GtkArrow.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkArrow.xs,v 1.8 2004/03/08 23:04:19 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Arrow	PACKAGE = Gtk2::Arrow	PREFIX = gtk_arrow_
 
Index: xs/GtkAspectFrame.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAspectFrame.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkAspectFrame.xs
--- xs/GtkAspectFrame.xs	12 Oct 2003 17:57:30 -0000	1.7
+++ xs/GtkAspectFrame.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAspectFrame.xs,v 1.7 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::AspectFrame	PACKAGE = Gtk2::AspectFrame	PREFIX = gtk_aspect_frame_
 
Index: xs/GtkAssistant.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAssistant.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GtkAssistant.xs
--- xs/GtkAssistant.xs	8 Jan 2008 04:52:55 -0000	1.2
+++ xs/GtkAssistant.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkAssistant.xs,v 1.2 2008/01/08 04:52:55 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 static GPerlCallback *
Index: xs/GtkBin.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBin.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkBin.xs
--- xs/GtkBin.xs	22 Sep 2003 00:04:25 -0000	1.4
+++ xs/GtkBin.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBin.xs,v 1.4 2003/09/22 00:04:25 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Bin	PACKAGE = Gtk2::Bin	PREFIX = gtk_bin_
 
Index: xs/GtkBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBox.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GtkBox.xs
--- xs/GtkBox.xs	16 Dec 2007 18:31:16 -0000	1.5
+++ xs/GtkBox.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBox.xs,v 1.5 2007/12/16 18:31:16 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Box	PACKAGE = Gtk2::Box	PREFIX = gtk_box_
 
Index: xs/GtkBuildable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBuildable.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GtkBuildable.xs
--- xs/GtkBuildable.xs	9 Jan 2008 07:08:41 -0000	1.2
+++ xs/GtkBuildable.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkBuildable.xs,v 1.2 2008/01/09 07:08:41 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 
@@ -158,7 +158,7 @@ gtk2perl_buildable_parser_end_element (G
 
 /* Called for character data */
 /* text is not nul-terminated */
-void
+static void
 gtk2perl_buildable_parser_text (GMarkupParseContext *context,
 				const gchar         *text,
 				gsize                text_len,  
@@ -183,7 +183,7 @@ gtk2perl_buildable_parser_text (GMarkupP
  * this includes comments and processing instructions.
  */
 /* text is not nul-terminated. */
-void
+static void
 gtk2perl_buildable_parser_passthrough (GMarkupParseContext *context,
 				       const gchar         *passthrough_text,
 				       gsize                text_len,  
@@ -206,7 +206,7 @@ gtk2perl_buildable_parser_passthrough (G
 /* Called on error, including one set by other
  * methods in the vtable. The GError should not be freed.
  */
-void
+static void
 gtk2perl_buildable_parser_error (GMarkupParseContext *context,
 				 GError              *error,
 				 gpointer             user_data)
Index: xs/GtkBuilder.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkBuilder.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GtkBuilder.xs
--- xs/GtkBuilder.xs	8 Jul 2007 18:18:24 -0000	1.5
+++ xs/GtkBuilder.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkBuilder.xs,v 1.5 2007/07/08 18:18:24 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* This doesn't belong here.  But currently, this is the only place a GType for
  * GConnectFlags is needed, so adding extra API to Glib doesn't seem justified.
Index: xs/GtkButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkButton.xs,v
retrieving revision 1.19
diff -p -u -r1.19 GtkButton.xs
--- xs/GtkButton.xs	5 Jun 2006 14:01:45 -0000	1.19
+++ xs/GtkButton.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkButton.xs,v 1.19 2006/06/05 14:01:45 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Button	PACKAGE = Gtk2::Button	PREFIX = gtk_button_
 
Index: xs/GtkButtonBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkButtonBox.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkButtonBox.xs
--- xs/GtkButtonBox.xs	17 Mar 2004 03:52:25 -0000	1.8
+++ xs/GtkButtonBox.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkButtonBox.xs,v 1.8 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ButtonBox	PACKAGE = Gtk2::ButtonBox	PREFIX = gtk_button_box_
 
Index: xs/GtkCalendar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCalendar.xs,v
retrieving revision 1.14
diff -p -u -r1.14 GtkCalendar.xs
--- xs/GtkCalendar.xs	17 Mar 2004 03:52:25 -0000	1.14
+++ xs/GtkCalendar.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCalendar.xs,v 1.14 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Calendar	PACKAGE = Gtk2::Calendar	PREFIX = gtk_calendar_
 
Index: xs/GtkCellEditable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellEditable.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkCellEditable.xs
--- xs/GtkCellEditable.xs	3 Mar 2004 04:26:42 -0000	1.8
+++ xs/GtkCellEditable.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellEditable.xs,v 1.8 2004/03/03 04:26:42 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 this is an interface
Index: xs/GtkCellLayout.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellLayout.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkCellLayout.xs
--- xs/GtkCellLayout.xs	12 Jan 2008 02:31:51 -0000	1.10
+++ xs/GtkCellLayout.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellLayout.xs,v 1.10 2008/01/12 02:31:51 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 typedef void (* GtkCellLayoutDataFunc) (GtkCellLayout   *cell_layout,
Index: xs/GtkCellRenderer.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRenderer.xs,v
retrieving revision 1.32
diff -p -u -r1.32 GtkCellRenderer.xs
--- xs/GtkCellRenderer.xs	7 Jan 2008 19:54:49 -0000	1.32
+++ xs/GtkCellRenderer.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRenderer.xs,v 1.32 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 warn_deprecated (const char * old_and_busted,
Index: xs/GtkCellRendererAccel.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererAccel.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkCellRendererAccel.xs
--- xs/GtkCellRendererAccel.xs	27 Apr 2006 22:23:23 -0000	1.1
+++ xs/GtkCellRendererAccel.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererAccel.xs,v 1.1 2006/04/27 22:23:23 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererAccel	PACKAGE = Gtk2::CellRendererAccel	PREFIX = gtk_cell_renderer_accel_
 
Index: xs/GtkCellRendererCombo.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererCombo.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkCellRendererCombo.xs
--- xs/GtkCellRendererCombo.xs	2 Jan 2005 16:25:51 -0000	1.1
+++ xs/GtkCellRendererCombo.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererCombo.xs,v 1.1 2005/01/02 16:25:51 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererCombo	PACKAGE = Gtk2::CellRendererCombo	PREFIX = gtk_cell_renderer_combo_
 
Index: xs/GtkCellRendererPixbuf.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererPixbuf.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkCellRendererPixbuf.xs
--- xs/GtkCellRendererPixbuf.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkCellRendererPixbuf.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererPixbuf.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererPixbuf	PACKAGE = Gtk2::CellRendererPixbuf	PREFIX = gtk_cell_renderer_pixbuf_
 
Index: xs/GtkCellRendererProgress.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererProgress.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkCellRendererProgress.xs
--- xs/GtkCellRendererProgress.xs	2 Jan 2005 16:25:51 -0000	1.1
+++ xs/GtkCellRendererProgress.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererProgress.xs,v 1.1 2005/01/02 16:25:51 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererProgress	PACKAGE = Gtk2::CellRendererProgress	PREFIX = gtk_cell_renderer_progress_
 
Index: xs/GtkCellRendererSpin.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererSpin.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkCellRendererSpin.xs
--- xs/GtkCellRendererSpin.xs	20 May 2006 21:11:47 -0000	1.1
+++ xs/GtkCellRendererSpin.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererSpin.xs,v 1.1 2006/05/20 21:11:47 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererSpin	PACKAGE = Gtk2::CellRendererSpin	PREFIX = gtk_cell_renderer_spin_
 
Index: xs/GtkCellRendererText.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererText.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkCellRendererText.xs
--- xs/GtkCellRendererText.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkCellRendererText.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererText.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererText	PACKAGE = Gtk2::CellRendererText	PREFIX = gtk_cell_renderer_text_
 
Index: xs/GtkCellRendererToggle.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererToggle.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkCellRendererToggle.xs
--- xs/GtkCellRendererToggle.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkCellRendererToggle.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellRendererToggle.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellRendererToggle	PACKAGE = Gtk2::CellRendererToggle	PREFIX = gtk_cell_renderer_toggle_
 
Index: xs/GtkCellView.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellView.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkCellView.xs
--- xs/GtkCellView.xs	29 Sep 2005 22:28:45 -0000	1.7
+++ xs/GtkCellView.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCellView.xs,v 1.7 2005/09/29 22:28:45 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CellView PACKAGE = Gtk2::CellView PREFIX = gtk_cell_view_
 
Index: xs/GtkCheckButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCheckButton.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkCheckButton.xs
--- xs/GtkCheckButton.xs	10 Jan 2004 04:26:26 -0000	1.10
+++ xs/GtkCheckButton.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCheckButton.xs,v 1.10 2004/01/10 04:26:26 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CheckButton	PACKAGE = Gtk2::CheckButton	PREFIX = gtk_check_button_
 
Index: xs/GtkCheckMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCheckMenuItem.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GtkCheckMenuItem.xs
--- xs/GtkCheckMenuItem.xs	17 Mar 2004 03:52:25 -0000	1.11
+++ xs/GtkCheckMenuItem.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCheckMenuItem.xs,v 1.11 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::CheckMenuItem	PACKAGE = Gtk2::CheckMenuItem	PREFIX = gtk_check_menu_item_
 
Index: xs/GtkClipboard.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkClipboard.xs,v
retrieving revision 1.24
diff -p -u -r1.24 GtkClipboard.xs
--- xs/GtkClipboard.xs	7 Aug 2006 18:36:09 -0000	1.24
+++ xs/GtkClipboard.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkClipboard.xs,v 1.24 2006/08/07 18:36:09 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
  * this entire object didn't exist in the original 2.0.0 release.  hrm.
Index: xs/GtkColorButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorButton.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkColorButton.xs
--- xs/GtkColorButton.xs	22 Feb 2004 19:57:34 -0000	1.3
+++ xs/GtkColorButton.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorButton.xs,v 1.3 2004/02/22 19:57:34 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
  
 MODULE = Gtk2::ColorButton	PACKAGE = Gtk2::ColorButton	PREFIX = gtk_color_button_
 
Index: xs/GtkColorSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorSelection.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkColorSelection.xs
--- xs/GtkColorSelection.xs	7 Aug 2006 18:36:09 -0000	1.12
+++ xs/GtkColorSelection.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorSelection.xs,v 1.12 2006/08/07 18:36:09 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ColorSelection	PACKAGE = Gtk2::ColorSelection	PREFIX = gtk_color_selection_
 
Index: xs/GtkColorSelectionDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorSelectionDialog.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkColorSelectionDialog.xs
--- xs/GtkColorSelectionDialog.xs	26 Feb 2004 00:57:54 -0000	1.9
+++ xs/GtkColorSelectionDialog.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkColorSelectionDialog.xs,v 1.9 2004/02/26 00:57:54 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ColorSelectionDialog	PACKAGE = Gtk2::ColorSelectionDialog	PREFIX = gtk_color_selection_dialog_
 
Index: xs/GtkCombo.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCombo.xs,v
retrieving revision 1.16
diff -p -u -r1.16 GtkCombo.xs
--- xs/GtkCombo.xs	6 Jan 2007 16:27:52 -0000	1.16
+++ xs/GtkCombo.xs	10 Feb 2008 03:02:23 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCombo.xs,v 1.16 2007/01/06 16:27:52 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Combo	PACKAGE = Gtk2::Combo	PREFIX = gtk_combo_
 
Index: xs/GtkComboBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkComboBox.xs,v
retrieving revision 1.15
diff -p -u -r1.15 GtkComboBox.xs
--- xs/GtkComboBox.xs	7 Aug 2006 18:36:09 -0000	1.15
+++ xs/GtkComboBox.xs	10 Feb 2008 03:02:23 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkComboBox.xs,v 1.15 2006/08/07 18:36:09 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 #if GTK_CHECK_VERSION (2, 6, 0)
 # include "gtk2perl-private.h" /* For the row separator callback. */
Index: xs/GtkComboBoxEntry.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkComboBoxEntry.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkComboBoxEntry.xs
--- xs/GtkComboBoxEntry.xs	29 Sep 2005 22:28:45 -0000	1.10
+++ xs/GtkComboBoxEntry.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkComboBoxEntry.xs,v 1.10 2005/09/29 22:28:45 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ComboBoxEntry	PACKAGE = Gtk2::ComboBoxEntry	PREFIX = gtk_combo_box_entry_
 
Index: xs/GtkContainer.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkContainer.xs,v
retrieving revision 1.18
diff -p -u -r1.18 GtkContainer.xs
--- xs/GtkContainer.xs	8 Jan 2008 04:21:34 -0000	1.18
+++ xs/GtkContainer.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkContainer.xs,v 1.18 2008/01/08 04:21:34 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 init_child_property_value (GObject * object, 
Index: xs/GtkCurve.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCurve.xs,v
retrieving revision 1.16
diff -p -u -r1.16 GtkCurve.xs
--- xs/GtkCurve.xs	7 Aug 2006 18:36:09 -0000	1.16
+++ xs/GtkCurve.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkCurve.xs,v 1.16 2006/08/07 18:36:09 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Curve	PACKAGE = Gtk2::Curve	PREFIX = gtk_curve_
 
Index: xs/GtkDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDialog.xs,v
retrieving revision 1.29
diff -p -u -r1.29 GtkDialog.xs
--- xs/GtkDialog.xs	8 Dec 2007 15:59:38 -0000	1.29
+++ xs/GtkDialog.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDialog.xs,v 1.29 2007/12/08 15:59:38 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 /*
Index: xs/GtkDnd.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDnd.xs,v
retrieving revision 1.20
diff -p -u -r1.20 GtkDnd.xs
--- xs/GtkDnd.xs	7 Aug 2006 18:36:09 -0000	1.20
+++ xs/GtkDnd.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDnd.xs,v 1.20 2006/08/07 18:36:09 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Dnd	PACKAGE = Gtk2::Gdk::DragContext	PREFIX = gtk_drag_
 
Index: xs/GtkDrawingArea.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDrawingArea.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkDrawingArea.xs
--- xs/GtkDrawingArea.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkDrawingArea.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkDrawingArea.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::DrawingArea	PACKAGE = Gtk2::DrawingArea	PREFIX = gtk_drawing_area_
 
Index: xs/GtkEditable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEditable.xs,v
retrieving revision 1.16
diff -p -u -r1.16 GtkEditable.xs
--- xs/GtkEditable.xs	8 Jul 2007 14:49:14 -0000	1.16
+++ xs/GtkEditable.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEditable.xs,v 1.16 2007/07/08 14:49:14 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 /*
Index: xs/GtkEntry.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEntry.xs,v
retrieving revision 1.22
diff -p -u -r1.22 GtkEntry.xs
--- xs/GtkEntry.xs	7 Jan 2008 20:23:29 -0000	1.22
+++ xs/GtkEntry.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEntry.xs,v 1.22 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlBoxedWrapperClass gtk_border_wrapper_class;
 
Index: xs/GtkEntryCompletion.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEntryCompletion.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkEntryCompletion.xs
--- xs/GtkEntryCompletion.xs	15 Sep 2007 14:33:02 -0000	1.12
+++ xs/GtkEntryCompletion.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEntryCompletion.xs,v 1.12 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 typedef gboolean (* GtkEntryCompletionMatchFunc) (GtkEntryCompletion *completion,
Index: xs/GtkEventBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEventBox.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkEventBox.xs
--- xs/GtkEventBox.xs	17 Mar 2004 03:52:25 -0000	1.8
+++ xs/GtkEventBox.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkEventBox.xs,v 1.8 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::EventBox	PACKAGE = Gtk2::EventBox	PREFIX = gtk_event_box_
 
Index: xs/GtkExpander.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkExpander.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkExpander.xs
--- xs/GtkExpander.xs	22 Feb 2004 19:57:34 -0000	1.3
+++ xs/GtkExpander.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkExpander.xs,v 1.3 2004/02/22 19:57:34 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Expander	PACKAGE = Gtk2::Expander	PREFIX = gtk_expander_
 
Index: xs/GtkFileChooser.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooser.xs,v
retrieving revision 1.17
diff -p -u -r1.17 GtkFileChooser.xs
--- xs/GtkFileChooser.xs	18 Sep 2005 15:07:22 -0000	1.17
+++ xs/GtkFileChooser.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooser.xs,v 1.17 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FileChooser PACKAGE = Gtk2::FileChooser PREFIX = gtk_file_chooser_
 
Index: xs/GtkFileChooserButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserButton.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkFileChooserButton.xs
--- xs/GtkFileChooserButton.xs	7 Aug 2006 18:36:10 -0000	1.3
+++ xs/GtkFileChooserButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserButton.xs,v 1.3 2006/08/07 18:36:10 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FileChooserButton	PACKAGE = Gtk2::FileChooserButton	PREFIX = gtk_file_chooser_button_
 
Index: xs/GtkFileChooserDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserDialog.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GtkFileChooserDialog.xs
--- xs/GtkFileChooserDialog.xs	17 Mar 2004 03:52:25 -0000	1.5
+++ xs/GtkFileChooserDialog.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserDialog.xs,v 1.5 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FileChooserDialog PACKAGE = Gtk2::FileChooserDialog PREFIX = gtk_file_chooser_dialog_
 
Index: xs/GtkFileChooserWidget.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserWidget.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkFileChooserWidget.xs
--- xs/GtkFileChooserWidget.xs	19 Jan 2005 13:03:31 -0000	1.6
+++ xs/GtkFileChooserWidget.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileChooserWidget.xs,v 1.6 2005/01/19 13:03:31 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FileChooserWidget	PACKAGE = Gtk2::FileChooserWidget	PREFIX = gtk_file_chooser_widget_
 
Index: xs/GtkFileFilter.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileFilter.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkFileFilter.xs
--- xs/GtkFileFilter.xs	7 Jan 2008 20:23:29 -0000	1.10
+++ xs/GtkFileFilter.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileFilter.xs,v 1.10 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 /*
Index: xs/GtkFileSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileSelection.xs,v
retrieving revision 1.17
diff -p -u -r1.17 GtkFileSelection.xs
--- xs/GtkFileSelection.xs	6 Jan 2007 16:27:53 -0000	1.17
+++ xs/GtkFileSelection.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFileSelection.xs,v 1.17 2007/01/06 16:27:53 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FileSelection	PACKAGE = Gtk2::FileSelection	PREFIX = gtk_file_selection_
 
Index: xs/GtkFixed.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFixed.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkFixed.xs
--- xs/GtkFixed.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkFixed.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFixed.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Fixed	PACKAGE = Gtk2::Fixed	PREFIX = gtk_fixed_
 
Index: xs/GtkFontButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFontButton.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkFontButton.xs
--- xs/GtkFontButton.xs	22 Feb 2004 19:57:34 -0000	1.3
+++ xs/GtkFontButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFontButton.xs,v 1.3 2004/02/22 19:57:34 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FontButton	PACKAGE = Gtk2::FontButton	PREFIX = gtk_font_button_
 
Index: xs/GtkFontSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFontSelection.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GtkFontSelection.xs
--- xs/GtkFontSelection.xs	26 Feb 2004 00:57:54 -0000	1.11
+++ xs/GtkFontSelection.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFontSelection.xs,v 1.11 2004/02/26 00:57:54 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::FontSelection	PACKAGE = Gtk2::FontSelection	PREFIX = gtk_font_selection_
 
Index: xs/GtkFrame.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFrame.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkFrame.xs
--- xs/GtkFrame.xs	28 Dec 2003 00:07:22 -0000	1.9
+++ xs/GtkFrame.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkFrame.xs,v 1.9 2003/12/28 00:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Frame	PACKAGE = Gtk2::Frame	PREFIX = gtk_frame_
 
Index: xs/GtkGC.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkGC.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkGC.xs
--- xs/GtkGC.xs	19 Apr 2004 19:20:51 -0000	1.1
+++ xs/GtkGC.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkGC.xs,v 1.1 2004/04/19 19:20:51 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::GC	PACKAGE = Gtk2::GC	PREFIX = gtk_gc_
 
Index: xs/GtkGammaCurve.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkGammaCurve.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkGammaCurve.xs
--- xs/GtkGammaCurve.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkGammaCurve.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkGammaCurve.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::GammaCurve	PACKAGE = Gtk2::GammaCurve	PREFIX = gtk_gamma_curve_
 
Index: xs/GtkHBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHBox.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkHBox.xs
--- xs/GtkHBox.xs	12 Oct 2003 17:57:30 -0000	1.7
+++ xs/GtkHBox.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHBox.xs,v 1.7 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HBox	PACKAGE = Gtk2::HBox	PREFIX = gtk_hbox_
 
Index: xs/GtkHButtonBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHButtonBox.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkHButtonBox.xs
--- xs/GtkHButtonBox.xs	12 Oct 2003 17:57:30 -0000	1.8
+++ xs/GtkHButtonBox.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHButtonBox.xs,v 1.8 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HButtonBox	PACKAGE = Gtk2::HButtonBox	PREFIX = gtk_hbutton_box_
 
Index: xs/GtkHPaned.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHPaned.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkHPaned.xs
--- xs/GtkHPaned.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkHPaned.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHPaned.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HPaned	PACKAGE = Gtk2::HPaned	PREFIX = gtk_hpaned_
 
Index: xs/GtkHRuler.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHRuler.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkHRuler.xs
--- xs/GtkHRuler.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkHRuler.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHRuler.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HRuler	PACKAGE = Gtk2::HRuler	PREFIX = gtk_hruler_
 
Index: xs/GtkHScale.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHScale.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkHScale.xs
--- xs/GtkHScale.xs	12 Oct 2003 17:57:30 -0000	1.8
+++ xs/GtkHScale.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHScale.xs,v 1.8 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HScale	PACKAGE = Gtk2::HScale	PREFIX = gtk_hscale_
 
Index: xs/GtkHScrollbar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHScrollbar.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GtkHScrollbar.xs
--- xs/GtkHScrollbar.xs	17 Dec 2003 03:45:12 -0000	1.2
+++ xs/GtkHScrollbar.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHScrollbar.xs,v 1.2 2003/12/17 03:45:12 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HScrollbar	PACKAGE = Gtk2::HScrollbar	PREFIX = gtk_hscrollbar_
 
Index: xs/GtkHSeparator.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHSeparator.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkHSeparator.xs
--- xs/GtkHSeparator.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkHSeparator.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHSeparator.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HSeparator	PACKAGE = Gtk2::HSeparator	PREFIX = gtk_hseparator_
 
Index: xs/GtkHandleBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHandleBox.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkHandleBox.xs
--- xs/GtkHandleBox.xs	9 Apr 2004 12:05:49 -0000	1.8
+++ xs/GtkHandleBox.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkHandleBox.xs,v 1.8 2004/04/09 12:05:49 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::HandleBox	PACKAGE = Gtk2::HandleBox	PREFIX = gtk_handle_box_
 
Index: xs/GtkIMContext.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMContext.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkIMContext.xs
--- xs/GtkIMContext.xs	18 Nov 2007 18:26:30 -0000	1.1
+++ xs/GtkIMContext.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMContext.xs,v 1.1 2007/11/18 18:26:30 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::IMContext	PACKAGE = Gtk2::IMContext	PREFIX = gtk_im_context_
 
Index: xs/GtkIMContextSimple.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMContextSimple.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkIMContextSimple.xs
--- xs/GtkIMContextSimple.xs	18 Nov 2007 18:26:30 -0000	1.1
+++ xs/GtkIMContextSimple.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMContextSimple.xs,v 1.1 2007/11/18 18:26:30 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::IMContextSimple	PACKAGE = Gtk2::IMContextSimple	PREFIX = gtk_im_context_simple_
 
Index: xs/GtkIMMulticontext.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMMulticontext.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkIMMulticontext.xs
--- xs/GtkIMMulticontext.xs	18 Nov 2007 18:26:30 -0000	1.1
+++ xs/GtkIMMulticontext.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIMMulticontext.xs,v 1.1 2007/11/18 18:26:30 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::IMMultiContext	PACKAGE = Gtk2::IMMulticontext	PREFIX = gtk_im_multicontext_
 
Index: xs/GtkIconFactory.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIconFactory.xs,v
retrieving revision 1.21
diff -p -u -r1.21 GtkIconFactory.xs
--- xs/GtkIconFactory.xs	20 Apr 2004 13:49:50 -0000	1.21
+++ xs/GtkIconFactory.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIconFactory.xs,v 1.21 2004/04/20 13:49:50 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
  * Programs and libraries can register their own GtkIconSizes, making the
Index: xs/GtkIconTheme.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIconTheme.xs,v
retrieving revision 1.15
diff -p -u -r1.15 GtkIconTheme.xs
--- xs/GtkIconTheme.xs	7 Jan 2008 20:23:29 -0000	1.15
+++ xs/GtkIconTheme.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::IconTheme	PACKAGE = Gtk2::IconTheme	PREFIX = gtk_icon_theme_
 
Index: xs/GtkIconView.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIconView.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkIconView.xs
--- xs/GtkIconView.xs	16 Dec 2007 18:31:16 -0000	1.12
+++ xs/GtkIconView.xs	10 Feb 2008 03:02:24 -0000
@@ -5,7 +5,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkIconView.xs,v 1.12 2007/12/16 18:31:16 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlCallback *
 gtk2perl_icon_view_foreach_func_create (SV * func, SV * data)
Index: xs/GtkImage.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkImage.xs,v
retrieving revision 1.21
diff -p -u -r1.21 GtkImage.xs
--- xs/GtkImage.xs	16 Dec 2007 18:31:16 -0000	1.21
+++ xs/GtkImage.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkImage.xs,v 1.21 2007/12/16 18:31:16 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Image	PACKAGE = Gtk2::Image	PREFIX = gtk_image_
 
Index: xs/GtkImageMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkImageMenuItem.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkImageMenuItem.xs
--- xs/GtkImageMenuItem.xs	10 Jan 2004 04:26:26 -0000	1.10
+++ xs/GtkImageMenuItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkImageMenuItem.xs,v 1.10 2004/01/10 04:26:26 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ImageMenuItem	PACKAGE = Gtk2::ImageMenuItem	PREFIX = gtk_image_menu_item_
 
Index: xs/GtkInputDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkInputDialog.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkInputDialog.xs
--- xs/GtkInputDialog.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkInputDialog.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkInputDialog.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::InputDialog	PACKAGE = Gtk2::InputDialog	PREFIX = gtk_input_dialog_
 
Index: xs/GtkInvisible.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkInvisible.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkInvisible.xs
--- xs/GtkInvisible.xs	4 Jan 2004 01:53:37 -0000	1.8
+++ xs/GtkInvisible.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkInvisible.xs,v 1.8 2004/01/04 01:53:37 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Invisible	PACKAGE = Gtk2::Invisible	PREFIX = gtk_invisible_
 
Index: xs/GtkItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkItem.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkItem.xs
--- xs/GtkItem.xs	22 Sep 2003 00:04:25 -0000	1.4
+++ xs/GtkItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkItem.xs,v 1.4 2003/09/22 00:04:25 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Item	PACKAGE = Gtk2::Item	PREFIX = gtk_item_
 
Index: xs/GtkItemFactory.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkItemFactory.xs,v
retrieving revision 1.25
diff -p -u -r1.25 GtkItemFactory.xs
--- xs/GtkItemFactory.xs	7 Jan 2008 20:23:29 -0000	1.25
+++ xs/GtkItemFactory.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkItemFactory.xs,v 1.25 2008/01/07 20:23:29 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* ------------------------------------------------------------------------- */
 
Index: xs/GtkLabel.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLabel.xs,v
retrieving revision 1.18
diff -p -u -r1.18 GtkLabel.xs
--- xs/GtkLabel.xs	25 Jun 2006 13:27:08 -0000	1.18
+++ xs/GtkLabel.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLabel.xs,v 1.18 2006/06/25 13:27:08 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 MODULE = Gtk2::Label	PACKAGE = Gtk2::Label	PREFIX = gtk_label_
Index: xs/GtkLayout.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLayout.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkLayout.xs
--- xs/GtkLayout.xs	4 Nov 2006 13:36:42 -0000	1.8
+++ xs/GtkLayout.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLayout.xs,v 1.8 2006/11/04 13:36:42 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Layout	PACKAGE = Gtk2::Layout	PREFIX = gtk_layout_
 
Index: xs/GtkLinkButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLinkButton.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkLinkButton.xs
--- xs/GtkLinkButton.xs	7 Jan 2008 19:54:49 -0000	1.3
+++ xs/GtkLinkButton.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkLinkButton.xs,v 1.3 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlCallback *
 gtk2perl_link_button_uri_func_create (SV * func,
Index: xs/GtkList.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkList.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GtkList.xs
--- xs/GtkList.xs	8 Jun 2005 02:13:33 -0000	1.11
+++ xs/GtkList.xs	10 Feb 2008 03:02:24 -0000
@@ -24,7 +24,7 @@
  *
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::List	PACKAGE = Gtk2::List	PREFIX = gtk_list_
 
Index: xs/GtkListItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkListItem.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkListItem.xs
--- xs/GtkListItem.xs	8 Jun 2005 02:13:33 -0000	1.9
+++ xs/GtkListItem.xs	10 Feb 2008 03:02:24 -0000
@@ -24,7 +24,7 @@
  *
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ListItem	PACKAGE = Gtk2::ListItem	PREFIX = gtk_list_item_
 
Index: xs/GtkListStore.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkListStore.xs,v
retrieving revision 1.24
diff -p -u -r1.24 GtkListStore.xs
--- xs/GtkListStore.xs	29 Sep 2005 22:28:45 -0000	1.24
+++ xs/GtkListStore.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkListStore.xs,v 1.24 2005/09/29 22:28:45 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 
Index: xs/GtkMenu.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenu.xs,v
retrieving revision 1.25
diff -p -u -r1.25 GtkMenu.xs
--- xs/GtkMenu.xs	7 Jan 2008 19:54:49 -0000	1.25
+++ xs/GtkMenu.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenu.xs,v 1.25 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 
Index: xs/GtkMenuBar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuBar.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkMenuBar.xs
--- xs/GtkMenuBar.xs	18 Sep 2005 15:07:22 -0000	1.8
+++ xs/GtkMenuBar.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuBar.xs,v 1.8 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::MenuBar	PACKAGE = Gtk2::MenuBar	PREFIX = gtk_menu_bar_
 
Index: xs/GtkMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuItem.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkMenuItem.xs
--- xs/GtkMenuItem.xs	23 Jun 2007 17:13:53 -0000	1.12
+++ xs/GtkMenuItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuItem.xs,v 1.12 2007/06/23 17:13:53 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 /*
Index: xs/GtkMenuShell.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuShell.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkMenuShell.xs
--- xs/GtkMenuShell.xs	18 Sep 2005 15:07:22 -0000	1.10
+++ xs/GtkMenuShell.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuShell.xs,v 1.10 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::MenuShell	PACKAGE = Gtk2::MenuShell	PREFIX = gtk_menu_shell_
 
Index: xs/GtkMenuToolButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuToolButton.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkMenuToolButton.xs
--- xs/GtkMenuToolButton.xs	15 Sep 2007 14:33:02 -0000	1.3
+++ xs/GtkMenuToolButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMenuToolButton.xs,v 1.3 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::MenuToolButton	PACKAGE = Gtk2::MenuToolButton	PREFIX = gtk_menu_tool_button_
 
Index: xs/GtkMessageDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMessageDialog.xs,v
retrieving revision 1.22
diff -p -u -r1.22 GtkMessageDialog.xs
--- xs/GtkMessageDialog.xs	7 Jan 2008 19:54:49 -0000	1.22
+++ xs/GtkMessageDialog.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMessageDialog.xs,v 1.22 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static char *
 format_message (SV * format, SV ** start, int count)
Index: xs/GtkMisc.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMisc.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkMisc.xs
--- xs/GtkMisc.xs	22 Sep 2003 00:04:25 -0000	1.4
+++ xs/GtkMisc.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkMisc.xs,v 1.4 2003/09/22 00:04:25 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Misc	PACKAGE = Gtk2::Misc	PREFIX = gtk_misc_
 
Index: xs/GtkNotebook.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkNotebook.xs,v
retrieving revision 1.22
diff -p -u -r1.22 GtkNotebook.xs
--- xs/GtkNotebook.xs	7 Jan 2008 19:54:49 -0000	1.22
+++ xs/GtkNotebook.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkNotebook.xs,v 1.22 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GtkWidget *
 ensure_label_widget (SV * sv)
Index: xs/GtkObject.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkObject.xs,v
retrieving revision 1.17
diff -p -u -r1.17 GtkObject.xs
--- xs/GtkObject.xs	16 Jan 2006 22:28:25 -0000	1.17
+++ xs/GtkObject.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkObject.xs,v 1.17 2006/01/16 22:28:25 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* #define NOISY */
 
Index: xs/GtkOptionMenu.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkOptionMenu.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkOptionMenu.xs
--- xs/GtkOptionMenu.xs	6 Jan 2007 16:27:53 -0000	1.7
+++ xs/GtkOptionMenu.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkOptionMenu.xs,v 1.7 2007/01/06 16:27:53 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::OptionMenu	PACKAGE = Gtk2::OptionMenu	PREFIX = gtk_option_menu_
 
Index: xs/GtkPageSetup.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPageSetup.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkPageSetup.xs
--- xs/GtkPageSetup.xs	15 Sep 2007 14:33:02 -0000	1.3
+++ xs/GtkPageSetup.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPageSetup.xs,v 1.3 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::PageSetup	PACKAGE = Gtk2::PageSetup	PREFIX = gtk_page_setup_
 
Index: xs/GtkPaned.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPaned.xs,v
retrieving revision 1.13
diff -p -u -r1.13 GtkPaned.xs
--- xs/GtkPaned.xs	20 Jun 2005 19:40:42 -0000	1.13
+++ xs/GtkPaned.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPaned.xs,v 1.13 2005/06/20 19:40:42 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Paned	PACKAGE = Gtk2::Paned	PREFIX = gtk_paned_
 
Index: xs/GtkPaperSize.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPaperSize.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkPaperSize.xs
--- xs/GtkPaperSize.xs	15 Sep 2007 14:33:02 -0000	1.3
+++ xs/GtkPaperSize.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPaperSize.xs,v 1.3 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::PaperSize	PACKAGE = Gtk2::PaperSize	PREFIX = gtk_paper_size_
 
Index: xs/GtkPlug.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPlug.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkPlug.xs
--- xs/GtkPlug.xs	17 Feb 2005 04:33:47 -0000	1.10
+++ xs/GtkPlug.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPlug.xs,v 1.10 2005/02/17 04:33:47 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Plug	PACKAGE = Gtk2::Plug	PREFIX = gtk_plug_
 
Index: xs/GtkPrintContext.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintContext.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkPrintContext.xs
--- xs/GtkPrintContext.xs	20 Jun 2006 16:49:17 -0000	1.1
+++ xs/GtkPrintContext.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintContext.xs,v 1.1 2006/06/20 16:49:17 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <cairo-perl.h>
 
 MODULE = Gtk2::PrintContext	PACKAGE = Gtk2::PrintContext	PREFIX = gtk_print_context_
Index: xs/GtkPrintOperation.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintOperation.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkPrintOperation.xs
--- xs/GtkPrintOperation.xs	20 Jun 2006 16:49:17 -0000	1.1
+++ xs/GtkPrintOperation.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintOperation.xs,v 1.1 2006/06/20 16:49:17 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlCallback *
 gtk2perl_page_setup_done_func_create (SV * func, SV * data)
Index: xs/GtkPrintOperationPreview.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintOperationPreview.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkPrintOperationPreview.xs
--- xs/GtkPrintOperationPreview.xs	20 Jun 2006 16:49:18 -0000	1.1
+++ xs/GtkPrintOperationPreview.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintOperationPreview.xs,v 1.1 2006/06/20 16:49:18 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::PrintOperationPreview	PACKAGE = Gtk2::PrintOperationPreview	PREFIX = gtk_print_operation_preview_
 
Index: xs/GtkPrintSettings.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintSettings.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkPrintSettings.xs
--- xs/GtkPrintSettings.xs	15 Sep 2007 14:33:02 -0000	1.3
+++ xs/GtkPrintSettings.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkPrintSettings.xs,v 1.3 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GPerlCallback *
 gtk2perl_print_settings_func_create (SV * func, SV * data)
Index: xs/GtkProgressBar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkProgressBar.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GtkProgressBar.xs
--- xs/GtkProgressBar.xs	18 Jan 2006 19:04:11 -0000	1.11
+++ xs/GtkProgressBar.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkProgressBar.xs,v 1.11 2006/01/18 19:04:11 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ProgressBar	PACKAGE = Gtk2::ProgressBar	PREFIX = gtk_progress_bar_
 
Index: xs/GtkRadioAction.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioAction.xs,v
retrieving revision 1.11
diff -p -u -r1.11 GtkRadioAction.xs
--- xs/GtkRadioAction.xs	7 Jan 2008 20:23:29 -0000	1.11
+++ xs/GtkRadioAction.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioAction.xs,v 1.11 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RadioAction	PACKAGE = Gtk2::RadioAction	PREFIX = gtk_radio_action_
 
Index: xs/GtkRadioButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioButton.xs,v
retrieving revision 1.20
diff -p -u -r1.20 GtkRadioButton.xs
--- xs/GtkRadioButton.xs	7 Jan 2008 20:23:29 -0000	1.20
+++ xs/GtkRadioButton.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioButton.xs,v 1.20 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RadioButton	PACKAGE = Gtk2::RadioButton	PREFIX = gtk_radio_button_
 
Index: xs/GtkRadioMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioMenuItem.xs,v
retrieving revision 1.19
diff -p -u -r1.19 GtkRadioMenuItem.xs
--- xs/GtkRadioMenuItem.xs	7 Jan 2008 20:23:29 -0000	1.19
+++ xs/GtkRadioMenuItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioMenuItem.xs,v 1.19 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RadioMenuItem	PACKAGE = Gtk2::RadioMenuItem	PREFIX = gtk_radio_menu_item_
 
Index: xs/GtkRadioToolButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioToolButton.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkRadioToolButton.xs
--- xs/GtkRadioToolButton.xs	7 Jan 2008 20:23:29 -0000	1.6
+++ xs/GtkRadioToolButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRadioToolButton.xs,v 1.6 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static GSList *
 group_from_sv (SV * member_or_listref)
Index: xs/GtkRange.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRange.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkRange.xs
--- xs/GtkRange.xs	15 Sep 2007 14:33:02 -0000	1.8
+++ xs/GtkRange.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRange.xs,v 1.8 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Range	PACKAGE = Gtk2::Range	PREFIX = gtk_range_
 
Index: xs/GtkRc.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRc.xs,v
retrieving revision 1.28
diff -p -u -r1.28 GtkRc.xs
--- xs/GtkRc.xs	7 Jan 2008 19:54:49 -0000	1.28
+++ xs/GtkRc.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRc.xs,v 1.28 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Rc	PACKAGE = Gtk2::Rc	PREFIX = gtk_rc_
 
Index: xs/GtkRecentAction.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentAction.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkRecentAction.xs
--- xs/GtkRecentAction.xs	16 Jun 2007 15:39:39 -0000	1.1
+++ xs/GtkRecentAction.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkRecentAction.xs,v 1.1 2007/06/16 15:39:39 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RecentAction	PACKAGE = Gtk2::RecentAction	PREFIX = gtk_recent_action_
 
Index: xs/GtkRecentChooser.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooser.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkRecentChooser.xs
--- xs/GtkRecentChooser.xs	12 Jul 2006 09:36:49 -0000	1.3
+++ xs/GtkRecentChooser.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooser.xs,v 1.3 2006/07/12 09:36:49 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static gint
 gtk2perl_recent_sort_func (GtkRecentInfo *a,
Index: xs/GtkRecentChooserDialog.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserDialog.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GtkRecentChooserDialog.xs
--- xs/GtkRecentChooserDialog.xs	12 Jul 2006 09:36:49 -0000	1.2
+++ xs/GtkRecentChooserDialog.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserDialog.xs,v 1.2 2006/07/12 09:36:49 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RecentChooserDialog	PACKAGE = Gtk2::RecentChooserDialog	PREFIX = gtk_recent_chooser_dialog_
 
Index: xs/GtkRecentChooserMenu.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserMenu.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkRecentChooserMenu.xs
--- xs/GtkRecentChooserMenu.xs	2 Jul 2006 20:04:52 -0000	1.1
+++ xs/GtkRecentChooserMenu.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserMenu.xs,v 1.1 2006/07/02 20:04:52 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RecentChooserMenu	PACKAGE = Gtk2::RecentChooserMenu	PREFIX = gtk_recent_chooser_menu_
 
Index: xs/GtkRecentChooserWidget.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserWidget.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkRecentChooserWidget.xs
--- xs/GtkRecentChooserWidget.xs	2 Jul 2006 20:04:52 -0000	1.1
+++ xs/GtkRecentChooserWidget.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentChooserWidget.xs,v 1.1 2006/07/02 20:04:52 ebassi Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::RecentChooserWidget	PACKAGE = Gtk2::RecentChooserWidget	PREFIX = gtk_recent_chooser_widget_
 
Index: xs/GtkRecentFilter.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentFilter.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkRecentFilter.xs
--- xs/GtkRecentFilter.xs	7 Jan 2008 20:23:29 -0000	1.7
+++ xs/GtkRecentFilter.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentFilter.xs,v 1.7 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
  /* For gtk2perl_sv_to_strv and gtk2perl_sv_from_strv. */
 #include "gtk2perl-private.h"
Index: xs/GtkRecentManager.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRecentManager.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkRecentManager.xs
--- xs/GtkRecentManager.xs	7 Jan 2008 20:23:29 -0000	1.9
+++ xs/GtkRecentManager.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* Also used in GtkRecentFilter.xs */
 const gchar **
Index: xs/GtkRuler.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRuler.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkRuler.xs
--- xs/GtkRuler.xs	22 Sep 2003 00:04:25 -0000	1.4
+++ xs/GtkRuler.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkRuler.xs,v 1.4 2003/09/22 00:04:25 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Ruler	PACKAGE = Gtk2::Ruler	PREFIX = gtk_ruler_
 
Index: xs/GtkScale.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkScale.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkScale.xs
--- xs/GtkScale.xs	17 Mar 2004 03:52:25 -0000	1.8
+++ xs/GtkScale.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkScale.xs,v 1.8 2004/03/17 03:52:25 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Scale	PACKAGE = Gtk2::Scale	PREFIX = gtk_scale_
 
Index: xs/GtkScaleButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkScaleButton.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkScaleButton.xs
--- xs/GtkScaleButton.xs	16 Jun 2007 12:39:25 -0000	1.1
+++ xs/GtkScaleButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkScaleButton.xs,v 1.1 2007/06/16 12:39:25 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 #define ICONS_FROM_STACK(offset, icons)					\
 	if (items > offset) {						\
Index: xs/GtkScrolledWindow.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkScrolledWindow.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkScrolledWindow.xs
--- xs/GtkScrolledWindow.xs	16 Dec 2007 18:31:16 -0000	1.12
+++ xs/GtkScrolledWindow.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkScrolledWindow.xs,v 1.12 2007/12/16 18:31:16 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ScrolledWindow	PACKAGE = Gtk2::ScrolledWindow	PREFIX = gtk_scrolled_window_
 
Index: xs/GtkSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSelection.xs,v
retrieving revision 1.32
diff -p -u -r1.32 GtkSelection.xs
--- xs/GtkSelection.xs	7 Jan 2008 20:23:29 -0000	1.32
+++ xs/GtkSelection.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSelection.xs,v 1.32 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 SV *
 newSVGtkTargetEntry (GtkTargetEntry * e)
Index: xs/GtkSeparatorMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSeparatorMenuItem.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkSeparatorMenuItem.xs
--- xs/GtkSeparatorMenuItem.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkSeparatorMenuItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSeparatorMenuItem.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::SeparatorMenuItem	PACKAGE = Gtk2::SeparatorMenuItem	PREFIX = gtk_separator_menu_item_
 
Index: xs/GtkSeparatorToolItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSeparatorToolItem.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkSeparatorToolItem.xs
--- xs/GtkSeparatorToolItem.xs	22 Feb 2004 19:57:34 -0000	1.3
+++ xs/GtkSeparatorToolItem.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSeparatorToolItem.xs,v 1.3 2004/02/22 19:57:34 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::SeparatorToolItem PACKAGE = Gtk2::SeparatorToolItem PREFIX = gtk_separator_tool_item_
 
Index: xs/GtkSizeGroup.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSizeGroup.xs,v
retrieving revision 1.10
diff -p -u -r1.10 GtkSizeGroup.xs
--- xs/GtkSizeGroup.xs	7 Aug 2006 18:36:10 -0000	1.10
+++ xs/GtkSizeGroup.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSizeGroup.xs,v 1.10 2006/08/07 18:36:10 kaffeetisch Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::SizeGroup	PACKAGE = Gtk2::SizeGroup	PREFIX = gtk_size_group_
 
Index: xs/GtkSocket.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSocket.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkSocket.xs
--- xs/GtkSocket.xs	17 Feb 2005 04:33:47 -0000	1.8
+++ xs/GtkSocket.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSocket.xs,v 1.8 2005/02/17 04:33:47 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Socket	PACKAGE = Gtk2::Socket	PREFIX = gtk_socket_
 
Index: xs/GtkSpinButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSpinButton.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkSpinButton.xs
--- xs/GtkSpinButton.xs	29 Sep 2005 22:28:45 -0000	1.9
+++ xs/GtkSpinButton.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkSpinButton.xs,v 1.9 2005/09/29 22:28:45 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::SpinButton	PACKAGE = Gtk2::SpinButton	PREFIX = gtk_spin_button_
 
Index: xs/GtkStatusIcon.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStatusIcon.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkStatusIcon.xs
--- xs/GtkStatusIcon.xs	12 Jan 2008 22:28:28 -0000	1.8
+++ xs/GtkStatusIcon.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStatusIcon.xs,v 1.8 2008/01/12 22:28:28 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::StatusIcon	PACKAGE = Gtk2::StatusIcon	PREFIX = gtk_status_icon_
 
Index: xs/GtkStatusbar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStatusbar.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkStatusbar.xs
--- xs/GtkStatusbar.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkStatusbar.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStatusbar.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Statusbar	PACKAGE = Gtk2::Statusbar	PREFIX = gtk_statusbar_
 
Index: xs/GtkStock.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStock.xs,v
retrieving revision 1.25
diff -p -u -r1.25 GtkStock.xs
--- xs/GtkStock.xs	7 Jan 2008 20:23:29 -0000	1.25
+++ xs/GtkStock.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStock.xs,v 1.25 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include "gtk2perl-private.h" /* For the translate callback. */
 
 /*
Index: xs/GtkStyle.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStyle.xs,v
retrieving revision 1.26
diff -p -u -r1.26 GtkStyle.xs
--- xs/GtkStyle.xs	7 Aug 2006 18:36:10 -0000	1.26
+++ xs/GtkStyle.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStyle.xs,v 1.26 2006/08/07 18:36:10 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Style	PACKAGE = Gtk2::Style	PREFIX = gtk_style_
 
Index: xs/GtkTable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTable.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkTable.xs
--- xs/GtkTable.xs	12 Oct 2003 17:57:30 -0000	1.7
+++ xs/GtkTable.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTable.xs,v 1.7 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 #define GTK_TYPE_TABLE			(gtk_table_get_type ())
Index: xs/GtkTearoffMenuItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTearoffMenuItem.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkTearoffMenuItem.xs
--- xs/GtkTearoffMenuItem.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkTearoffMenuItem.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTearoffMenuItem.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TearoffMenuItem	PACKAGE = Gtk2::TearoffMenuItem	PREFIX = gtk_tearoff_menu_item_
 
Index: xs/GtkTextBuffer.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextBuffer.xs,v
retrieving revision 1.29
diff -p -u -r1.29 GtkTextBuffer.xs
--- xs/GtkTextBuffer.xs	15 Sep 2007 14:33:02 -0000	1.29
+++ xs/GtkTextBuffer.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextBuffer.xs,v 1.29 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* is a GObject */
 
Index: xs/GtkTextBufferRichText.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextBufferRichText.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkTextBufferRichText.xs
--- xs/GtkTextBufferRichText.xs	7 Jan 2008 19:54:49 -0000	1.4
+++ xs/GtkTextBufferRichText.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextBufferRichText.xs,v 1.4 2008/01/07 19:54:49 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 static GPerlCallback *
Index: xs/GtkTextChildAnchor.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextChildAnchor.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkTextChildAnchor.xs
--- xs/GtkTextChildAnchor.xs	28 Jan 2004 20:42:10 -0000	1.3
+++ xs/GtkTextChildAnchor.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextChildAnchor.xs,v 1.3 2004/01/28 20:42:10 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TextChildAnchor	PACKAGE = Gtk2::TextChildAnchor	PREFIX = gtk_text_child_anchor_
 
Index: xs/GtkTextIter.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextIter.xs,v
retrieving revision 1.22
diff -p -u -r1.22 GtkTextIter.xs
--- xs/GtkTextIter.xs	18 Sep 2005 15:07:22 -0000	1.22
+++ xs/GtkTextIter.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextIter.xs,v 1.22 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 static GPerlCallback *
Index: xs/GtkTextMark.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextMark.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkTextMark.xs
--- xs/GtkTextMark.xs	15 Sep 2007 14:33:02 -0000	1.6
+++ xs/GtkTextMark.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextMark.xs,v 1.6 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TextMark	PACKAGE = Gtk2::TextMark	PREFIX = gtk_text_mark_
 
Index: xs/GtkTextTag.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextTag.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkTextTag.xs
--- xs/GtkTextTag.xs	21 Nov 2003 07:38:06 -0000	1.9
+++ xs/GtkTextTag.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextTag.xs,v 1.9 2003/11/21 07:38:06 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TextTag	PACKAGE = Gtk2::TextTag	PREFIX = gtk_text_tag_
 
Index: xs/GtkTextTagTable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextTagTable.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GtkTextTagTable.xs
--- xs/GtkTextTagTable.xs	4 Jun 2004 20:45:00 -0000	1.5
+++ xs/GtkTextTagTable.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextTagTable.xs,v 1.5 2004/06/04 20:45:00 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 foreach_callback (GtkTextTag *tag,
Index: xs/GtkTextView.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextView.xs,v
retrieving revision 1.16
diff -p -u -r1.16 GtkTextView.xs
--- xs/GtkTextView.xs	9 Jan 2005 03:48:41 -0000	1.16
+++ xs/GtkTextView.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTextView.xs,v 1.16 2005/01/09 03:48:41 muppetman Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TextView	PACKAGE = Gtk2::TextView	PREFIX = gtk_text_view_
 
Index: xs/GtkToggleAction.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleAction.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkToggleAction.xs
--- xs/GtkToggleAction.xs	25 Apr 2005 17:37:47 -0000	1.4
+++ xs/GtkToggleAction.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleAction.xs,v 1.4 2005/04/25 17:37:47 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ToggleAction	PACKAGE = Gtk2::ToggleAction	PREFIX = gtk_toggle_action_
 
Index: xs/GtkToggleButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleButton.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkToggleButton.xs
--- xs/GtkToggleButton.xs	10 Jan 2004 04:26:26 -0000	1.9
+++ xs/GtkToggleButton.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleButton.xs,v 1.9 2004/01/10 04:26:26 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ToggleButton	PACKAGE = Gtk2::ToggleButton	PREFIX = gtk_toggle_button_
 
Index: xs/GtkToggleToolButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleToolButton.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkToggleToolButton.xs
--- xs/GtkToggleToolButton.xs	22 Feb 2004 19:57:34 -0000	1.4
+++ xs/GtkToggleToolButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToggleToolButton.xs,v 1.4 2004/02/22 19:57:34 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ToggleToolButton PACKAGE = Gtk2::ToggleToolButton PREFIX = gtk_toggle_tool_button_
 
Index: xs/GtkToolButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolButton.xs,v
retrieving revision 1.5
diff -p -u -r1.5 GtkToolButton.xs
--- xs/GtkToolButton.xs	18 Sep 2005 15:07:22 -0000	1.5
+++ xs/GtkToolButton.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolButton.xs,v 1.5 2005/09/18 15:07:22 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ToolButton PACKAGE = Gtk2::ToolButton PREFIX = gtk_tool_button_
 
Index: xs/GtkToolItem.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolItem.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkToolItem.xs
--- xs/GtkToolItem.xs	15 Sep 2007 14:33:02 -0000	1.6
+++ xs/GtkToolItem.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolItem.xs,v 1.6 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::ToolItem PACKAGE = Gtk2::ToolItem PREFIX = gtk_tool_item_
 
Index: xs/GtkToolbar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolbar.xs,v
retrieving revision 1.20
diff -p -u -r1.20 GtkToolbar.xs
--- xs/GtkToolbar.xs	7 Jan 2008 19:54:50 -0000	1.20
+++ xs/GtkToolbar.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkToolbar.xs,v 1.20 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 most of the insert/append/prepend functions do the same thing with one minor
Index: xs/GtkTooltip.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTooltip.xs,v
retrieving revision 1.3
diff -p -u -r1.3 GtkTooltip.xs
--- xs/GtkTooltip.xs	22 Jul 2007 21:46:02 -0000	1.3
+++ xs/GtkTooltip.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkTooltip.xs,v 1.3 2007/07/22 21:46:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Tooltip	PACKAGE = Gtk2::Tooltip	PREFIX = gtk_tooltip_
 
Index: xs/GtkTooltips.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTooltips.xs,v
retrieving revision 1.18
diff -p -u -r1.18 GtkTooltips.xs
--- xs/GtkTooltips.xs	7 Jan 2008 19:54:50 -0000	1.18
+++ xs/GtkTooltips.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTooltips.xs,v 1.18 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Tooltips	PACKAGE = Gtk2::Tooltips	PREFIX = gtk_tooltips_
 
Index: xs/GtkTreeDnd.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeDnd.xs,v
retrieving revision 1.9
diff -p -u -r1.9 GtkTreeDnd.xs
--- xs/GtkTreeDnd.xs	11 Jul 2005 22:39:21 -0000	1.9
+++ xs/GtkTreeDnd.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeDnd.xs,v 1.9 2005/07/11 22:39:21 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 #define PREP_BOOL(object, path) \
 	gboolean ret;	\
Index: xs/GtkTreeModel.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeModel.xs,v
retrieving revision 1.52
diff -p -u -r1.52 GtkTreeModel.xs
--- xs/GtkTreeModel.xs	7 Jan 2008 20:23:29 -0000	1.52
+++ xs/GtkTreeModel.xs	10 Feb 2008 03:02:24 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeModel.xs,v 1.52 2008/01/07 20:23:29 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 #include <gperl_marshal.h>
 
 /* this is just an interface */
Index: xs/GtkTreeModelFilter.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeModelFilter.xs,v
retrieving revision 1.14
diff -p -u -r1.14 GtkTreeModelFilter.xs
--- xs/GtkTreeModelFilter.xs	7 Jan 2008 20:23:29 -0000	1.14
+++ xs/GtkTreeModelFilter.xs	10 Feb 2008 03:02:24 -0000
@@ -18,7 +18,7 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /*
 typedef gboolean (* GtkTreeModelFilterVisibleFunc) (GtkTreeModel *model,
Index: xs/GtkTreeModelSort.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeModelSort.xs,v
retrieving revision 1.12
diff -p -u -r1.12 GtkTreeModelSort.xs
--- xs/GtkTreeModelSort.xs	24 Feb 2007 14:22:03 -0000	1.12
+++ xs/GtkTreeModelSort.xs	10 Feb 2008 03:02:24 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeModelSort.xs,v 1.12 2007/02/24 14:22:03 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TreeModelSort	PACKAGE = Gtk2::TreeModelSort	PREFIX = gtk_tree_model_sort_
 
Index: xs/GtkTreeSelection.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeSelection.xs,v
retrieving revision 1.19
diff -p -u -r1.19 GtkTreeSelection.xs
--- xs/GtkTreeSelection.xs	7 Jan 2008 19:54:50 -0000	1.19
+++ xs/GtkTreeSelection.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeSelection.xs,v 1.19 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* descended directly from GObject */
 
Index: xs/GtkTreeSortable.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeSortable.xs,v
retrieving revision 1.14
diff -p -u -r1.14 GtkTreeSortable.xs
--- xs/GtkTreeSortable.xs	7 Jan 2008 19:54:50 -0000	1.14
+++ xs/GtkTreeSortable.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeSortable.xs,v 1.14 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* ------------------------------------------------------------------------- */
 
Index: xs/GtkTreeStore.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeStore.xs,v
retrieving revision 1.27
diff -p -u -r1.27 GtkTreeStore.xs
--- xs/GtkTreeStore.xs	22 Jun 2007 17:08:56 -0000	1.27
+++ xs/GtkTreeStore.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeStore.xs,v 1.27 2007/06/22 17:08:56 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::TreeStore	PACKAGE = Gtk2::TreeStore	PREFIX = gtk_tree_store_
 
Index: xs/GtkTreeView.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeView.xs,v
retrieving revision 1.47
diff -p -u -r1.47 GtkTreeView.xs
--- xs/GtkTreeView.xs	7 Jan 2008 19:54:50 -0000	1.47
+++ xs/GtkTreeView.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeView.xs,v 1.47 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 /* handlers for GtkTreeCellDataFunc, defined in GtkTreeViewColumn.xs */
 GPerlCallback * gtk2perl_tree_cell_data_func_create (SV * func, SV *data);
Index: xs/GtkTreeViewColumn.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeViewColumn.xs,v
retrieving revision 1.31
diff -p -u -r1.31 GtkTreeViewColumn.xs
--- xs/GtkTreeViewColumn.xs	15 Sep 2007 14:33:02 -0000	1.31
+++ xs/GtkTreeViewColumn.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkTreeViewColumn.xs,v 1.31 2007/09/15 14:33:02 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 
 /*
Index: xs/GtkUIManager.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkUIManager.xs,v
retrieving revision 1.4
diff -p -u -r1.4 GtkUIManager.xs
--- xs/GtkUIManager.xs	8 Mar 2004 02:58:07 -0000	1.4
+++ xs/GtkUIManager.xs	10 Feb 2008 03:02:25 -0000
@@ -6,7 +6,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkUIManager.xs,v 1.4 2004/03/08 02:58:07 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::UIManager	PACKAGE = Gtk2::UIManager	PREFIX = gtk_ui_manager_
 
Index: xs/GtkVBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVBox.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkVBox.xs
--- xs/GtkVBox.xs	12 Oct 2003 17:57:30 -0000	1.7
+++ xs/GtkVBox.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVBox.xs,v 1.7 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VBox	PACKAGE = Gtk2::VBox	PREFIX = gtk_vbox_
 
Index: xs/GtkVButtonBox.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVButtonBox.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkVButtonBox.xs
--- xs/GtkVButtonBox.xs	12 Oct 2003 17:57:30 -0000	1.8
+++ xs/GtkVButtonBox.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVButtonBox.xs,v 1.8 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VButtonBox	PACKAGE = Gtk2::VButtonBox	PREFIX = gtk_vbutton_box_
 
Index: xs/GtkVPaned.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVPaned.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkVPaned.xs
--- xs/GtkVPaned.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkVPaned.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVPaned.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VPaned	PACKAGE = Gtk2::VPaned	PREFIX = gtk_vpaned_
 
Index: xs/GtkVRuler.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVRuler.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkVRuler.xs
--- xs/GtkVRuler.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkVRuler.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVRuler.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VRuler	PACKAGE = Gtk2::VRuler	PREFIX = gtk_vruler_
 
Index: xs/GtkVScale.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVScale.xs,v
retrieving revision 1.8
diff -p -u -r1.8 GtkVScale.xs
--- xs/GtkVScale.xs	12 Oct 2003 17:57:30 -0000	1.8
+++ xs/GtkVScale.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVScale.xs,v 1.8 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VScale	PACKAGE = Gtk2::VScale	PREFIX = gtk_vscale_
 
Index: xs/GtkVScrollbar.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVScrollbar.xs,v
retrieving revision 1.2
diff -p -u -r1.2 GtkVScrollbar.xs
--- xs/GtkVScrollbar.xs	17 Dec 2003 03:45:12 -0000	1.2
+++ xs/GtkVScrollbar.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVScrollbar.xs,v 1.2 2003/12/17 03:45:12 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VScrollbar	PACKAGE = Gtk2::VScrollbar	PREFIX = gtk_vscrollbar_
 
Index: xs/GtkVSeparator.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVSeparator.xs,v
retrieving revision 1.6
diff -p -u -r1.6 GtkVSeparator.xs
--- xs/GtkVSeparator.xs	12 Oct 2003 17:57:30 -0000	1.6
+++ xs/GtkVSeparator.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVSeparator.xs,v 1.6 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VSeparator	PACKAGE = Gtk2::VSeparator	PREFIX = gtk_vseparator_
 
Index: xs/GtkViewport.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkViewport.xs,v
retrieving revision 1.7
diff -p -u -r1.7 GtkViewport.xs
--- xs/GtkViewport.xs	12 Oct 2003 17:57:30 -0000	1.7
+++ xs/GtkViewport.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkViewport.xs,v 1.7 2003/10/12 17:57:30 rwmcfa1 Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Viewport	PACKAGE = Gtk2::Viewport	PREFIX = gtk_viewport_
 
Index: xs/GtkVolumeButton.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkVolumeButton.xs,v
retrieving revision 1.1
diff -p -u -r1.1 GtkVolumeButton.xs
--- xs/GtkVolumeButton.xs	16 Jun 2007 12:39:26 -0000	1.1
+++ xs/GtkVolumeButton.xs	10 Feb 2008 03:02:25 -0000
@@ -6,7 +6,7 @@
  * $Id: GtkVolumeButton.xs,v 1.1 2007/06/16 12:39:26 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::VolumeButton	PACKAGE = Gtk2::VolumeButton	PREFIX = gtk_volume_button_
 
Index: xs/GtkWidget.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkWidget.xs,v
retrieving revision 1.72
diff -p -u -r1.72 GtkWidget.xs
--- xs/GtkWidget.xs	1 Jan 2008 22:57:05 -0000	1.72
+++ xs/GtkWidget.xs	10 Feb 2008 03:02:25 -0000
@@ -5,7 +5,7 @@
  *
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkWidget.xs,v 1.72 2008/01/01 22:57:05 muppetman Exp $
  */
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 static void
 _INSTALL_OVERRIDES (const char * package)
Index: xs/GtkWindow.xs
===================================================================
RCS file: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkWindow.xs,v
retrieving revision 1.44
diff -p -u -r1.44 GtkWindow.xs
--- xs/GtkWindow.xs	7 Jan 2008 19:54:50 -0000	1.44
+++ xs/GtkWindow.xs	10 Feb 2008 03:02:25 -0000
@@ -19,7 +19,7 @@
  * $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkWindow.xs,v 1.44 2008/01/07 19:54:50 kaffeetisch Exp $
  */
 
-#include "gtk2perl.h"
+#include "gtk2perlinternal.h"
 
 MODULE = Gtk2::Window	PACKAGE = Gtk2::Window	PREFIX = gtk_window_