Juergen Spitzmueller wrote:
> I cannot build 1.3.4cvs --with-frontend=qt. 1.3.3 builds just fine, and
> so does the xforms frontend. Any ideas?
Menubar_pimpl.h is to be found in the qt2 dir.
Menubar.C is in the frontends dir.
The necessary path to be passed to the compiler is defined in
frontends/Makefile.am:
INCLUDES = $(FRONTEND_INCLUDES) -I$(srcdir)/.. $(BOOST_INCLUDES)
For some reason $(FRONTEND_INCLUDES) is not being set in the generated
Makefile when you run autogen.sh and configure.
Here, all appears to be fine:
$ grep FRONTEND_INCLUDES Makefile
FRONTEND_INCLUDES = -I${srcdir}/qt2 $(QT_INCLUDES)
INCLUDES = $(FRONTEND_INCLUDES) -I$(srcdir)/.. $(BOOST_INCLUDES)
--
Angus