]> git.stg.codes - stg.git/blobdiff - projects/stargazer/build
Fixed compilation with linux-3.5.1 and higher.
[stg.git] / projects / stargazer / build
index 60c8e1ff035e4c07008c3cec1c62146fbf9f084a..a3b64c196b06e7df50ccdbf5279aaf693c5bdfa0 100755 (executable)
@@ -335,6 +335,20 @@ else
     fi
 fi
 
+echo -n "Checking for linux/netfilter_ipv4/ip_queue.h... "
+echo "#include <linux/netfilter_ipv4/ip_queue.h> 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" ]