From: Waldemar Brodkorb Date: Sun, 4 Sep 2005 00:03:48 +0000 (+0000) Subject: link to specific header, just to be safe X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=916d5c6b146856dd67488e4cd239fccfc280f0c8;p=librecmc%2Flibrecmc.git link to specific header, just to be safe SVN-Revision: 1841 --- diff --git a/openwrt/package/mtd/Makefile b/openwrt/package/mtd/Makefile index bfbb301e4c..b2090a6e49 100644 --- a/openwrt/package/mtd/Makefile +++ b/openwrt/package/mtd/Makefile @@ -7,6 +7,10 @@ PKG_RELEASE := 1 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) +ifeq ($(LINUX_VERSION),2.4.30) +VER=-DLINUX_24 +endif + include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,MTD,$(PKG_NAME),$(PKG_RELEASE),$(ARCH))) @@ -16,7 +20,7 @@ $(PKG_BUILD_DIR)/.prepared: touch $@ $(PKG_BUILD_DIR)/.built: - $(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c + $(TARGET_CC) -I$(LINUX_DIR)/include $(VER) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/mtd mtd.c touch $@ $(IPKG_MTD): diff --git a/openwrt/package/mtd/mtd.c b/openwrt/package/mtd/mtd.c index 69ef064960..e559864945 100644 --- a/openwrt/package/mtd/mtd.c +++ b/openwrt/package/mtd/mtd.c @@ -40,7 +40,11 @@ #include #include +#ifdef LINUX_24 #include +#else +#include +#endif #define TRX_MAGIC 0x30524448 /* "HDR0" */ #define BUFSIZE (10 * 1024)