--- ./include/linux/mmzone.h~ Fri Jan 25 23:42:19 2002 +++ ./include/linux/mmzone.h Fri Jan 25 23:43:28 2002 @@ -8,6 +8,7 @@ #include #include #include +#include /* * Free memory management - zoned buddy allocator. --- ./net/socket.c~ Sun Mar 31 01:24:57 2002 +++ ./net/socket.c Sun Mar 31 01:25:06 2002 @@ -112,7 +112,7 @@ * in the operation structures but are done directly via the socketcall() multiplexor. */ -static struct file_operations socket_file_ops = { +struct file_operations socket_file_ops = { llseek: no_llseek, read: sock_read, write: sock_write, --- ./Makefile-notux Sat Apr 27 22:11:24 2002 +++ ./Makefile Sat Apr 27 22:14:06 2002 @@ -88,10 +88,15 @@ CPPFLAGS := -D__KERNEL__ -I$(HPATH) +ifeq "$(CONFIG_TUX_DEBUG)" "" CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \ -fno-strict-aliasing -fno-common ifndef CONFIG_FRAME_POINTER CFLAGS += -fomit-frame-pointer +endif +else +CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \ + -fno-omit-frame-pointer -fno-strict-aliasing -fno-common -g endif AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS)