From ce38abed709cd8c72628ecf8ffaa4bbeda498d82 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 26 Apr 2013 13:26:10 -0700 Subject: [PATCH] Include for NULL in the cpuid autoconf test. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 9a2128f9..ee3924b7 100644 --- a/configure.ac +++ b/configure.ac @@ -203,6 +203,7 @@ AC_SUBST(HAVE_TI_MODE_V) AC_MSG_CHECKING(for cpuid instruction) HAVE_CPUID_V=0 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ +#include ]], [[ unsigned int level = 0; unsigned int *eax = NULL, *ebx = NULL, *ecx = NULL, *edx = NULL;