From: Michael Tremer Date: Thu, 15 May 2008 17:44:25 +0000 (+0200) Subject: Fixed libnetfilter_queue. X-Git-Tag: v3.0-alpha1~1017 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df09a7ae637d2b4aba87f1c352f31209f049e17b;p=ipfire-3.x.git Fixed libnetfilter_queue. This package didn't compile correctly due to a missing of the linux/types.h header file. --- diff --git a/lfs/libnetfilter_queue b/lfs/libnetfilter_queue index a052a04e6..a97f4a361 100644 --- a/lfs/libnetfilter_queue +++ b/lfs/libnetfilter_queue @@ -37,7 +37,7 @@ TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP) # Top-level Rules ############################################################################### -objects = $(DL_FILE) +objects = $(DL_FILE) $(THISAPP)-sysheader.patch $(THISAPP)-linuxtypes.patch install: $(TARGET) @@ -53,6 +53,9 @@ $(patsubst %,$(DIR_DL)/%,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) + cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-sysheader.patch + cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-linuxtypes.patch + cd $(DIR_APP) && autoreconf -i --force cd $(DIR_APP) && ./configure --prefix=/usr cd $(DIR_APP) && make -j $(PARALLELISM) cd $(DIR_APP) && make install