diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-04-24 06:48:54 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-04-24 06:48:54 +0000 |
commit | 8baeec4637c8d4cdeec63c6f023766e22afa6a48 (patch) | |
tree | 3c4a3a3c7017dd96a236beb0a43db1ff8bcb8cd7 /configure.in | |
parent | e2e912189359b20efc0b178fd913728e38502b3e (diff) | |
download | zsh-8baeec4637c8d4cdeec63c6f023766e22afa6a48.tar.gz zsh-8baeec4637c8d4cdeec63c6f023766e22afa6a48.tar.xz zsh-8baeec4637c8d4cdeec63c6f023766e22afa6a48.zip |
Fix term* linkage _again_.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in index 8e9f58629..7837fae2b 100644 --- a/configure.in +++ b/configure.in @@ -516,32 +516,32 @@ esac AC_SEARCH_LIBS(tgetent, [$termcap_curses_order]) AC_MSG_CHECKING(if boolcodes is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = boolcodes;], AC_DEFINE(HAVE_BOOLCODES) boolcodes=yes, boolcodes=no) AC_MSG_RESULT($boolcodes) AC_MSG_CHECKING(if numcodes is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = numcodes;], AC_DEFINE(HAVE_NUMCODES) numcodes=yes, numcodes=no) AC_MSG_RESULT($numcodes) AC_MSG_CHECKING(if strcodes is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = strcodes;], AC_DEFINE(HAVE_STRCODES) strcodes=yes, strcodes=no) AC_MSG_RESULT($strcodes) AC_MSG_CHECKING(if boolnames is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = boolnames;], AC_DEFINE(HAVE_BOOLNAMES) boolnames=yes, boolnames=no) AC_MSG_RESULT($boolnames) AC_MSG_CHECKING(if numnames is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = numnames;], AC_DEFINE(HAVE_NUMNAMES) numnames=yes, numnames=no) AC_MSG_RESULT($numnames) AC_MSG_CHECKING(if strnames is available) -AC_TRY_COMPILE([#include <curses.h> +AC_TRY_LINK([#include <curses.h> #include <term.h>], [char **test = strnames;], AC_DEFINE(HAVE_STRNAMES) strnames=yes, strnames=no) AC_MSG_RESULT($strnames) @@ -853,7 +853,7 @@ AC_CHECK_FUNCS(strftime difftime gettimeofday \ putenv getenv \ brk sbrk \ pathconf sysconf \ - tgetent tigetflag tigetnum tigetstr) + tgetent tigetflag tigetnum tigetstr setupterm) AC_FUNC_STRCOLL dnl Check if tgetent accepts NULL (and will allocate its own termcap buffer) |