comparison configure.in @ 29031:18ae8656c122

Check for grandpt and getpt.
author Gerd Moellmann <gerd@gnu.org>
date Sat, 20 May 2000 15:50:35 +0000
parents 4b2207602eef
children 809933264ea6
comparison
equal deleted inserted replaced
29030:837bc0327945 29031:18ae8656c122
1854 AC_FUNC_MKTIME 1854 AC_FUNC_MKTIME
1855 if test "$ac_cv_func_working_mktime" = no; then 1855 if test "$ac_cv_func_working_mktime" = no; then
1856 AC_DEFINE(BROKEN_MKTIME) 1856 AC_DEFINE(BROKEN_MKTIME)
1857 fi 1857 fi
1858 1858
1859 # UNIX98 PTYs.
1860 AC_CHECK_FUNCS(grantpt)
1861
1862 # PTY-related GNU extensions.
1863 AC_CHECK_FUNCS(getpt)
1864
1859 # Check this now, so that we will NOT find the above functions in ncurses. 1865 # Check this now, so that we will NOT find the above functions in ncurses.
1860 # That is because we have not set up to link ncurses in lib-src. 1866 # That is because we have not set up to link ncurses in lib-src.
1861 # It's better to believe a function is not available 1867 # It's better to believe a function is not available
1862 # than to expect to find it in ncurses. 1868 # than to expect to find it in ncurses.
1863 AC_CHECK_LIB(ncurses, tparm) 1869 AC_CHECK_LIB(ncurses, tparm)