-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfigure.ac
105 lines (82 loc) · 3.02 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
96
97
98
99
100
101
102
103
104
105
# $Id$
AC_INIT([libllcp],[0.1.0])
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_CC
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
LT_INIT
AC_C_INLINE
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
# Debug support (default:no)
AC_ARG_ENABLE([debug],AS_HELP_STRING([--enable-debug],[Enable debug output]),[enable_debug=$enableval],[enable_debug="no"])
AM_CONDITIONAL(WITH_DEBUG, [test x"$enable_debug" = xyes])
if test x"$enable_debug" == x"yes"; then
AC_DEFINE([WITH_DEBUG], [1], [Define to 1 for extra debugging.])
CFLAGS="$CFLAGS -DDEBUG"
fi
AC_DEFINE([_XOPEN_SOURCE], [600], [Define to 500 if Single Unix conformance is wanted, 600 for sixth revision.])
AC_DEFINE([_BSD_SOURCE], [1], [Define on BSD to activate all library features])
AC_DEFINE([__BSD_VISIBLE], [1], [Define on BSD to activate all library features])
AC_DEFINE([_GNU_SOURCE], [1], [Define on GNU/Linux to activate all library features])
AC_FUNC_MALLOC
AC_TYPE_INT8_T
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT8_T
AC_CHECK_FUNCS([strcasecmp])
AC_CHECK_FUNCS([strdup])
AC_CHECK_HEADERS([fcntl.h])
AC_CHECK_HEADERS([sys/param.h])
AC_CHECK_HEADERS([pthread_np.h])
AC_CHECK_HEADERS([mqueue.h], [], AC_MSG_ERROR([mqueue.h is requiered.]))
AC_CHECK_DECLS([pthread_set_name_np(pthread_t, const char *)], [], [], [[#include <pthread_np.h>]])
CFLAGS="$CFLAGS -std=c99"
# Checks for graphviz
AC_PATH_PROG([DOT], [dot])
AC_SUBST(DOT)
AM_CONDITIONAL(HAS_GRAPHVIZ, [test x"$DOT" != x""])
# Checks for mscgen
AC_PATH_PROG([MSCGEN], [mscgen])
AC_SUBST(MSCGEN)
AM_CONDITIONAL(HAS_MSCGEN, [test x"$MSCGEN" != x""])
# Checks for pkg-config macros
AC_PATH_PROG(PKG_CONFIG, pkg-config)
if test -z "$PKG_CONFIG"; then
AC_MSG_ERROR(["pkg-config is requiered."])
fi
m4_ifdef([PKG_CHECK_MODULES], [], AC_MSG_ERROR(["pkg-config (with m4 macros) is requiered."]))
# Checks for pkg-config modules.
LIBNFC_REQUIRED_VERSION="1.7.0"
PKG_CHECK_MODULES([LIBNFC], [libnfc >= $LIBNFC_REQUIRED_VERSION], [], AC_MSG_ERROR([libnfc >= $LIBNFC_REQUIRED_VERSION is mandatory.]))
PKG_CONFIG_REQUIRES="libnfc"
AC_SUBST([PKG_CONFIG_REQUIRES])
# Checks for cutter unit tests framework
CUTTER_REQUIRED_VERSION=1.1.2
m4_ifdef([AC_CHECK_CUTTER], [AC_CHECK_CUTTER([>= $CUTTER_REQUIRED_VERSION])], [ac_cv_use_cutter="no"])
if test x$ac_cv_with_cutter = xyes -a x$ac_cv_use_cutter = xno; then
AC_MSG_ERROR([cutter >= $CUTTER_REQUIRED_VERSION is mandatory.])
fi
AM_CONDITIONAL([WITH_CUTTER], [test "$ac_cv_use_cutter" != "no"])
m4_ifdef([AC_CHECK_COVERAGE], [AC_CHECK_COVERAGE])
if test x$cutter_enable_coverage = xyes; then
CFLAGS="$CFLAGS -O0 -fprofile-arcs -ftest-coverage"
fi
AC_CONFIG_FILES([
Makefile
doc/Makefile
examples/Makefile
examples/npp-client/Makefile
examples/npp-server/Makefile
examples/snep-client/Makefile
examples/snep-server/Makefile
libllcp/Makefile
test/Makefile
tools/Makefile
tools/llcp-pdu-explain/Makefile
tools/llcp-test-client/Makefile
tools/llcp-test-server/Makefile
])
AC_OUTPUT