forked from wangbin579/udpcopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
72 lines (55 loc) · 1.79 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(udpcopy, 0.1.0, [email protected])
AC_CONFIG_HEADER([src/core/config.h])
AM_INIT_AUTOMAKE(udpcopy,0.1.0)
# Checks for programs.
AC_PROG_LN_S
AC_PROG_MAKE_SET
# Checks for libraries.
AC_PROG_LIBTOOL
AM_PROG_LIBTOOL
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug],[compile with debug support]),,enable_debug=no)
if test "x$enable_debug" = "xyes";then
AC_DEFINE(UDPCOPY_DEBUG, 1, [Define if --enable-debug])
fi
AC_ARG_ENABLE(select-module, AS_HELP_STRING([--enable-select-module],[use select module]),
AC_DEFINE(UDPCOPY_USE_SELECT, 1, [Define if --enable-select-module]), )
AC_ARG_ENABLE(offline, AS_HELP_STRING([--enable-offline],[offline mode]),,offline=no)
if test "x$enable_offline" = "xyes";then
AC_DEFINE(UDPCOPY_OFFLINE, 1, [Define if --enable-offline])
fi
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netinet/in.h stdint.h stdlib.h string.h sys/file.h sys/param.h sys/socket.h sys/time.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_C_VOLATILE
AC_CHECK_TYPES([ptrdiff_t])
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([atexit gettimeofday inet_ntoa memset select socket])
if test "x$enable_offline" = "xyes";then
LIBS="-lpcap"
fi
CFLAGS="-g -std=gnu99 -Wall -pedantic -I../core -I../event -I../log -I../udpcopy -I../util"
#AC_CONFIG_FILES([Makefile])
AC_OUTPUT([
Makefile
src/Makefile
src/core/Makefile
src/util/Makefile
src/log/Makefile
src/udpcopy/Makefile
src/event/Makefile
])