Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-10-05 Thread gtk-perl-list
Closed as well. Able to build on 5.28 and 5.22


On Sat, May 26, 2018 at 08:10:33PM +0200, Torsten Schoenfeld wrote:
> On 23.05.2018 11:03, gtk-perl-l...@talkvideo.net wrote:
> >A single-line Perl command like:
> >
> >perl -e "use Gtk3;"
> >
> >Results in the following error:
> >
> >cannot make GdkRectangle synonymous to the unregistered type 
> >CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
> 
> Haven't seen that one before.  The only possible reasons I can think
> of are: a) Cairo::GObject is linked against a different
> cairo-gobject library than the one Gtk3/Glib::Object::Introspection
> see at runtime, or b) there's a race condition between the BOOT
> section in Cairo::GObject and the import sub in Gtk3.
> 
> With the attached patches, what's the output of "perl -e'use Gtk3'"
> on your system?
> 
> On mine, it is:
> 
> # perl -e'use Gtk3'
> Cairo::GObject: registering 94192984588768 (CairoRectangleInt)
> Glib: trying to look up 94192984588768 (CairoRectangleInt)

> diff --git a/CairoGObject.xs b/CairoGObject.xs
> index ab1c70b..23428a3 100644
> --- a/CairoGObject.xs
> +++ b/CairoGObject.xs
> @@ -283,6 +283,7 @@ BOOT:
> _wrapper_class);
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE, "Cairo::Rectangle",
> _wrapper_class);
> + warn ("Cairo::GObject: registering %ld (%s)\n", 
> CAIRO_GOBJECT_TYPE_RECTANGLE_INT, g_type_name 
> (CAIRO_GOBJECT_TYPE_RECTANGLE_INT));
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE_INT, 
> "Cairo::RectangleInt",
> _int_wrapper_class);
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_REGION, "Cairo::Region",

> diff --git a/GBoxed.xs b/GBoxed.xs
> index 5c726aa..1b623df 100644
> --- a/GBoxed.xs
> +++ b/GBoxed.xs
> @@ -287,6 +287,7 @@ gperl_register_boxed_synonym (GType registered_gtype,
>  
>   G_LOCK (info_by_gtype);
>  
> + warn ("Glib: trying to look up %ld (%s)\n", registered_gtype, 
> g_type_name (registered_gtype));
>   registered_boxed_info = (BoxedInfo *)
>   g_hash_table_lookup (info_by_gtype, (gpointer) 
> registered_gtype);
>  

> ___
> gtk-perl-list mailing list
> gtk-perl-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-perl-list

___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-09-27 Thread gtk-perl-list
On Sun, Sep 16, 2018 at 01:06:55PM +1000, Daniel Kasak via gtk-perl-list wrote:
> Unrelated, and not offering help on this particular issue ( sorry ) ... but
> ...
> 
> Do you have build scripts for Windows? I had some that worked at one point,
> but they stopped working shortly after, and I didn't have the time / skills
> to keep them maintained.
> 
> Dan


Unfortunately I have nothing I can publish. (Other than bugs I find).

I see that Glib and  Glib::Object::Introspection may have an update.
As such I will be re-visiting the build process. I'll see how it goes.

I will say that I used pgk-config to make sure I had all libraries,
etc. Also, $PATH and other Environment Variables need to be correct.

You may need to specify Libraries by passing variables to "make"
on the command line, or editing Makefiles. Also, on an MSYS2 system
its important to make sure you have the right combination msys64, and 
mingw64. "pkg-config" is probably the way to go when it comes to
keeping your libraries straight.


> 
> On Sun, Sep 16, 2018 at 5:09 AM Torsten Schoenfeld 
> wrote:
> 
> > On 04.06.2018 15:45, gtk-perl-l...@talkvideo.net wrote:
> > > With the patches below I get:
> > >
> > > perl -e "use Gtk3;"
> > >
> > > Cairo::GObject: registering 44919376 (CairoRectangleInt)
> > > Glib: trying to look up 63302960 (CairoRectangleInt)
> > > cannot make GdkRectangle synonymous to the unregistered type
> > CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
> > > BEGIN failed--compilation aborted at -e line 1.
> >
> > This suggests that multiple library installation are getting mixed up on
> > your system.  Try to look for multiple *glib*.dll, *gobject*.dll,
> > *cairo*.dll and *cairo-gobject*.dll.
> >
> > -Torsten
> > ___
> > gtk-perl-list mailing list
> > gtk-perl-list@gnome.org
> > https://mail.gnome.org/mailman/listinfo/gtk-perl-list
> >

> ___
> gtk-perl-list mailing list
> gtk-perl-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-perl-list

___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-09-15 Thread Daniel Kasak via gtk-perl-list
Unrelated, and not offering help on this particular issue ( sorry ) ... but
...

Do you have build scripts for Windows? I had some that worked at one point,
but they stopped working shortly after, and I didn't have the time / skills
to keep them maintained.

Dan

On Sun, Sep 16, 2018 at 5:09 AM Torsten Schoenfeld 
wrote:

> On 04.06.2018 15:45, gtk-perl-l...@talkvideo.net wrote:
> > With the patches below I get:
> >
> > perl -e "use Gtk3;"
> >
> > Cairo::GObject: registering 44919376 (CairoRectangleInt)
> > Glib: trying to look up 63302960 (CairoRectangleInt)
> > cannot make GdkRectangle synonymous to the unregistered type
> CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
> > BEGIN failed--compilation aborted at -e line 1.
>
> This suggests that multiple library installation are getting mixed up on
> your system.  Try to look for multiple *glib*.dll, *gobject*.dll,
> *cairo*.dll and *cairo-gobject*.dll.
>
> -Torsten
> ___
> gtk-perl-list mailing list
> gtk-perl-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-perl-list
>
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-09-15 Thread Torsten Schoenfeld

On 04.06.2018 15:45, gtk-perl-l...@talkvideo.net wrote:

With the patches below I get:

perl -e "use Gtk3;"

Cairo::GObject: registering 44919376 (CairoRectangleInt)
Glib: trying to look up 63302960 (CairoRectangleInt)
cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt 
at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
BEGIN failed--compilation aborted at -e line 1.


This suggests that multiple library installation are getting mixed up on 
your system.  Try to look for multiple *glib*.dll, *gobject*.dll, 
*cairo*.dll and *cairo-gobject*.dll.


-Torsten
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-06-04 Thread gtk-perl-list
With the patches below I get:

perl -e "use Gtk3;"

Cairo::GObject: registering 44919376 (CairoRectangleInt)
Glib: trying to look up 63302960 (CairoRectangleInt)
cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt 
at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
BEGIN failed--compilation aborted at -e line 1.

When I comment out the line below in CairoGObject.xs I still get the same 
result.

283 // gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE_INT, 
"Cairo::RectangleInt", _int_wrapper_class);


