Gtkmm-forge Digest, Vol 31, Issue 10
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: Gtkmm-forge Digest, Vol 31, Issue 10
- Date: Wed, 17 Dec 2008 07:08:47 +0000
Send Gtkmm-forge mailing list submissions to
gtkmm-forge lists sourceforge net
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
gtkmm-forge-request lists sourceforge net
You can reach the person managing the list at
gtkmm-forge-owner lists sourceforge net
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."
gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla. A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.
Today's Topics:
1. [Bug 563664] Packaging incomplete for Schema/SchemaValidator
on win32 (gtkmm (bugzilla.gnome.org))
2. [Bug 562810] Extending the extra defs generation tool to
accept custom pointer determining function
(glibmm (bugzilla.gnome.org))
3. [Bug 562810] Extending the extra defs generation tool to
accept custom pointer determining function
(glibmm (bugzilla.gnome.org))
4. [Bug 562810] Extending the extra defs generation tool to
accept custom pointer determining function
(glibmm (bugzilla.gnome.org))
5. [Bug 564816] New: libgdamm 4.0 versioning
(gnomemm (bugzilla.gnome.org))
6. [Bug 564816] libgdamm 4.0 versioning
(gnomemm (bugzilla.gnome.org))
----------------------------------------------------------------------
Message: 1
Date: Tue, 16 Dec 2008 08:15:03 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 563664] Packaging incomplete for
Schema/SchemaValidator on win32
To: gtkmm-forge lists sourceforge net
Message-ID: <20081216081503 EC52D23F519 label gnome org>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=563664
gtkmm | build | Ver: 2.14.x
------- Comment #6 from Murray Cumming 2008-12-16 08:15 UTC -------
This bug is about the installer and it is closed as fixed.
If you have a memory leak please file a bug or add your comment to the relevant
existing bug.
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=563664.
------------------------------
Message: 2
Date: Tue, 16 Dec 2008 08:39:49 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs
generation tool to accept custom pointer determining function
To: gtkmm-forge lists sourceforge net
Message-ID: <20081216083949 4FBC423F518 label gnome org>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=562810
glibmm | general | Ver: unspecified
------- Comment #6 from Murray Cumming 2008-12-16 08:39 UTC -------
(In reply to comment #3)
> bool gst_type_is_a_pointer(GType gtype)
> {
> return (gtype_is_a_pointer(gtype) || g_type_is_a(gtype,
> GST_TYPE_MINI_OBJECT));
> }
>
> ...
>
> int main (int argc, char* argv[])
> {
> ...
> std::cout << get_defs(GST_TYPE_BUFFER, gst_type_is_a_pointer)
> << get_defs(GST_TYPE_CAPS, gst_type_is_a_pointer)
> ...
> }
Ah, so this is to detect GstMiniObjects, which don't use the normal GObject
GType system. Sounds good. Feel free to commit that if you need it.
> However, I just looked and it is not necessary for what I'm trying to do
Now I am a little confused. Do you need this or not?
> 2) Generate them as the plug-ins are generated in the build process and then
> use the generated defs when the generated plug-in sources are processed by
> gmmproc.
We generally generate .defs infrequently and by hand. That makes everything
much less fragile - for instance the API doesn't change silently depending on
what happenes to be on the PC of the person making the tarball. I'd like to
keep it that way.
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810.
------------------------------
Message: 3
Date: Tue, 16 Dec 2008 17:47:40 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs
generation tool to accept custom pointer determining function
To: gtkmm-forge lists sourceforge net
Message-ID: <20081216174741 0126423F519 label gnome org>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=562810
glibmm | general | Ver: unspecified
------- Comment #7 from Jos? Alburquerque 2008-12-16 17:47 UTC -------
(In reply to comment #6)
> Ah, so this is to detect GstMiniObjects, which don't use the normal GObject
> GType system. Sounds good. Feel free to commit that if you need it.
>
> > However, I just looked and it is not necessary for what I'm trying to do
>
> Now I am a little confused. Do you need this or not?
Sorry. I wasn't sure if it was needed when I first submitted the report.
After, I realized that I could do without it because I could just patch the
defs files after manual generation.
> > 2) Generate them as the plug-ins are generated in the build process and then
> > use the generated defs when the generated plug-in sources are processed by
> > gmmproc.
>
> We generally generate .defs infrequently and by hand. That makes everything
> much less fragile - for instance the API doesn't change silently depending on
> what happenes to be on the PC of the person making the tarball. I'd like to
> keep it that way.
For clarity, now I'm back to not needing it because the defs files can still be
patched if the defs are generated by hand, but since it makes things easier
(less patching necessary), with your permission, I think I'll apply it.
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810.
------------------------------
Message: 4
Date: Tue, 16 Dec 2008 18:08:22 +0000 (UTC)
From: "glibmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs
generation tool to accept custom pointer determining function
To: gtkmm-forge lists sourceforge net
Message-ID: <20081216180822 CAD8B23F518 label gnome org>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=562810
glibmm | general | Ver: unspecified
Jos? Alburquerque changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #123713|none |committed
Flag| |
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Comment #8 from Jos? Alburquerque 2008-12-16 18:08 UTC -------
Sorry once more for lack of clarity:
2008-12-16 Jos? Alburquerque <jaalburqu svn gnome org>
* tools/extra_defs_gen/generate_extra_defs.cc:
* tools/extra_defs_gen/generate_extra_defs.h: Modify extra defs
generation utility to accept custom defined function to determine if
GType is a pointer.
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810.
------------------------------
Message: 5
Date: Wed, 17 Dec 2008 07:08:03 +0000 (UTC)
From: "gnomemm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 564816] New: libgdamm 4.0 versioning
To: gtkmm-forge lists sourceforge net
Message-ID: <bug-564816-5595 http bugzilla gnome org/>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=564816
gnomemm | libgdamm | Ver: unspecified
Summary: libgdamm 4.0 versioning
Product: gnomemm
Version: unspecified
Platform: Other
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: Normal
Component: libgdamm
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: yselkowitz users sourceforge net
QAContact: gtkmm-forge lists sourceforge net
GNOME version: Unspecified
GNOME milestone: Unspecified
I'm attaching a patch to fix some of the installation directories for
libgdamm-3.99.
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=564816.
------------------------------
Message: 6
Date: Wed, 17 Dec 2008 07:08:40 +0000 (UTC)
From: "gnomemm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 564816] libgdamm 4.0 versioning
To: gtkmm-forge lists sourceforge net
Message-ID: <20081217070840 4995723F519 label gnome org>
Content-Type: text/plain; charset=utf-8
If you have any questions why you received this email, please see the text at
the end of this email. Replies to this email are NOT read, please see the text
at the end of this email. You can add comments to this bug at:
http://bugzilla.gnome.org/show_bug.cgi?id=564816
gnomemm | libgdamm | Ver: unspecified
------- Comment #1 from Cygwin Ports maintainer 2008-12-17 07:08 UTC -------
Created an attachment (id=124843)
--> (http://bugzilla.gnome.org/attachment.cgi?id=124843&action=view)
4.0 versioning patch
--
See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received
this email, why you can't respond via email, how to stop receiving
emails (or reduce the number you receive), and how to contact someone
if you are having problems with the system.
You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=564816.
------------------------------
------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you. Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
------------------------------
_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
End of Gtkmm-forge Digest, Vol 31, Issue 10
*******************************************
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]