]> git.stg.codes - stg.git/blobdiff - projects/stargazer/build
Fixed ip_queue.h checking.
[stg.git] / projects / stargazer / build
index 60c8e1ff035e4c07008c3cec1c62146fbf9f084a..ff2269e125396821a7a0dbe247607e63c44ee253 100755 (executable)
@@ -335,6 +335,22 @@ else
     fi
 fi
 
+echo -n "Checking for linux/netfilter_ipv4/ip_queue.h... "
+echo "#include <linux/types.h>" > build_check.c
+echo "#include <linux/netfilter_ipv4/ip_queue.h>" >> build_check.c
+echo "int main() { return 0; }" >> build_check.c
+$CC $CFLAGS $LDFLAGS build_check.c -lexpat -o fake > /dev/null 2> /dev/null
+if [ $? != 0 ]
+then
+    CHECK_IP_QUEUE_H=no
+    echo "no"
+else
+    CHECK_IP_QUEUE_H=yes
+    DEFS="$DEFS HAS_IP_QUEUE_H"
+    echo "yes"
+fi
+rm -f fake
+
 rm -f build_check.c
 
 if [ "$CHECK_EXPAT" != "yes" ]