On Sat, May 26, 2018 at 08:10:33PM +0200, Torsten Schoenfeld wrote:
> On 23.05.2018 11:03, gtk-perl-l...@talkvideo.net wrote:
> >A single-line Perl command like:
> >
> >perl -e "use Gtk3;"
> >
> >Results in the following error:
> >
> >cannot make GdkRectangle synonymous to the unregistered type 
> >CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.
> 
> Haven't seen that one before.  The only possible reasons I can think
> of are: a) Cairo::GObject is linked against a different
> cairo-gobject library than the one Gtk3/Glib::Object::Introspection
> see at runtime, or b) there's a race condition between the BOOT
> section in Cairo::GObject and the import sub in Gtk3.
> 
> With the attached patches, what's the output of "perl -e'use Gtk3'"
> on your system?
> 
> On mine, it is:
> 
> # perl -e'use Gtk3'
> Cairo::GObject: registering 94192984588768 (CairoRectangleInt)
> Glib: trying to look up 94192984588768 (CairoRectangleInt)

> diff --git a/CairoGObject.xs b/CairoGObject.xs
> index ab1c70b..23428a3 100644
> --- a/CairoGObject.xs
> +++ b/CairoGObject.xs
> @@ -283,6 +283,7 @@ BOOT:
> _wrapper_class);
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE, "Cairo::Rectangle",
> _wrapper_class);
> + warn ("Cairo::GObject: registering %ld (%s)\n", 
> CAIRO_GOBJECT_TYPE_RECTANGLE_INT, g_type_name 
> (CAIRO_GOBJECT_TYPE_RECTANGLE_INT));
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE_INT, 
> "Cairo::RectangleInt",
> _int_wrapper_class);
>   gperl_register_boxed (CAIRO_GOBJECT_TYPE_REGION, "Cairo::Region",

> diff --git a/GBoxed.xs b/GBoxed.xs
> index 5c726aa..1b623df 100644
> --- a/GBoxed.xs
> +++ b/GBoxed.xs
> @@ -287,6 +287,7 @@ gperl_register_boxed_synonym (GType registered_gtype,
>  
>   G_LOCK (info_by_gtype);
>  
> + warn ("Glib: trying to look up %ld (%s)\n", registered_gtype, 
> g_type_name (registered_gtype));
>   registered_boxed_info = (BoxedInfo *)
>   g_hash_table_lookup (info_by_gtype, (gpointer) 
> registered_gtype);
>  

> ___
> gtk-perl-list mailing list
> gtk-perl-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtk-perl-list

___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


Re: cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-05-26 Thread Torsten Schoenfeld

On 23.05.2018 11:03, gtk-perl-l...@talkvideo.net wrote:

A single-line Perl command like:

perl -e "use Gtk3;"

Results in the following error:

cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt 
at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.


Haven't seen that one before.  The only possible reasons I can think of 
are: a) Cairo::GObject is linked against a different cairo-gobject 
library than the one Gtk3/Glib::Object::Introspection see at runtime, or 
b) there's a race condition between the BOOT section in Cairo::GObject 
and the import sub in Gtk3.


