-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
89 lines (70 loc) · 2.21 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
dnl Process this file with autoconf to produce a configure script.
AC_INIT([rtcom-eventlogger], [1.4])
LT_CURRENT=2
LT_REVISION=0
LT_AGE=1
AC_CONFIG_MACRO_DIR([tools])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)
SQLITE_REQUIRED=3.3
AC_SUBST(SQLITE_REQUIRED)
CFLAGS="$CFLAGS -Wall -Werror -Wno-error=deprecated-declarations -DDMALLOC"
PKG_CHECK_MODULES(
RTCOM_EVENTLOGGER,
glib-2.0
gobject-2.0
gmodule-2.0
sqlite3 >= $SQLITE_REQUIRED
dbus-1)
AC_SUBST(RTCOM_EVENTLOGGER_CFLAGS)
AC_SUBST(RTCOM_EVENTLOGGER_LIBS)
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AM_PROG_CC_C_O
AC_HEADER_STDC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
PKG_CHECK_MODULES([CHECK], [check >= 0.9.4])
AC_ARG_ENABLE(debug, [ --enable-debug compile with DEBUG],,enable_debug=no)
if test "x$enable_debug" = "xyes"; then
DEBUG_FLAGS="-DDEBUG"
fi
AC_ARG_ENABLE(cast-checks, [ --disable-cast-checks compile with GLIB cast checks disabled],[cchecks=${enableval}],cchecks=yes)
if test "x$cchecks" = "xno"; then
DEBUG_FLAGS="$DEBUG_FLAGS -DG_DISABLE_CAST_CHECKS"
fi
AC_ARG_ENABLE(asserts, [ --disable-asserts compile with GLIB assertions disabled],[asserts=${enableval}],asserts=yes)
if test "x$asserts" = "xno"; then
DEBUG_FLAGS="$DEBUG_FLAGS -DG_DISABLE_ASSERTS"
fi
AC_ARG_ENABLE(checks, [ --disable-checks compile with GLIB checks disabled],[checks=${enableval}],checks=yes)
if test "x$checks" = "xno"; then
DEBUG_FLAGS="$DEBUG_FLAGS -DG_DISABLE_CHECKS"
fi
AC_ARG_ENABLE(docs, [ --enable-docs generate API docs (requires Doxygen, default:enabled)],[docs=${enableval}],docs=yes)
if test "x$docs" = "xyes"; then
AC_PATH_PROG(DOXYGEN, doxygen)
fi
AM_CONDITIONAL(GENERATE_DOCS, test "x$DOXYGEN" != "x" )
AC_ARG_ENABLE(debug,
[ --enable-debug enable printing of debug messages],
[ddebug=${enableval}],ddebug=no)
if test "x$ddebug" != "xyes"; then
CFLAGS="$CFLAGS -DG_DEBUG_DISABLE"
fi
COMPILER_COVERAGE
AC_SUBST([LT_CURRENT])
AC_SUBST([LT_REVISION])
AC_SUBST([LT_AGE])
AC_OUTPUT([
rtcom-eventlogger.pc
rtcom-eventlogger-uninstalled.pc
Makefile
tools/Makefile
src/Makefile
tests/Makefile
client/Makefile
data/Makefile
doc/Makefile
])