blob: e9e292f59eda6e56f4ba7343d3c0d4d37d117846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT(mcastseeder, 0.1, ludovic@pouzenc.fr)
# Args deprecated http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
AM_INIT_AUTOMAKE #(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE
AC_CANONICAL_HOST
case $host_os in
darwin*)
HOST_IS_DARWIN="yes"
;;
*mingw32*)
HOST_IS_WINDOWS="yes"
;;
*)
HOST_IS_DARWIN="no"
HOST_IS_WINDOWS="no"
;;
esac
if test "$HOST_IS_WINDOWS" = "yes"; then
WSOCKLIB="-lws2_32"
AC_SUBST(WSOCKLIB)
fi
AM_CONDITIONAL(MINGW, [ test "$HOST_IS_WINDOWS" = "yes" ])
AM_CONDITIONAL(DARWIN, [ test "$HOST_IS_DARWIN" = "yes" ])
# Checks for programs.
AC_ISC_POSIX
AC_HEADER_STDC
AC_PROG_CPP
AC_PROG_CC
# Gnulib
gl_EARLY
AM_PROG_CC_STDC
AM_PROG_CC_C_O
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([OS.h fcntl.h limits.h netdb.h stddef.h stdint.h stdlib.h string.h sys/socket.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([alarm memset select socket])
AC_CONFIG_FILES([Makefile
lib/Makefile
src/Makefile])
# Gnulib
gl_INIT
AC_OUTPUT
|