This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
configure.ac
95 lines (81 loc) · 2.75 KB
/
configure.ac
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Process this file with autoconf to produce a configure script.
AC_INIT([apinger], [0.6.1], [[email protected]])
AC_CONFIG_SRCDIR([src/apinger.c])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_YACC
AC_PROG_CC
AM_PROG_LEX
# Checks for libraries.
AC_ARG_WITH(efence,AC_HELP_STRING([--with-efence],[use efence (default is NO)]),[
if test "x$with_efence" != "xno" ; then
AC_CHECK_LIB([efence], [malloc])
fi
])
# Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([arpa/inet.h errno.h malloc.h \
stddef.h stdlib.h string.h sys/socket.h \
sys/time.h syslog.h unistd.h time.h \
assert.h sys/poll.h signal.h pwd.h grp.h stdarg.h\
limits.h sys/wait.h sched.h sys/ioctl.h sys/uio.h])
AC_HEADER_TIME
JK_LINUX_FILTER
JK_AP_INET
AC_ARG_ENABLE(ipv6,[AC_HELP_STRING([--disable-ipv6],
[Disable IPv6 support.])],
[],[enable_ipv6=yes])
if test "x$enable_ipv6" = "xyes" ; then
JK_AP_INET6
fi
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
# Checks for library functions.
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_TYPE_SIGNAL
AC_FUNC_STRFTIME
AC_CHECK_FUNCS([gettimeofday inet_ntoa memset socket \
strdup strerror strpbrk poll vsyslog time popen setvbuf access],
[],AC_MSG_ERROR(some needed function is missing))
AC_CHECK_FUNCS([sched_yield recvmsg])
AC_ARG_ENABLE(forked-receiver,[AC_HELP_STRING([--enable-forked-receiver],
[Create subprocess for receiving pings.])],
[],[enable_forked_receiver=no])
if test "x$enable_forked_receiver" = "xyes" ; then
AC_DEFINE(FORKED_RECEIVER,[],[Define to enable receiver subprocess])
dnl else
dnl AC_MSG_CHECKING([if PIPE_BUF is big enough])
dnl if test "x$enable_forked_receiver" != "xno" ; then
dnl AC_TRY_RUN([
dnl #ifdef HAVE_SYS_TYPES_H
dnl # include <sys/types.h>
dnl #endif
dnl #ifdef HAVE_LIMITS_H
dnl # include <limits.h>
dnl #endif
dnl
dnl int main(int argc,char **argv){
dnl
dnl if (PIPE_BUF<1024) return 1;
dnl return 0;
dnl }],
dnl [AC_DEFINE(FORKED_RECEIVER,[1],[Define to enable receiver subprocess])
dnl AC_MSG_RESULT([yes])],[AC_MSG_RESULT([no])
dnl AC_MSG_WARN([Receiver subprocess will not be used.])])
dnl fi
fi
AC_ARG_WITH(rrdtool,[AC_HELP_STRING([--with-rrdtool=path],[Location of rrdtool program])],
[ RRDTOOL="$withval" ],[ AC_PATH_PROG([RRDTOOL],[rrdtool],[rrdtool]) ])
AC_ARG_WITH(rrdcgi,[AC_HELP_STRING([--with-rrdcgi=path],[Location of rrdcgi program])],
[RRDCGI="$withval"],[AC_PATH_PROG([RRDCGI],[rrdcgi],[/usr/bin/rrdcgi])])
AC_DEFINE_UNQUOTED(RRDTOOL,"$RRDTOOL",[Set to the path of rrdtool program])
AC_DEFINE_UNQUOTED(RRDCGI,"$RRDCGI",[Set to the path of rrdcgi program])
AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile])
AC_OUTPUT