summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-21 11:00:10 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-21 11:00:10 +0000
commita3cbb12940f3dca28fadcc54e884db5d524fc7bd (patch)
treeabc094615bfc0bad7a29d88aaa3620d73a5d18e6 /libc
parent9fd3751e5ec19fcf15a32720a1e475f64a5c08e2 (diff)
- my manpage sais that init_module, create_module, query_module, delete_module
were removed in linux-2.6
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/Makefile.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in
index 54b36a7a1..2e3ceca38 100644
--- a/libc/sysdeps/linux/common/Makefile.in
+++ b/libc/sysdeps/linux/common/Makefile.in
@@ -24,6 +24,11 @@ ifneq ($(UCLIBC_HAS_SSP),y)
CSRC := $(filter-out ssp.c,$(CSRC))
endif
+ifneq ($(UCLIBC_LINUX_MODULE_24),y)
+CSRC := $(filter-out create_module.c delete_module.c init_module.c \
+ query_module.c,$(CSRC))
+endif
+
# fails for some reason
ifneq ($(strip $(ARCH_OBJS)),)
CSRC := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC))