* configure.in: If frexp is not available, check in -lm.
* configure: Rebuild.
This commit is contained in:
parent
2a275620b1
commit
f353eb8a51
3 changed files with 298 additions and 217 deletions
|
@ -1,5 +1,8 @@
|
|||
1999-06-12 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* configure.in: If frexp is not available, check in -lm.
|
||||
* configure: Rebuild.
|
||||
|
||||
* readelf.c (get_elf_class): Use correct printf format for type.
|
||||
(get_data_encoding): Likewise.
|
||||
(get_osabi_name): Likewise.
|
||||
|
|
509
binutils/configure
vendored
509
binutils/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -64,6 +64,9 @@ AC_HEADER_SYS_WAIT
|
|||
AC_FUNC_ALLOCA
|
||||
AC_CHECK_FUNCS(sbrk utimes)
|
||||
|
||||
# Some systems have frexp only in -lm, not in -lc.
|
||||
AC_SEARCH_LIBS(frexp, -lm)
|
||||
|
||||
AC_MSG_CHECKING(for time_t in time.h)
|
||||
AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
|
||||
[AC_TRY_COMPILE([#include <time.h>], [time_t i;],
|
||||
|
|
Loading…
Reference in a new issue