diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-16 09:20:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-16 09:20:59 (GMT) |
commit | 60397b30ebab72df7bb81e4adc4e619535688f9a (patch) | |
tree | f5b41d27f06658eadbfa10dd1f3d014fc8960b21 /unix/tcl.m4 | |
parent | 20d003110702ca2961f1cf0b9bda3f7eb7a28256 (diff) | |
download | tcl-60397b30ebab72df7bb81e4adc4e619535688f9a.zip tcl-60397b30ebab72df7bb81e4adc4e619535688f9a.tar.gz tcl-60397b30ebab72df7bb81e4adc4e619535688f9a.tar.bz2 |
Remove last traces of strtod() function, since it isn't used in Tcl any more.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index a206f26..70303ce 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1311,7 +1311,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ ]) # The combo of gcc + glibc has a bug related to inlining of - # functions like strtod(). The -fno-builtin flag should address + # functions like strtol()/strtoul(). The -fno-builtin flag should address # this problem but it does not work. The -fno-inline flag is kind # of overkill but it works. Disable inlining only when one of the # files in compat/*.c is being linked in. @@ -1913,8 +1913,8 @@ dnl # preprocessing tests use only CPPFLAGS. # # Supply substitutes for missing POSIX header files. Special # notes: -# - stdlib.h doesn't define strtol, strtoul, or -# strtod insome versions of SunOS +# - stdlib.h doesn't define strtol or strtoul in some +# versions of SunOS # - some versions of string.h don't declare procedures such # as strstr # @@ -1965,7 +1965,6 @@ closedir(d); AC_CHECK_HEADER(stdlib.h, tcl_ok=1, tcl_ok=0) AC_EGREP_HEADER(strtol, stdlib.h, , tcl_ok=0) AC_EGREP_HEADER(strtoul, stdlib.h, , tcl_ok=0) - AC_EGREP_HEADER(strtod, stdlib.h, , tcl_ok=0) if test $tcl_ok = 0; then AC_DEFINE(NO_STDLIB_H, 1, [Do we have <stdlib.h>?]) fi |