diff options
author | rmax <rmax> | 2002-07-29 16:54:40 (GMT) |
---|---|---|
committer | rmax <rmax> | 2002-07-29 16:54:40 (GMT) |
commit | 37ae57d4d60c1512e5f7751aa2281c93c8093132 (patch) | |
tree | 291a71c2236be89384aa78a70cec35de2ef639e2 /unix/tcl.m4 | |
parent | 51f3ea4437aa1798abf9e42d125c91110ac674a1 (diff) | |
download | tcl-37ae57d4d60c1512e5f7751aa2281c93c8093132.zip tcl-37ae57d4d60c1512e5f7751aa2281c93c8093132.tar.gz tcl-37ae57d4d60c1512e5f7751aa2281c93c8093132.tar.bz2 |
* unix/tcl.m4 (SC_SERIAL_PORT): Fixed detection for cases when
configure's stdin is not a tty.
* unix/tclUnixPort.h:
* generic/tclIOSock.c: Changed size_t to socklen_t in
socket-related function calls.
* unix/configure.in: Added test and fallback definition
for socklen_t.
* unix/configure: generated.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index e7ad171..2ad2fd5 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1635,7 +1635,7 @@ int main() { return 0; } return 1; -}], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=none, tcl_cv_api_serial=none) +}], tcl_cv_api_serial=sgtty, tcl_cv_api_serial=no, tcl_cv_api_serial=no) fi if test $tcl_cv_api_serial = no ; then AC_TRY_RUN([ |