build: remove signbit check in configure.ac
authorBrian Paul <brianp@vmware.com>
Mon, 24 Sep 2012 19:23:10 +0000 (13:23 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 24 Sep 2012 20:48:23 +0000 (14:48 -0600)
We now have a fallback macro in imports.h
This reverts part of 0f3ba405.

Reviewed-by: Matt Turner <mattst88@gmail.com>
configure.ac

index b83078fe371477026d9350592f832bcf434f4a34..ef2455b0991a81b78c60780079fdd68e5f0419dc 100644 (file)
@@ -499,13 +499,6 @@ AC_SUBST([DLOPEN_LIBS])
 dnl See if posix_memalign is available
 AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
 
-dnl signbit() is a macro in glibc's math.h, so AC_CHECK_FUNC fails. To handle
-dnl this, use AC_CHECK_DECLS and fallback to AC_CHECK_FUNC in case it fails.
-AC_CHECK_DECLS([signbit],[],
-               AC_CHECK_FUNC([signbit],[],
-                             AC_MSG_ERROR([could not find signbit()])),
-               [#include <math.h>])
-
 dnl SELinux awareness.
 AC_ARG_ENABLE([selinux],
     [AS_HELP_STRING([--enable-selinux],