diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-02-26 00:47:52 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-02-26 00:47:52 +0000 |
commit | 2f79b725dd93d8d9f4cfade7bc63cdacbda21614 (patch) | |
tree | 803148189da0f641ec9a1eac2065435949e7041a | |
parent | ad51fb572c7ce92b17c6e59208c2d77938a60303 (diff) | |
download | gdb-2f79b725dd93d8d9f4cfade7bc63cdacbda21614.zip gdb-2f79b725dd93d8d9f4cfade7bc63cdacbda21614.tar.gz gdb-2f79b725dd93d8d9f4cfade7bc63cdacbda21614.tar.bz2 |
2000-02-25 H.J. Lu <hjl@gnu.org>
* configure.in (AC_SEARCH_LIBS): Pass lm, not -lm.
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/configure.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 6ebe4b4..1673e11 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-02-25 H.J. Lu <hjl@gnu.org> + + * configure.in (AC_SEARCH_LIBS): Pass lm, not -lm. + 2000-02-24 Nick Clifton <nickc@cygnus.com> * configure.in: Add arm-wince, mips-pe and sh-pe targets. diff --git a/binutils/configure.in b/binutils/configure.in index 603ccd3..86ac190 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -78,7 +78,7 @@ AC_FUNC_ALLOCA AC_CHECK_FUNCS(sbrk utimes) # Some systems have frexp only in -lm, not in -lc. -AC_SEARCH_LIBS(frexp, -lm) +AC_SEARCH_LIBS(frexp, lm) AC_MSG_CHECKING(for time_t in time.h) AC_CACHE_VAL(bu_cv_decl_time_t_time_h, |