[gtkmm] Gtkmm-forge digest, Vol 1 #196 - 3 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #196 - 3 msgs
- Date: Sat, 17 Aug 2002 12:00:32 -0700
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.
Today's Topics:
1. [Bug 91033] New - gtkmm2 win32 compile errors (bugzilla-daemon widget gnome org)
2. [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade (bugzilla-daemon widget gnome org)
3. [Bug 91033] Changed - gtkmm2 win32 compile errors (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Sat, 17 Aug 2002 11:03:11 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 91033] New - gtkmm2 win32 compile errors
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=91033
Changed by naofumi yasufuku net
--- shadow/91033 Sat Aug 17 11:03:11 2002
+++ shadow/91033.tmp.1541 Sat Aug 17 11:03:11 2002
@@ -0,0 +1,48 @@
+Bug#: 91033
+Product: gtkmm
+Version: 2.0
+OS: Windows
+OS Details: WinXP with MinGW-1.1/Cygwin
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: build
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: naofumi yasufuku net
+TargetMilestone: ---
+URL:
+Summary: gtkmm2 win32 compile errors
+
+gtkmm2 compilation has some problems with MinGW/Cygwin environment.
+
+ 1. The compilation fails at libpangomm link stage, because libtool
+ cannot generate the import library of libglibmm DLL.
+ The cause is a limitation of impgen.exe utility of libtool 1.4.2.
+ impgen.exe cannot treat the anonymous namespace symbols correctly.
+ It can be solved by removing all anonymous namespaces.
+
+ 2. Some sources need to be fixed.
+
+ * gtk/gtkmm/menu_elems.cc compilation fails at line 28, because
+ strings.h doesn't exist.
+
+ * libgtkmm link fails, because gtk/gtkmm/wrap_init.cc includes
+ Plug and Socket codes. They are not supported under win32 platforms.
+
+ 3. 'make install' fails, because it doesn't install the import libraries.
+ For example, glib/glibmm/Makefile.am should include the following
+ targets.
+
+ if OS_WIN32
+ install-libtool-import-lib:
+ $(INSTALL) .libs/libgdkglextmm-1.3.dll.a $(DESTDIR)$(libdir)
+ uninstall-libtool-import-lib:
+ -rm $(DESTDIR)$(libdir)/libglibmm-1.3.dll.a
+ else
+ install-libtool-import-lib:
+ uninstall-libtool-import-lib:
+ endif
+
+ install-data-local: install-libtool-import-lib
+ uninstall-local: uninstall-libtool-import-lib
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, dss home se
Cc:
Date: Sat, 17 Aug 2002 13:57:33 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90891
Changed by murrayc usa net
--- shadow/90891 Fri Aug 16 07:43:52 2002
+++ shadow/90891.tmp.24794 Sat Aug 17 13:57:33 2002
@@ -1,13 +1,13 @@
Bug#: 90891
Product: gtkmm
Version: 2.0
OS: Linux
OS Details: Redhat Linux 7.3
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: dss home se
TargetMilestone: ---
@@ -68,6 +68,22 @@
--g-fatal-warnings argument. You might be interested to look at that
yourself if you can't wait.
------- Additional Comments From dss home se 2002-08-16 07:43 -------
I suppose I should mention that I get the error message and seg fault
when i close the window by clicking on the close button in the titlebar.
+
+------- Additional Comments From murrayc usa net 2002-08-17 13:57 -------
+Thanks a lot.
+
+2002-08-17 Murray Cumming <murrayc usa net>
+ * Gtk::Container_Class::destroy_callback():
+ Uncommented the code to remove the widgets before GTK+ does so
+ itself. It does seem necessary.
+ * Gtk::Object::_destroy_c_instance():
+ Prevented double destruction of the GtkObject, by connecting a
+ temporary GtkObject::"destroy" callback just to set
+ Gtk::Object::gobject_disposed_.
+ * Added tests/child_widget2 to exercise these bug fixes.
+ * This bug (#90891) was found by Daniel Sundberg.
+
+
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, naofumi yasufuku net
Cc:
Date: Sat, 17 Aug 2002 13:58:39 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 91033] Changed - gtkmm2 win32 compile errors
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=91033
Changed by murrayc usa net
--- shadow/91033 Sat Aug 17 11:03:11 2002
+++ shadow/91033.tmp.24918 Sat Aug 17 13:58:38 2002
@@ -43,6 +43,10 @@
install-libtool-import-lib:
uninstall-libtool-import-lib:
endif
install-data-local: install-libtool-import-lib
uninstall-local: uninstall-libtool-import-lib
+
+------- Additional Comments From murrayc usa net 2002-08-17 13:58 -------
+Have you looked at README.win32. Do you have any idea why it works for
+Cedric Gustin?
--__--__--
_______________________________________________
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]