This patch is temporary because 3 patches no longer compile since 2.4.18-pre8 : - 00_nanosleep-5 (andrea arcangelli) - lcdp-0.2.2-linux-2.4.15.patch (chris crowther) - iptables-1.2.5 get_fast_time() has been removed from 2.4.18-pre8 ; do_gettimeofday() must be used instead. This quick fix allows a smoother transition than a compile-fix patch for each add-on. --- linux/include/linux/time.h-orig Sat Feb 16 20:44:05 2002 +++ linux/include/linux/time.h Sat Feb 16 20:44:55 2002 @@ -142,6 +142,7 @@ #ifdef __KERNEL__ extern void do_gettimeofday(struct timeval *tv); extern void do_settimeofday(struct timeval *tv); +#define get_fast_time(x) do_gettimeofday(x) #endif #define FD_SETSIZE __FD_SETSIZE