about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-05-02 16:48:32 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-05-02 16:48:32 +0000
commitdb7f83187124e5d90048241b6390a3354b4058db (patch)
tree9bcc7f3388eb62a097a7f82100aae46b7b3006eb /configure.in
parent64b046ef492e8cb452ed02af637b9979c26ffe83 (diff)
downloadzsh-db7f83187124e5d90048241b6390a3354b4058db.tar.gz
zsh-db7f83187124e5d90048241b6390a3354b4058db.tar.xz
zsh-db7f83187124e5d90048241b6390a3354b4058db.zip
More restrictive configure checks for curses headers.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in12
1 files changed, 9 insertions, 3 deletions
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 <linux/tasks.h>
     #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 <term.h>], [char **test = boolcodes;], boolcodes_with_only_term_h=yes,
 boolcodes_with_only_term_h=no)
@@ -613,6 +616,9 @@ AC_TRY_LINK([#include <curses.h>
 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