- simplify configure.in
- drop support for OpenSSL < 0.9.7 - add some missing definitions/includes
This commit is contained in:
parent
6c7172d694
commit
81f5713ab7
7 changed files with 44 additions and 55 deletions
33
configure.in
33
configure.in
|
@ -1,6 +1,6 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
dnl $Id: configure.in,v 1.13.2.61 2003/05/06 21:13:13 guus Exp $
|
||||
dnl $Id: configure.in,v 1.13.2.62 2003/07/06 17:15:24 guus Exp $
|
||||
|
||||
AC_PREREQ(2.53)
|
||||
AC_INIT(src/tincd.c)
|
||||
|
@ -101,32 +101,13 @@ AC_TYPE_SIZE_T
|
|||
AC_HEADER_TIME
|
||||
AC_STRUCT_TM
|
||||
|
||||
AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
|
||||
[
|
||||
AC_TRY_COMPILE(
|
||||
AC_CHECK_TYPES([socklen_t, struct addrinfo, struct sockaddr_in6], , ,
|
||||
[#include <sys/types.h>
|
||||
#include <sys/socket.h>],
|
||||
[socklen_t len = 42; return len;],
|
||||
ac_cv_type_socklen_t=yes,
|
||||
ac_cv_type_socklen_t=no)
|
||||
])
|
||||
if test $ac_cv_type_socklen_t = yes; then
|
||||
AC_DEFINE(HAVE_SOCKLEN_T, 1, [socklen_t available])
|
||||
fi
|
||||
|
||||
AC_CACHE_CHECK([for struct addrinfo], ac_cv_struct_addrinfo,
|
||||
[
|
||||
AC_TRY_COMPILE(
|
||||
[#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netdb.h>],
|
||||
[struct addrinfo ai; ai.ai_family = AF_INET; return ai.ai_family;],
|
||||
ac_cv_struct_addrinfo=yes,
|
||||
ac_cv_struct_addrinfo=no)
|
||||
])
|
||||
if test $ac_cv_struct_addrinfo = yes; then
|
||||
AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [struct addrinfo available])
|
||||
fi
|
||||
#include <sys/socket.h>
|
||||
#include <netdb.h>
|
||||
#include <netinet/in.h>
|
||||
]
|
||||
)
|
||||
|
||||
dnl Checks for library functions.
|
||||
AC_FUNC_MEMCMP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue