Gtkmm-forge Digest, Vol 6, Issue 7
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: Gtkmm-forge Digest, Vol 6, Issue 7
- Date: Tue, 07 Nov 2006 12:17:19 -0800
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 320198] Port to libgda 2 (Glom (bugzilla.gnome.org))
2. [Bug 371882] New: Cannot compile 2.10.6 as is under Win32
(gtkmm (bugzilla.gnome.org))
3. [Bug 371882] Cannot compile 2.10.6 as is under Win32
(gtkmm (bugzilla.gnome.org))
4. [Bug 371882] Cannot compile 2.10.2 as is under Win32
(gtkmm (bugzilla.gnome.org))
5. [Bug 371882] Cannot compile 2.10.2 as is under Win32
(gtkmm (bugzilla.gnome.org))
----------------------------------------------------------------------
Message: 1
Date: Mon, 6 Nov 2006 23:50:10 +0000 (UTC)
From: "Glom (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 320198] Port to libgda 2
To: gtkmm-forge lists sourceforge net
Message-ID: <20061106235010 E67326C4151 box gnome org>
Content-Type: text/plain; charset=utf-8
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=320198
Glom | build | Ver: CVS HEAD
Murray Cumming changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |342947
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------------------------------
Message: 2
Date: Tue, 7 Nov 2006 07:37:02 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 371882] New: Cannot compile 2.10.6 as
is under Win32
To: gtkmm-forge lists sourceforge net
Message-ID: <bug-371882-5595 http bugzilla gnome org/>
Content-Type: text/plain; charset=utf-8
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=371882
gtkmm | build | Ver: 2.10.x
Summary: Cannot compile 2.10.6 as is under Win32
Product: gtkmm
Version: 2.10.x
Platform: Other
OS/Version: All
Status: UNCONFIRMED
Severity: blocker
Priority: Normal
Component: build
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: alexis m2osw com
QAContact: gtkmm-forge lists sourceforge net
GNOME version: Unspecified
GNOME milestone: Unspecified
Please describe the problem:
The configure.in script requires the gtk+-unix-print-2.0 which is not available
under Win32. I propose a patch, but I suppose that the people writing the
configure script will want to write what they need instead.
Notice that it looks like that gtk+-unix-print-2.0 package is actually not
really required by gtkmm itself. (it does not include it from anywhere!)
Steps to reproduce:
1. ./configure under Win32
Actual results:
The configure breaks
Expected results:
The configure script working 8-)
Does this happen every time?
Sure does. After my fix, it's works just fine.
Other information:
--- gtkmm-2.10.2.orig/configure.in 2006-11-04 22:50:45.000000000 -0800
+++ gtkmm-2.10.2/configure.in 2006-11-04 23:01:27.000000000 -0800
@@ -222,7 +222,11 @@
AC_SUBST(GDKMM_CFLAGS)
AC_SUBST(GDKMM_LIBS)
-PKG_CHECK_MODULES(GTKMM, glibmm-2.4 >= ${gtkmm_min_glibmm_version} cairomm-1.0
>= ${gtkmm_min_cairomm_version} gtk+-2.0 >= ${gtkmm_min_gtk_version}
gtk+-unix-print-2.0 >= ${gtkmm_min_gtk_version})
+if test x"$os_win32" = xyes; then
+ PKG_CHECK_MODULES(GTKMM, glibmm-2.4 >= ${gtkmm_min_glibmm_version}
cairomm-1.0 >= ${gtkmm_min_cairomm_version} gtk+-2.0 >=
${gtkmm_min_gtk_version})
+else
+ PKG_CHECK_MODULES(GTKMM, glibmm-2.4 >= ${gtkmm_min_glibmm_version}
cairomm-1.0 >= ${gtkmm_min_cairomm_version} gtk+-2.0 >=
${gtkmm_min_gtk_version} gtk+-unix-print-2.0 >= ${gtkmm_min_gtk_version})
+fi
AC_SUBST(GTKMM_CFLAGS)
AC_SUBST(GTKMM_LIBS)
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------------------------------
Message: 3
Date: Tue, 7 Nov 2006 07:39:59 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 371882] Cannot compile 2.10.6 as is
under Win32
To: gtkmm-forge lists sourceforge net
Message-ID: <20061107073959 69F866C4344 box gnome org>
Content-Type: text/plain; charset=utf-8
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=371882
gtkmm | build | Ver: 2.10.x
------- Comment #1 from Alexis Wilke 2006-11-07 07:38 UTC -------
Created an attachment (id=76133)
--> (http://bugzilla.gnome.org/attachment.cgi?id=76133&action=view)
Patch to avoid the gtk+ unix print requirement in configure
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------------------------------
Message: 4
Date: Tue, 7 Nov 2006 07:40:15 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 371882] Cannot compile 2.10.2 as is
under Win32
To: gtkmm-forge lists sourceforge net
Message-ID: <20061107074015 061FC6C4344 box gnome org>
Content-Type: text/plain; charset=utf-8
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=371882
gtkmm | build | Ver: 2.10.x
Alexis Wilke changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Cannot compile 2.10.6 as is |Cannot compile 2.10.2 as is
|under Win32 |under Win32
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------------------------------
Message: 5
Date: Tue, 7 Nov 2006 19:31:36 +0000 (UTC)
From: "gtkmm (bugzilla.gnome.org)"
<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 371882] Cannot compile 2.10.2 as is
under Win32
To: gtkmm-forge lists sourceforge net
Message-ID: <20061107193136 1EB336C41ED box gnome org>
Content-Type: text/plain; charset=utf-8
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=371882
gtkmm | build | Ver: 2.10.x
Andre Klapper changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |a9016009 gmx de
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Keywords| |build
Priority|Normal |Urgent
--
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------------------------------
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
------------------------------
_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
End of Gtkmm-forge Digest, Vol 6, Issue 7
*****************************************
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]