[Glade-users] glade 2.0-make all recursive error(desperately
ask for help)
Damon Chaplin
damon@karuna.uklinux.net
Tue, 02 Nov 2004 12:23:31 +0000
On Tue, 2004-11-02 at 05:54, zeng qiang wrote:
> HI, all,
> I wonder if anyone could encounter this problem before.
> I am using glade.2.0 on redhatlinux 9.0. previously the glade workds very
> well.
> seems after i have modified some of its linking files, i get the error
> below.
>
> below is my running result:
>
> [root@localhost wheelchair]# make
> make all-recursive
> make[1]: Entering directory `/root/Projects/wheelchair'
> Making all in src
> make[2]: Entering directory `/root/Projects/wheelchair/src'
> make[2]: Nothing to be done for `all'.
> make[2]: Leaving directory `/root/Projects/wheelchair/src'
> Making all in po
> make[2]: Entering directory `/root/Projects/wheelchair/po'
> make[2]: Nothing to be done for `all'.
> make[2]: Leaving directory `/root/Projects/wheelchair/po'
> make[2]: Entering directory `/root/Projects/wheelchair'
> make[2]: Leaving directory `/root/Projects/wheelchair'
> make[1]: Leaving directory `/root/Projects/wheelchair'
That looks OK. It looks like the project is already built so doesn't
need to be compiled again.
> wheelchairLXRTthreadsInter.c:34:79: rtai_lxrt_user.h: No such file or
> directory
> wheelchairLXRTthreadsInter.c:35:81: rtai_lxrt.h: No such file or directory
> wheelchairLXRTthreadsInter.c:36:77: rtai_comedi_lxrt.h: No such file or
> directory
Where are these header files installed?
You need to change the project's configure.in file so that these header
files are found and added to the compiler flags. See the autoconf info
pages, e.g. AC_CHECK_HEADER().
Damon