# HG changeset patch # User Richard M. Stallman # Date 832701881 0 # Node ID f7c5a03c6393e00677c173fe2022ee249ce8fcf9 # Parent db889dd732a1ad546e2e6faf082896dc10740f08 (ncurses): Check this after checking fns like strerror. (HAVE_NCURSES): Look for library named ncurses. (setlocale): Check for it. (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp. diff -r db889dd732a1 -r f7c5a03c6393 configure.in --- a/configure.in Tue May 21 17:32:00 1996 +0000 +++ b/configure.in Tue May 21 18:04:41 1996 +0000 @@ -873,7 +873,11 @@ opsys=usg5-4 ;; *-sysv4.[2-9]* | *-sysvr4.[2-9]* ) if [ x$NON_GNU_CPP = x ]; then - NON_GNU_CPP=/usr/ccs/lib/cpp + if [ -f /usr/ccs/lib/cpp ]; then + NON_GNU_CPP=/usr/ccs/lib/cpp + else + NON_GNU_CPP=/lib/cpp + fi fi opsys=usg5-4-2 ;; *-sysv4* | *-sysvr4* ) opsys=usg5-4 ;; @@ -1235,12 +1239,6 @@ AC_CHECK_LIB(pthreads, cma_open) -dnl If we can find a tparm in libcurses.a, it means we have ncurses. -AC_CHECK_LIB(curses, tparm, HAVE_NCURSES=yes) -if test x"${HAVE_NCURSES}" = "xyes" ; then - AC_DEFINE(HAVE_NCURSES) -fi - AC_MSG_CHECKING(for XFree86) if test -d /usr/X386/include; then HAVE_XFREE386=yes @@ -1373,7 +1371,13 @@ AC_CHECK_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \ random lrand48 bcopy bcmp logb frexp fmod ftime res_init setsid \ -strerror fpathconf select mktime eaccess getpagesize tzset) +strerror fpathconf select mktime eaccess getpagesize tzset setlocale) + +# Check this now, so that we will NOT find the above functions in ncurses. +# That is because we have not set up to link ncurses in lib-src. +# It's better to believe a function is not available +# than to expect to find it in ncurses. +AC_CHECK_LIB(ncurses, tparm) AC_MSG_CHECKING(whether localtime caches TZ) AC_CACHE_VAL(emacs_cv_localtime_cache,