With the attached patches, what's the output of "perl -e'use Gtk3'" on 
your system?


On mine, it is:

# perl -e'use Gtk3'
Cairo::GObject: registering 94192984588768 (CairoRectangleInt)
Glib: trying to look up 94192984588768 (CairoRectangleInt)
diff --git a/CairoGObject.xs b/CairoGObject.xs
index ab1c70b..23428a3 100644
--- a/CairoGObject.xs
+++ b/CairoGObject.xs
@@ -283,6 +283,7 @@ BOOT:
 	  _wrapper_class);
 	gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE, "Cairo::Rectangle",
 	  _wrapper_class);
+	warn ("Cairo::GObject: registering %ld (%s)\n", CAIRO_GOBJECT_TYPE_RECTANGLE_INT, g_type_name (CAIRO_GOBJECT_TYPE_RECTANGLE_INT));
 	gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE_INT, "Cairo::RectangleInt",
 	  _int_wrapper_class);
 	gperl_register_boxed (CAIRO_GOBJECT_TYPE_REGION, "Cairo::Region",
diff --git a/GBoxed.xs b/GBoxed.xs
index 5c726aa..1b623df 100644
--- a/GBoxed.xs
+++ b/GBoxed.xs
@@ -287,6 +287,7 @@ gperl_register_boxed_synonym (GType registered_gtype,
 
 	G_LOCK (info_by_gtype);
 
+	warn ("Glib: trying to look up %ld (%s)\n", registered_gtype, g_type_name (registered_gtype));
 	registered_boxed_info = (BoxedInfo *)
 		g_hash_table_lookup (info_by_gtype, (gpointer) registered_gtype);
 
___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list


cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.

2018-05-23 Thread gtk-perl-list
A single-line Perl command like:

perl -e "use Gtk3;"

Results in the following error:

cannot make GdkRectangle synonymous to the unregistered type CairoRectangleInt 
at C:/msys64/mingw64/lib/perl5/site_perl/Gtk3.pm line 479.


Below is the relevant info:

perl -V
Summary of my perl5 (revision 5 version 22 subversion 0) configuration:

  Platform:
osname=MSWin32, osvers=10.0, archname=MSWin32-x64-multi-thread

On MSYS2 /MinGW64 20161025 updated via pacman -Syu

Other Modules:
Glib 1.327
Glib::Object::Introspection 0.045
Cairo 1.106
Cairo::GObject 1.004
Pango 1.227
Gtk2 1.24992


Commenting out these lines in Gtk3.pm:
 479   Glib::Object::Introspection->_register_boxed_synonym (
 480   "cairo", "RectangleInt", "gdk_rectangle_get_type");

"fixes" the problem.

In the BOOT: section of CairoGObject.xs in Cairo::GObject, this exists:
gperl_register_boxed (CAIRO_GOBJECT_TYPE_RECTANGLE_INT, "Cairo::RectangleInt", 
_int_wrapper_class);

So, I am not sure what Gtk3 is complaining about, but BEGIN fails, and that's 
the end of it.

For testing I use the scripts here: 
https://github.com/dave-theunsub/gtk3-perl-demos

When I comment out the lines as above, most of thsese scripts appear to work.

Thanks

___
gtk-perl-list mailing list
gtk-perl-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-perl-list