diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-03-07 20:51:54 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-03-07 20:51:54 +0000 |
commit | af6a1e37554a1245d468ffe44d2c981998a4e0eb (patch) | |
tree | 7b1b3f9d361540e087855183c6d8d8dc97cf5971 /sysdeps/i386/configure.in | |
parent | e7dbb1bec3be35897acb18aa277807ed276384c5 (diff) | |
download | glibc-af6a1e37554a1245d468ffe44d2c981998a4e0eb.tar.gz glibc-af6a1e37554a1245d468ffe44d2c981998a4e0eb.tar.xz glibc-af6a1e37554a1245d468ffe44d2c981998a4e0eb.zip |
Fix sysdeps/i386/configure.in cpuid.h test for bootstrapping.
Diffstat (limited to 'sysdeps/i386/configure.in')
-rw-r--r-- | sysdeps/i386/configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/i386/configure.in b/sysdeps/i386/configure.in index 59a4cd6ea1..f769019acf 100644 --- a/sysdeps/i386/configure.in +++ b/sysdeps/i386/configure.in @@ -1,8 +1,9 @@ GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. # Local configure fragment for sysdeps/i386. -AC_HEADER_CHECK([cpuid.h], , - [AC_MSG_ERROR([gcc must provide the <cpuid.h> header])]) +AC_CHECK_HEADER([cpuid.h], , + [AC_MSG_ERROR([gcc must provide the <cpuid.h> header])], + [/* No default includes. */]) AC_CACHE_CHECK(if -g produces usable source locations for assembler-with-cpp, libc_cv_cpp_asm_debuginfo, [dnl |