Problem building kde libs

2009-01-04 Thread Bruce Dubbs
I ran into a problem building kdelibs tonight and I'm not sure how to address the problem. I got: /bin/sh ../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I../../dcop -I../../kdecore -I../../kio/kssl -I../../kjs -I../.. -I./.. -I../../kdecore/network

Re: Problem building kde libs

2009-01-04 Thread Alexander E. Patrakov
Bruce Dubbs wrote: Basically Petr's approach is to remove the following lines: static inline int inotify_init (void) { return syscall (__NR_inotify_init); } static inline int inotify_add_watch (int fd, const char *name, __u32 mask) { return syscall (__NR_inotify_add_watch, fd,

Re: Problem building kde libs

2009-01-04 Thread Bruce Dubbs
Alexander E. Patrakov wrote: Bruce Dubbs wrote: Basically Petr's approach is to remove the following lines: ... and replace #include linux/inotify.h with #include sys/inotify.h where the above calls are defined. The functions are found in /lib/libc-2.8.so. Yes, that's the correct