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