Source: nfdump
Version: 1.6.18-2
Tags: patch upstream
User: debian-cr...@lists.debian.org
Usertags: ftcbfs

nfdump fails to cross build from source, because it uses AC_RUN_IFELSE
without a final argument. In all cases, using AC_COMPILE_IFELSE is
sufficient though. Please consider applying the attached patch.

Helmut
--- nfdump-1.6.18.orig/configure.ac
+++ nfdump-1.6.18/configure.ac
@@ -149,7 +149,7 @@
 	else
 		AC_MSG_ERROR(Required rrd.h header file not found!)
 	fi
-	AC_RUN_IFELSE(
+	AC_COMPILE_IFELSE(
 		[ AC_LANG_PROGRAM(
 			[[
 				#include <stdio.h>
@@ -204,7 +204,7 @@
 	else
 		AC_MSG_ERROR(Required rrd.h header file not found!)
 	fi
-	AC_RUN_IFELSE(
+	AC_COMPILE_IFELSE(
 		[ AC_LANG_PROGRAM(
 			[[
 				#include <stdio.h>
@@ -245,7 +245,7 @@
 	else
 		AC_MSG_ERROR(Required pcap.h header file not found!)
 	fi
-	AC_RUN_IFELSE(
+	AC_COMPILE_IFELSE(
 		[ AC_LANG_PROGRAM(
 			[[
 				#include <stdio.h>

Reply via email to