From 22c1e3f530d941e2eab18b019e6f932e22e55f75 Mon Sep 17 00:00:00 2001 From: mdw Date: Wed, 28 Jul 1999 09:31:49 +0000 Subject: [PATCH] Small amounts of tidying. --- configure.in | 76 +++++++++--------------------------------------------------- 1 file changed, 11 insertions(+), 65 deletions(-) diff --git a/configure.in b/configure.in index a4e7d79..955b146 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl -*-fundamental-*- dnl -dnl $Id: configure.in,v 1.5 1999/07/16 12:46:04 mdw Exp $ +dnl $Id: configure.in,v 1.6 1999/07/28 09:31:49 mdw Exp $ dnl dnl Configuration for sw-tools dnl @@ -28,6 +28,9 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl ----- Revision history -------------------------------------------------- dnl dnl $Log: configure.in,v $ +dnl Revision 1.6 1999/07/28 09:31:49 mdw +dnl Small amounts of tidying. +dnl dnl Revision 1.5 1999/07/16 12:46:04 mdw dnl First proper release version. dnl @@ -68,10 +71,6 @@ dnl --- Find a Perl --- mdw_PROG_PERL(5.003) mdw_CHECK_PERL(5.003) -dnl --- Check for --- - -AC_CHECK_HEADERS(unistd.h) - dnl --- Find an appropriate remote shell program --- AC_ARG_WITH(rsh, @@ -80,70 +79,17 @@ AC_ARG_WITH(rsh, AC_PATH_PROGS(RSH, $RSH remsh rsh ssh, rsh) AC_DEFINE_UNQUOTED(RSH, "$RSH") -dnl --- Find out whether I have `strsignal' or `sys_siglist' --- - -AC_CHECK_FUNCS(strsignal _sys_siglist, break) - -dnl --- Decide whether to declare `environ' --- - -AC_CACHE_CHECK([for declaration of \`environ'], sw_cv_environ, -[AC_EGREP_CPP(environ, -[#include -#if HAVE_UNISTD_H -#include -#endif -#if STDC_HEADERS -#include -#include -#endif], [sw_cv_environ=yes], [sw_cv_environ=no])]) -if test $sw_cv_environ = yes; then - AC_DEFINE(DECL_ENVIRON) -fi - -dnl --- Find a curses library --- -dnl -dnl Try to find one which knows how to resize a terminal. - -mdw_CHECK_MANYLIBS(newwin, ncurses curses, AC_DEFINE(HAVE_CURSES)) - -if test $mdw_cv_lib_newwin != no; then -AC_CHECK_HEADERS([ncurses.h ncurses/ncurses.h curses.h], [break]) - -if test "$ac_cv_header_ncurses_h" = "no" && - test "$ac_cv_header_ncurses_ncurses_h" = "no" && - test "$ac_cv_header_curses_h" = "no"; then - AC_MSG_WARN([couldn't find a \`curses' header. Assuming \`curses.h'.]) - AC_DEFINE(HAVE_CURSES_H) -fi - -AC_CHECK_FUNCS(wresize) -fi - -dnl --- Other handy libraries --- - -mdw_CHECK_MANYLIBS(socketpair, socket) - -dnl --- Various standard types --- +dnl --- Various simple tests --- +AC_CHECK_HEADERS(unistd.h) +mdw_DECL_ENVIRON AC_TYPE_PID_T AC_TYPE_SIZE_T AC_TYPE_UID_T - -AC_CACHE_CHECK(for ssize_t, sw_cv_ssize_t, -[AC_EGREP_CPP(ssize_t, -[#include -#if HAVE_UNISTD_H -#include -#endif -#if STDC_HEADERS -#include -#include -#endif], -[sw_cv_ssize_t=yes], [sw_cv_ssize_t=no])]) - -if test $sw_cv_ssize_t = no; then - AC_DEFINE(ssize_t, int) -fi +mdw_TYPE_SSIZE_T +AC_CHECK_FUNCS(strsignal _sys_siglist, break) +mdw_CURSES +mdw_CHECK_MANYLIBS(socketpair, socket) dnl --- Write in some useful paths --- -- 2.11.0