mirror of
https://github.com/mtatton/zssh.git
synced 2026-09-27 12:02:05 +02:00
76 lines
1.9 KiB
Plaintext
76 lines
1.9 KiB
Plaintext
dnl AC_REPLACE_GNU_GETOPT
|
|
AC_DEFUN(AC_REPLACE_GNU_GETOPT,
|
|
[AC_CHECK_FUNC(getopt_long, , [LIBOBJS="$LIBOBJS getopt1.o getopt.o"])
|
|
AC_SUBST(LIBOBJS)dnl
|
|
])
|
|
|
|
dnl
|
|
dnl taken from taylor uucp
|
|
AC_DEFUN(LRZSZ_ERRNO_DECL,[
|
|
AC_MSG_CHECKING(for errno declaration)
|
|
AC_CACHE_VAL(lrzsz_cv_decl_errno,
|
|
[AC_TRY_COMPILE([#include <errno.h>], [int i = errno; errno = 1;],
|
|
lrzsz_cv_decl_errno=yes, lrzsz_cv_decl_errno=no)])
|
|
AC_MSG_RESULT($lrzsz_cv_decl_errno)
|
|
if test $lrzsz_cv_decl_errno = yes; then
|
|
AC_DEFINE([HAVE_ERRNO_DECLARATION])
|
|
fi
|
|
])
|
|
|
|
dnl for ease of use
|
|
AC_DEFUN([LRZSZ_HEADERS_TERM_IO],[
|
|
AC_CHECK_HEADERS(termios.h sys/termios.h termio.h sys/termio.h sgtty.h)dnl
|
|
])
|
|
|
|
dnl LRZSZ_TYPE_SPEED_T
|
|
AC_DEFUN(LRZSZ_TYPE_SPEED_T,[
|
|
AC_REQUIRE([AC_HEADER_STDC])dnl
|
|
AC_REQUIRE([LRZSZ_HEADERS_TERM_IO])dnl
|
|
AC_MSG_CHECKING(for speed_t)
|
|
AC_CACHE_VAL(ac_cv_type_speed_t,
|
|
[AC_EGREP_CPP(speed_t, [#include <sys/types.h>
|
|
#if STDC_HEADERS
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#endif
|
|
#ifdef HAVE_TERMIOS_H
|
|
#include <termios.h>
|
|
#else
|
|
#if defined(HAVE_SYS_TERMIOS_H)
|
|
#include <sys/termios.h>
|
|
#else
|
|
#if defined(HAVE_TERMIO_H)
|
|
#include <termio.h>
|
|
#else
|
|
#if defined(HAVE_SYS_TERMIO_H)
|
|
#include <sys/termio.h>
|
|
#else
|
|
#if defined(HAVE_SGTTY_H)
|
|
#include <sgtty.h>
|
|
#else
|
|
#error neither termio.h nor sgtty.h found. Cannot continue. */
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif
|
|
], ac_cv_type_speed_t=yes, ac_cv_type_speed_t=no)])dnl
|
|
AC_MSG_RESULT($ac_cv_type_speed_t)
|
|
if test $ac_cv_type_speed_t = no; then
|
|
AC_DEFINE([speed_t],long)
|
|
fi
|
|
])
|
|
|
|
AC_DEFUN(lrzsz_HEADER_SYS_SELECT,
|
|
[AC_CACHE_CHECK([whether sys/time.h and sys/select.h may both be included],
|
|
lrzsz_cv_header_sys_select,
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <sys/select.h>],
|
|
[struct tm *tp;], lrzsz_cv_header_sys_select=yes, lrzsz_cv_header_sys_select=no)])
|
|
if test $lrzsz_cv_header_sys_select = no; then
|
|
AC_DEFINE(SYS_TIME_WITHOUT_SYS_SELECT)
|
|
fi
|
|
])
|
|
|