--- Uwe Kramer <[EMAIL PROTECTED]> wrote:

> > > /bin/sh ../../../libtool --silent --tag=CXX --mode=compile g++
> > > -DHAVE_CONFIG_H 
> > > -I. -I. -I../../.. -I./.. -I../../../khotkeys/shared -I/opt/qt/include 
> > > -I/usr/X11R6/include   -DQT_THREAD_SUPPORT  -D_REENTRANT 
> > > -D_FILE_OFFSET_BITS=64  -Wnon-virtual-dtor -Wno-long-long -Wundef -ansi
> > > -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion
> > > -Wchar-subscripts 
> > > -Wall -W -Wpointer-arith -Wno-non-virtual-dtor -DNDEBUG -DNO_DEBUG -O2 
> > > -Wformat-security -Wmissing-format-attribute -fno-exceptions 
> -fno-check-new
> > > 
> > > -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL 
> > > -DQT_NO_COMPAT -DQT_NO_TRANSLATION -D_GNU_SOURCE  -c -o 
> > > windowdef_list_widget_ui.lo windowdef_list_widget_ui.cpp
> > > windowdef_list_widget_ui.cpp:23:34: khotkeys::khlistview.h: No such
>
> >    cd /sources/kdebase-3.4.2
> >    find . -iname "khlistview*"
> 
> ./khotkeys/shared/khlistview.h
> ./khotkeys/shared/khlistview.lo

Well, that's strange, since khlistview.h is there as plain as day in the
place the -I switch appears to be looking. One thing that you might also
check are your permissions to files in the source tree. Maybe part of your
source tree is not browseable by the user you are compiling as. To eliminate
that possibility, you should execute as root:

chown -R kramer_u /sources/kdebase-3.4.2
chmod -R u+rw /sources/kdebase-3.4.2

But looking at the above error message ("No such file or directory") more
closely, maybe windowdef_list_widget_ui.cpp is looking for a file called
"khostkeys::khlistview.h" for some reason. Take a look at the .cpp file (line
23) and see what the #include directive is actually asking for. If all else
fails, try changing the #include directive to say this:

#include "/sources/kdebase-3.4.2/khotkeys/shared/khlistview.h"

Since you know the file is actually at that path on your system, that line
should not fail.

> but raw.h is exactly as  on my old system. I should mention that I used 
> linux-libc-headers-2.6.12 and kernel 2.6.13.1.
> 
> It's the only error message from configure.  
> Could this have something to do with the problem?

I would focus on the "missing" khlistview.h first; someone else mentioned
that it says the same for him in the configure.log, and it wasn't a problem.



                
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to