Gtkmm-forge digest, Vol 1 #974 - 2 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Cc:
- Subject: Gtkmm-forge digest, Vol 1 #974 - 2 msgs
- Date: Mon, 19 Sep 2005 20:10:44 -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. Do not try to unsubscribe gtkmm-forge from gtkmm-list.
Today's Topics:
1. [Bug 307480] problem with MAKE check in configure (glibmm (bugzilla.gnome.org))
2. [Bug 316726] New: Cannot compile gtkmm application (gtkmm (bugzilla.gnome.org))
--__--__--
Message: 1
From: "glibmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Mon, 19 Sep 2005 11:31:04 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 307480] problem with MAKE check in configure
Do not reply to this email. You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D307480
glibmm | build | Ver: 2.6.x
------- Additional Comments From Marek Rouchal 2005-09-19 15:31 -------
The offending code does not come from autoconf/automake, but is part of t=
he=20
glibmm distro: glibmm-2.8.0/scripts/macros.m4:
dnl AL_PROG_GNU_MAKE(ACTION_NOT_FOUND)
dnl Check for GNU make (no sun make)
dnl
AC_DEFUN([AL_PROG_GNU_MAKE],[
dnl=20
dnl Check for GNU make (stolen from gtk+/configure.in)
AC_MSG_CHECKING(whether make is GNU Make)
if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
if test "$host_vendor" =3D "sun" ; then
$1
fi
fi
])
It would work nicely if the one line above was changed to:
if ${MAKE-make} --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; th=
en
^^^^^^^^^^^^
-Marek
------- You are receiving this mail because: -------
You are the assignee for the bug.
--__--__--
Message: 2
From: "gtkmm (bugzilla.gnome.org)" <bugzilla-daemon bugzilla gnome org>
To: gtkmm-forge lists sourceforge net
Date: Mon, 19 Sep 2005 16:03:53 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 316726] New: Cannot compile gtkmm application
Do not reply to this email. You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=3D316726
gtkmm | general | Ver: 2.4
Summary: Cannot compile gtkmm application
Product: gtkmm
Version: 2.4
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: merttugcu hotmail com
CC: all-bugs bugzilla gnome org
Distribution/Version: Fedora Core 3
I am trying to compile an application that uses drawingarea. Here is the
compilation error:
g++ -O3 -o main main.cpp src/XvDisplayer.cpp src/dvcapture.cpp src/frame.=
cpp
src/ieee1394io.cpp -I/usr/include/gtkmm-2.4 -I/usr/X11R6/include -L.
-L/usr/X11R6/libs -lpthread -lXv -ldv `pkg-config gtkmm-2.4 --cflags --li=
bs`
In file included from /usr/include/glibmm-2.4/glibmm/interface.h:24,
from /usr/include/glibmm-2.4/glibmm.h:38,
from /usr/include/gtkmm-2.4/gtkmm/drawingarea.h:6,
from src/../include/customdrawingarea.h:4,
from src/../include/XvDisplayer.h:17,
from src/XvDisplayer.cpp:1:
/usr/include/glibmm-2.4/glibmm/object.h:117: error: expected unqualified-=
id
before numeric constant
/usr/include/glibmm-2.4/glibmm/object.h:117: error: expected `)' before n=
umeric
constant
/usr/include/glibmm-2.4/glibmm/object.h:118: error: expected identifier b=
efore
numeric constant
/usr/include/glibmm-2.4/glibmm/object.h:118: error: expected `,' or `...'=
before
numeric constant
/usr/include/glibmm-2.4/glibmm/object.h:118: error: ISO C++ forbids decla=
ration
of `parameter' with no type
In file included from /usr/include/gdkmm-2.4/gdkmm/gc.h:31,
from /usr/include/gdkmm-2.4/gdkmm/drawable.h:33,
from /usr/include/gdkmm-2.4/gdkmm/window.h:27,
from /usr/include/gdkmm-2.4/gdkmm/event.h:28,
from /usr/include/gtkmm-2.4/gtkmm/widget.h:31,
from /usr/include/gtkmm-2.4/gtkmm/drawingarea.h:29,
from src/../include/customdrawingarea.h:4,
from src/../include/XvDisplayer.h:17,
from src/XvDisplayer.cpp:1:
/usr/include/gdkmm-2.4/gdkmm/types.h:186: error: expected identifier befo=
re "int"
/usr/include/gdkmm-2.4/gdkmm/types.h:187: error: expected unqualified-id =
before
'{' token
/usr/include/gdkmm-2.4/gdkmm/types.h:187: error: expected `,' or `;' befo=
re '{'
token
/usr/include/gdkmm-2.4/gdkmm/types.h:203: error: missing `>' to terminate=
the
template argument list
/usr/include/gdkmm-2.4/gdkmm/types.h:203: error: template argument 1 is i=
nvalid
/usr/include/gdkmm-2.4/gdkmm/types.h:203: error: expected unqualified-id =
before
'>' token
/usr/include/gdkmm-2.4/gdkmm/types.h:203: error: expected `;' before '>' =
token
make: *** [main] Error 1
All my header files have #ifndef and #define statements.
------- You are receiving this mail because: -------
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]