forked from session-replay-tools/tcpcopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
96 lines (73 loc) · 2.56 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(tcpcopy, 0.6.1, [email protected])
AC_CONFIG_SRCDIR([src/interception/main.c])
AC_CONFIG_HEADER([src/core/config.h])
AM_INIT_AUTOMAKE(tcpcopy,0.6.1)
# 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]),,debug=no)
if test "x$enable_debug" = "xyes";then
AC_DEFINE(TCPCOPY_DEBUG, 1, [Define if --enable-debug])
fi
#AC_ARG_ENABLE(epoll-module, AS_HELP_STRING([--enable-epoll-module],[use epoll module]),
# AC_DEFINE(TCPCOPY_USE_EPOLL, 1, [Define if --enable-epoll-module]), )
AC_ARG_ENABLE(sgt, AS_HELP_STRING([--enable-mysqlsgt],[mysql skip-grant-tables mode]),,sgt=no)
if test "x$enable_mysqlsgt" = "xyes";then
AC_DEFINE(TCPCOPY_MYSQL_SKIP, 1, [Define if --enable-mysqlsgt])
fi
AC_ARG_ENABLE(mysql, AS_HELP_STRING([--enable-mysql],[mysql mode]),,mysql=no)
if test "x$enable_mysql" = "xyes";then
AC_DEFINE(TCPCOPY_MYSQL_NO_SKIP, 1, [Define if --enable-mysql])
fi
AC_ARG_ENABLE(offline, AS_HELP_STRING([--enable-offline],[offline mode]),,offline=no)
if test "x$enable_offline" = "xyes";then
AC_DEFINE(TCPCOPY_OFFLINE, 1, [Define if --enable-offline])
fi
AC_ARG_ENABLE(thread, AS_HELP_STRING([--enable-thread],[thread mode]),,thread=no)
if test "x$enable_thread" = "xyes";then
AC_DEFINE(INTERCEPT_THREAD, 1, [Define if --enable-thread])
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 localtime_r])
if test "x$enable_offline" = "xyes";then
LIBS="-lpcap"
fi
if test "x$enable_thread" = "xyes";then
LIBS="$LIBS -lpthread "
fi
CFLAGS="-g -Wall -Wunused-function -pedantic -I../communication -I../core -I../event -I../interception -I../mysql -I../tcpcopy -I../util"
#AC_CONFIG_FILES([Makefile])
AC_OUTPUT([
Makefile
src/Makefile
src/core/Makefile
src/util/Makefile
src/mysql/Makefile
src/interception/Makefile
src/communication/Makefile
src/tcpcopy/Makefile
src/event/Makefile
])