Gtkmm-forge digest, Vol 1 #1124 - 14 msgs



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-admin 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 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
   2. [Bug 341475] error compiling 2.8.6 (gtkmm (bugzilla.gnome.org))
   3. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
   4. [Bug 341526] New: gtkmm build fails in uimanager (gtkmm (bugzilla.gnome.org))
   5. [Bug 341526] gtkmm build fails in uimanager (gtkmm (bugzilla.gnome.org))
   6. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
   7. [Bug 341526] gtkmm build fails in uimanager (gtkmm (bugzilla.gnome.org))
   8. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
   9. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
  10. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
  11. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
  12. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
  13. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))
  14. [Bug 341500] 2.8.6 & 2.9.1 do not compile (gtkmm (bugzilla.gnome.org))

--__--__--

Message: 1
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Thu, 11 May 2006 23:26:30 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x


jonner changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
                 CC|                            |rcook wyrms net




------- Comment #1 from jonner  2006-05-12 03:26 UTC -------
*** Bug 341475 has been marked as a duplicate of this bug. ***


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 2
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Thu, 11 May 2006 23:26:29 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341475] error compiling 2.8.6

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341475
 gtkmm | build | Ver: 2.8.x


jonner changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
                 CC|                            |jonathon jongsma gmail c=
om
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE




------- Comment #1 from jonner  2006-05-12 03:26 UTC -------
apparently this also applies to 2.9.1 according to #341500.  Marking this=
 one
as duplicate.

*** This bug has been marked as a duplicate of 341500 ***


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 3
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 01:57:52 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x


Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
                 CC|                            |murrayc murrayc com




------- Comment #2 from Murray Cumming  2006-05-12 05:57 UTC -------
What does your code look like? For me it looks like this (in 2.9/2.10), a=
nd
does have the error parameter:

#ifdef GLIBMM_EXCEPTIONS_ENABLED
UIManager::ui_merge_id UIManager::add_ui_from_string(const Glib::ustring&
buffer)
#else
UIManager::ui_merge_id UIManager::add_ui_from_string(const Glib::ustring&
buffer, std::auto_ptr<Glib::Error>& error)
#endif //GLIBMM_EXCEPTIONS_ENABLED
{
  GError* gerror =3D 0;
  guint retvalue =3D gtk_ui_manager_add_ui_from_string(gobj(), buffer.c_s=
tr(),
buffer.size(), &(gerror));

#ifdef GLIBMM_EXCEPTIONS_ENABLED
  if(error) ::Glib::Error::throw_exception(gerror);
#else
  error =3D ::Glib::Error::throw_exception(gerror);
#endif //GLIBMM_EXCEPTIONS_ENABLED
  return retvalue;
}


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 4
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 03:22:30 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341526] New: gtkmm build fails in uimanager

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341526
 gtkmm | build | Ver: 2.8.x

           Summary: gtkmm build fails in uimanager
           Product: gtkmm
           Version: 2.8.x
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: build
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: waschk mandriva org
         QAContact: gtkmm-forge lists sourceforge net
     GNOME version: 2.13/2.14
   GNOME milestone: Unspecified


g++ -DHAVE_CONFIG_H -DG_LOG_DOMAIN=3D\"gtkmm\" -I../../gtk -I../../gtk
-I../../pango -I../../pango -I../../atk -I../../atk -I../../gdk -I../../g=
dk
-I../../gtk -I../../gtk -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/i=
nclude
-I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/gl=
ib-2.0
-I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/inc=
lude
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -pth=
read
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -O2 -g -pipe
-Wp,-D_FORTIFY_SOURCE=3D2 -fexceptions -fomit-frame-pointer -march=3Di586
-mtune=3Dpentiumpro -fasynchronous-unwind-tables -Wall -MT uimanager.lo -=
MD -MP
-MF .deps/uimanager.Tpo -c uimanager.cc  -fPIC -DPIC -o .libs/uimanager.o
uimanager.cc: In member function =E2=80=98guint
Gtk::UIManager::add_ui_from_string(const Glib::ustring&)=E2=80=99:
uimanager.cc:45: error: =E2=80=98error=E2=80=99 was not declared in this =
scope


This is on Mandriva Cooker i586 with the latest gtkmm 2.8.6, glibmm 2.10.=
2 gtk+
2.8.17, glib 2.10.2 and gcc 4.0.3.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 5
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 04:54:46 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341526] gtkmm build fails in uimanager

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341526
 gtkmm | build | Ver: 2.8.x





------- Comment #1 from G=C3=B6tz Waschk  2006-05-12 08:54 UTC -------
BTW gtkmm 2.9.1 gives the same error with gtk+ 2.9.0 and glib 2.11.0.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 6
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 05:15:30 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #3 from Murray Cumming  2006-05-12 09:15 UTC -------
Nevermind, I see the problem. I'll do new releases soon.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 7
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 07:34:48 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341526] gtkmm build fails in uimanager

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341526
 gtkmm | build | Ver: 2.8.x


jonner changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
                 CC|                            |jonathon jongsma gmail c=
om
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE




------- Comment #2 from jonner  2006-05-12 11:34 UTC -------
Thanks for the bug report. This particular bug has already been reported =
into
our bug tracking system, but please feel free to report any further bugs =
you
find.


*** This bug has been marked as a duplicate of 341500 ***


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 8
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 07:34:50 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x


jonner changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
                 CC|                            |waschk mandriva org




------- Comment #4 from jonner  2006-05-12 11:34 UTC -------
*** Bug 341526 has been marked as a duplicate of this bug. ***


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 9
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 08:39:19 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x


Murray Cumming changed:

           What    |Removed                     |Added
-------------------------------------------------------------------------=
---
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED




------- Comment #5 from Murray Cumming  2006-05-12 12:39 UTC -------
This is fixed in the new 2.8 and 2.9 releases, I hope. Sorry.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 10
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 09:46:00 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #6 from Joseph Sacco  2006-05-12 13:45 UTC -------
Murray,

I can confirm that both 2.8.7 and 2.9.2 now build and install, which is g=
ood
news.


Gentle suggestion:=20

Running 'make distcheck' as part of the release process is a really good =
idea.
Maybe it should be a GNOME policy for all packages archived on f.g.o.

-Joseph


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 11
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 10:36:02 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #7 from Murray Cumming  2006-05-12 14:36 UTC -------
In this case I had done distcheck, on glibmm and gtkmm in three different
branches. It builds fine with the options I was using.

It's done now and it didn't hurt you that much.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 12
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 11:03:00 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #9 from Murray Cumming  2006-05-12 15:02 UTC -------
Don't worry. I'm just tired.


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 13
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 10:51:07 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #8 from Joseph Sacco  2006-05-12 14:50 UTC -------
Murray,

My comments were not meant to be mean-spirited or hurtful. Open Source is=
 about
"we", the open source community. The cyclic process that "we" use to vali=
date
and improve the quality of an open source application worked as expected.=
 It
"didn't hurt" that much, and it is "done now".

I am puzzled that "make distcheck" failed to detect the compilation probl=
em
with uimanager.cc. Sounds like an overly permissive C++ compiler.

-Joseph


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


--__--__--

Message: 14
To: gtkmm-forge lists sourceforge net
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Date: Fri, 12 May 2006 11:13:08 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 341500] 2.8.6 & 2.9.1 do not compile

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D341500
 gtkmm | build | Ver: 2.9.x





------- Comment #10 from Joseph Sacco  2006-05-12 15:13 UTC -------
Get some rest. Tomorrow is another day...

Be well,

-Joseph


--=20
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=3Demail
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.



--__--__--

_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge


End of Gtkmm-forge Digest



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]