diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2019-03-27 08:29:13 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2019-03-27 08:29:13 (GMT) |
commit | 7ff500ca4d515a5bbf1b6b4442d857c369c727fd (patch) | |
tree | 035310a21a657b921c85d4c53af1637e36a7cb78 /unix | |
parent | 4701c749af472143bba603d903ea764623614f94 (diff) | |
download | tcl-7ff500ca4d515a5bbf1b6b4442d857c369c727fd.zip tcl-7ff500ca4d515a5bbf1b6b4442d857c369c727fd.tar.gz tcl-7ff500ca4d515a5bbf1b6b4442d857c369c727fd.tar.bz2 |
Add autoconf support
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 4 | ||||
-rw-r--r-- | unix/configure.ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/unix/configure b/unix/configure index ea26c4f..2de5b54 100755 --- a/unix/configure +++ b/unix/configure @@ -9455,10 +9455,10 @@ $as_echo "$langinfo_ok" >&6; } #-------------------------------------------------------------------- -# Check for support of chflags and mkstemps functions +# Check for support of cfmakeraw, chflags and mkstemps functions #-------------------------------------------------------------------- -for ac_func in chflags mkstemps +for ac_func in cfmakeraw chflags mkstemps do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" diff --git a/unix/configure.ac b/unix/configure.ac index f34091f..74dbe08 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -553,10 +553,10 @@ fi SC_ENABLE_LANGINFO #-------------------------------------------------------------------- -# Check for support of chflags and mkstemps functions +# Check for support of cfmakeraw, chflags and mkstemps functions #-------------------------------------------------------------------- -AC_CHECK_FUNCS(chflags mkstemps) +AC_CHECK_FUNCS(cfmakeraw chflags mkstemps) #-------------------------------------------------------------------- # Check for support of isnan() function or macro |