Re: Building on Solaris with Sun's C++ compiler

2005-07-28 Thread Brian Hechinger
On Wed, Jul 27, 2005 at 11:38:24PM -0400, Jason 'vanRijn' Kasper wrote: > > > > now to beat bbkeys 0.9.0 into submission. ./configure is looking for > > gnome-config which was replaced with pkg-config some time back, so of > > course i don't have it. ;) > > *blink* What?? that it is looking fo

Re: Building on Solaris with Sun's C++ compiler

2005-07-27 Thread Jason 'vanRijn' Kasper
On Wednesday 27 July 2005 18:05, Brian Hechinger wrote: > On Fri, Jul 15, 2005 at 07:54:22PM +0200, Carlos Vidal wrote: > > > i'm sorry, i forgot to include the new error message, that was the old > > > one. ;) > > > > > > i moved that all out of the class (to right after it) and how it gets > > >

Re: Building on Solaris with Sun's C++ compiler

2005-07-27 Thread Brian Hechinger
On Fri, Jul 15, 2005 at 07:54:22PM +0200, Carlos Vidal wrote: > > i'm sorry, i forgot to include the new error message, that was the old one. > > ;) > > > > i moved that all out of the class (to right after it) and how it gets me > > this error: > > > > "Window.hh", line 353: Error: state is not

Re: Building on Solaris with Sun's C++ compiler

2005-07-15 Thread Carlos Vidal
> i'm sorry, i forgot to include the new error message, that was the old one. ;) > > i moved that all out of the class (to right after it) and how it gets me > this error: > > "Window.hh", line 353: Error: state is not a member of const > BlackboxWindow::_client. > "Window.hh", line 358: Error:

Re: Building on Solaris with Sun's C++ compiler

2005-07-15 Thread Brian Hechinger
On Wed, Jul 13, 2005 at 09:15:44AM +0200, Carlos Vidal wrote: > On 7/12/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > > On Sun, Jul 10, 2005 at 09:36:29PM +0200, Carlos Vidal wrote: > > > On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > > > > i certainly am. now the whole thing in lib/

Re: Building on Solaris with Sun's C++ compiler

2005-07-13 Thread Carlos Vidal
On 7/12/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > On Sun, Jul 10, 2005 at 09:36:29PM +0200, Carlos Vidal wrote: > > On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > > > i certainly am. now the whole thing in lib/ builds, and we die in src/ > > > with: > > > > > > "Window.hh", line

Re: Building on Solaris with Sun's C++ compiler

2005-07-12 Thread Brian Hechinger
On Sun, Jul 10, 2005 at 09:36:29PM +0200, Carlos Vidal wrote: > On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > > i certainly am. now the whole thing in lib/ builds, and we die in src/ > > with: > > > > "Window.hh", line 164: Error: BlackboxWindow::ClientState is not accessible > > fro

Re: Building on Solaris with Sun's C++ compiler

2005-07-10 Thread Carlos Vidal
On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > i certainly am. now the whole thing in lib/ builds, and we die in src/ with: > > "Window.hh", line 164: Error: BlackboxWindow::ClientState is not accessible > from BlackboxWindow::_client. > 1 Error(s) detected. > > almost there!! ;) :-

Re: Building on Solaris with Sun's C++ compiler

2005-07-10 Thread Brian Hechinger
On Sun, Jul 10, 2005 at 10:09:14AM +0200, Carlos Vidal wrote: > > Try to take away the const from > std::advance, as now we are > using 'reverse_iterator' instead of 'const_reverse_iterator'. that does it! > You are getting closer ... ;-) i certainly am. now the whole thing in lib/ builds, and

Re: Building on Solaris with Sun's C++ compiler

2005-07-10 Thread Carlos Vidal
On 7/10/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > ok, that's done, now i'm at: > > "Menu.cc", line 1059: Error: Could not find a match for > std::advance std::Distance>(std::__reverse_bi_iterator::iterator, > std::bidirectional_iterator_tag, bt::MenuItem, bt::MenuItem&, bt::MenuItem*, >

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Brian Hechinger
On Sun, Jul 10, 2005 at 12:39:24AM +0200, Carlos Vidal wrote: > > Change the type of the left side then ;-). Try taking away the > constantness, like: > > ItemList::reverse_iterator anchor = _items.rbegin(); ok, that's done, now i'm at: "Menu.cc", line 1059: Error: Could not find a match for

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Carlos Vidal
On 7/9/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > On Sat, Jul 09, 2005 at 09:25:07PM +0200, Carlos Vidal wrote: > > The message looks cryptic, but basically it says that it cannot go > > from a non-const type to const. Try to cast the right hand side > > operand to force both sides of the '='

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Brian Hechinger
On Sat, Jul 09, 2005 at 09:25:07PM +0200, Carlos Vidal wrote: > The message looks cryptic, but basically it says that it cannot go > from a non-const type to const. Try to cast the right hand side > operand to force both sides of the '=' to the same type, like: > > ItemList::const_reverse_iterator

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Carlos Vidal
The message looks cryptic, but basically it says that it cannot go from a non-const type to const. Try to cast the right hand side operand to force both sides of the '=' to the same type, like: ItemList::const_reverse_iterator anchor = (ItemList::const_reverse_iterator)(_items.rbegin()); Check al

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Brian Hechinger
On Sat, Jul 09, 2005 at 09:38:32AM +0200, Carlos Vidal wrote: > > "Image.cc", line 222: Warning (Anachronism): Formal argument 1 of type > > extern "C" int(*)(_XDisplay*,XErrorEvent*) in call to > > XSetErrorHandler(extern "C" int(*)(_XDisplay*,XErrorEvent*)) is being > > passed int(*)(_XDisplay

Re: Building on Solaris with Sun's C++ compiler

2005-07-09 Thread Carlos Vidal
On 7/9/05, Brian Hechinger <[EMAIL PROTECTED]> wrote: > ok, so i would like to get blackbox working on this SunRay terminal that > is connected to a Sun Solaris box. i do not have gcc installed, nor do i > have any interest in installing it. however, Sun's C++ compiler has some > complaints about

Building on Solaris with Sun's C++ compiler

2005-07-08 Thread Brian Hechinger
ok, so i would like to get blackbox working on this SunRay terminal that is connected to a Sun Solaris box. i do not have gcc installed, nor do i have any interest in installing it. however, Sun's C++ compiler has some complaints about Image.cc it's been forever since i went through the trouble