> c++ -c   -I../../lib/wx/include/motif-2.3
> -I../../include -INONE
> -I/usr/dt/include -D_FILE_OFFSET_BITS=64
> -D_LARGE_FILES -isystem
>  /usr/openwin/include  -I../../contrib/include 
> -D__WXMOTIF__  -O2 -MMD
> -pthreads -D_REENTRANT -Wall -I../../contrib/include
> -o p
> lucker_wizard_base.o plucker_wizard_base.cpp
> In file included from destinations_wizardpage.h:49,
>                  from setup_wizard.h:48,
>                  from plucker_wizard_base.cpp:63:
> hhictrl.h:155: syntax error before `*'
> In file included from plucker_wizard_base.cpp:67:
> plucker_controller.h:321: syntax error before `*'
> gmake: *** [plucker_wizard_base.o] Error 1

Hi Wesley,

I think that may have been my bad. I see that your
compiler's define line has __WXMOTIF__ on it. Are you
building a Motif port instead of X11 or GTK?

GTK wxWindows toolkit works the best, and is
recommended.

X11 wxWindows toolkit is still new and will have some
issues, as compared to the mature GTK. 

Motif wxWindows toolkit isn't used by as many people
anymore, now that GTK and X11 are available, so while
it has been around for a long time, it may have some
issues creeping in. You may wish to see its status
anyway though, since you are already most way there of
the compile.

To finish the compile, (sorry an error on my part):
crack open the file palm_installer.h, and change the
line 
#if defined(__WXGTK__) || defined(__WXX11__) 
to 
#if defined(__WXGTK__) || defined(__WXX11__) ||
defined(__WXMOTIF__)

You may wish to add them elsewhere (doing a search in
your editor of (__WXGTK__) should bring them up. I'll
do a review of the source today, and fix these
defines, so that OSX and MOTIF can compile out of the
box (currently they were left out so that they could
be filled in as required, but I think it would be
better to have a default compile out of the box, that
can then be tweaked later).

If there is anything at all I can help with, that
would be of assistance, please just drop a note and I
will get back to you straight away.

Best wishes,
Robert

__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com
_______________________________________________
plucker-list mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-list

Reply via email to