From db7f83187124e5d90048241b6390a3354b4058db Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Wed, 2 May 2001 16:48:32 +0000 Subject: More restrictive configure checks for curses headers. --- configure.in | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 715523ec6..053502142 100644 --- a/configure.in +++ b/configure.in @@ -425,7 +425,6 @@ AC_ARG_ENABLE(max-jobtable-size, [if test x$enableval = xyes; then - if test $ac_cv_header_linux_tasks_h = yes; then AC_EGREP_CPP(yes, [#include #ifdef MAX_TASKS_PER_USER @@ -433,7 +432,6 @@ AC_ARG_ENABLE(max-jobtable-size, #endif ], maxj=max) - fi if test x$maxj = xmax; then AC_DEFINE(MAXJOB, MAX_TASKS_PER_USER) @@ -478,7 +476,7 @@ AC_CHECK_HEADERS(sys/time.h sys/times.h sys/select.h termcap.h termio.h \ limits.h fcntl.h libc.h sys/utsname.h sys/resource.h \ locale.h errno.h stdlib.h unistd.h sys/capability.h \ utmp.h utmpx.h sys/types.h pwd.h grp.h poll.h sys/mman.h \ - linux/tasks.h netinet/in_systm.h curses.h term.h) + netinet/in_systm.h) if test $dynamic = yes; then AC_CHECK_HEADERS(dlfcn.h) AC_CHECK_HEADERS(dl.h) @@ -562,6 +560,11 @@ fi], esac])dnl AC_SEARCH_LIBS(tgetent, [$termcap_curses_order]) +case "$LIBS" in +*curses*) +AC_CHECK_HEADERS(curses.h term.h) +if test x$ac_cv_header_term_h = xyes; then + AC_MSG_CHECKING(if term.h needs curses.h) AC_TRY_COMPILE([#include ], [char **test = boolcodes;], boolcodes_with_only_term_h=yes, boolcodes_with_only_term_h=no) @@ -613,6 +616,9 @@ AC_TRY_LINK([#include AC_DEFINE(HAVE_STRNAMES) strnames=yes, strnames=no) AC_MSG_RESULT($strnames) +fi;; +esac + dnl Some systems (Solaris 2.x, Linux Redhat 5.x) require dnl libnsl (Network Services Library) to find yp_all -- cgit 1.4.1