diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-03-01 20:29:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-03-01 20:29:00 (GMT) |
commit | c74cb1332ff479e175f7aa0679eae1f2ad261ad3 (patch) | |
tree | aafa31546ca1b23c9284799e7a3ad41e9262007f /unix/tcl.m4 | |
parent | e7bc10cd25d53b946e5f0393bdce9a2c75d41218 (diff) | |
download | tk-c74cb1332ff479e175f7aa0679eae1f2ad261ad3.zip tk-c74cb1332ff479e175f7aa0679eae1f2ad261ad3.tar.gz tk-c74cb1332ff479e175f7aa0679eae1f2ad261ad3.tar.bz2 |
Fix [b631acf716f478cc5b121e64d4a747563fb792a|b631acf716]: unix/tcl.m4 still contains reference to ieee library
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 8a802fb..ca93e26 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2470,12 +2470,9 @@ AC_DEFUN([SC_TCL_LINK_LIBS], [ #-------------------------------------------------------------------- # On a few very rare systems, all of the libm.a stuff is # already in libc.a. Set compiler flags accordingly. - # Also, Linux requires the "ieee" library for math to work - # right (and it must appear before "-lm"). #-------------------------------------------------------------------- AC_CHECK_FUNC(sin, MATH_LIBS="", MATH_LIBS="-lm") - AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"]) #-------------------------------------------------------------------- # Interactive UNIX requires -linet instead of -lsocket, plus it |