-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
106 lines (91 loc) · 1.87 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
106
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([canutils], [trunk], [[email protected]])
AC_CONFIG_HEADERS([include/can_config.h])
AC_CONFIG_SRCDIR([src/canconfig.c])
AC_CONFIG_MACRO_DIR([config/m4])
AC_CONFIG_AUX_DIR([config/autoconf])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
CFLAGS="${CFLAGS} -Wall -g"
#
# Checks for programs.
#
AC_PROG_CC
AM_MISSING_PROG(PERL, perl, $missing_dir)
# libtool, old:
AC_LIBTOOL_WIN32_DLL
dnl AC_LIBTOOL_TAGS([])
AC_PROG_LIBTOOL
# libtool, new:
dnl LT_INIT([win32-dll])
AM_INIT_AUTOMAKE([foreign no-exeext dist-bzip2])
#
# Checks for libraries.
#
#
# Checks for header files.
#
AC_HEADER_STDC
AC_CHECK_HEADERS([ \
fcntl.h \
limits.h \
stdlib.h \
string.h \
unistd.h \
\
sys/ioctl.h \
sys/socket.h \
])
#
# Checks for typedefs, structures, and compiler characteristics.
#
AC_C_CONST
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT32_T
#
# Checks for library functions.
#
AC_PROG_GCC_TRADITIONAL
AC_TYPE_SIGNAL
AC_FUNC_STAT
AC_CHECK_FUNCS([ \
socket \
strchr \
strtoul \
])
PKG_CHECK_MODULES([libsocketcan],
[libsocketcan >= 0.0.8],
[],
[AC_MSG_ERROR([*** libsocketcan version above 0.0.8 not found on your system])])
AC_SUBST(libsocketcan_CFLAGS)
AC_SUBST(libsocketcan_LIBS)
#
# Debugging
#
AC_MSG_CHECKING([whether to enable debugging])
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug], [enable debugging @<:@default=no@:>@]),
[case "$enableval" in
y | yes) CONFIG_DEBUG=yes ;;
*) CONFIG_DEBUG=no ;;
esac],
[CONFIG_DEBUG=no])
AC_MSG_RESULT([${CONFIG_DEBUG}])
if test "${CONFIG_DEBUG}" = "yes"; then
CFLAGS="${CFLAGS} -Werror -g -O1"
AC_DEFINE(DEBUG, 1, [debugging])
else
CFLAGS="${CFLAGS} -O2"
fi
AC_CONFIG_FILES([ \
GNUmakefile \
config/canutils.pc \
config/GNUmakefile \
include/GNUmakefile \
src/GNUmakefile \
man/GNUmakefile
])
AC_OUTPUT