-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
configure.ac
260 lines (206 loc) · 9.06 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
#---------------------------------------------------------------------
# Copyright (c) 2012-2021 James O. D. Hunt <[email protected]>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
#---------------------------------------------------------------------
# Process this file with autoconf to produce a configure script.
m4_define([procenv_version], [0.60])
AC_INIT([procenv],[procenv_version],[[email protected]],[procenv],[https://github.com/jamesodhunt/procenv])
AC_COPYRIGHT([Copyright (C) 2012-2021 James Hunt <[email protected]> and Kees Cook <[email protected]>])
AC_CONFIG_SRCDIR([src/procenv.c])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([config])
AC_SUBST(PROCENV_VERSION, procenv_version)
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
# expose $target
AC_CANONICAL_TARGET
#---------------------------------------------------------------------
# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_CC_C_O
PKG_PROG_PKG_CONFIG
# Look for C unit test framework (http://check.sourceforge.net/).
PKG_CHECK_MODULES([CHECK], [check], [HAVE_CHECK=yes], [HAVE_CHECK=no])
#---------------------------------------------------------------------
# Checks for header files.
# this header is not available on older distributions (such as Ubuntu
# Lucid)
AC_CHECK_HEADERS([linux/securebits.h])
AC_CHECK_HEADERS(pthread.h,, [AC_MSG_ERROR([pthread.h required])])
#---------------------------------------------------------------------
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
# Checks for library functions.
AC_CHECK_FUNCS([clock_gettime getcwd localtime_r strcasecmp strchr strstr sched_getcpu ttyname getresuid getresgid cpuset_alloc])
# BSD process inspection library
AC_SEARCH_LIBS([kvm_openfiles], [kvm],
[HAVE_KVM=yes],
[HAVE_KVM=no])
AC_SEARCH_LIBS([sysinfo], [sysinfo],
[HAVE_SYSINFO=yes],
[HAVE_SYSINFO=no])
AC_SEARCH_LIBS([numa_available], [numa],
[HAVE_NUMA=yes],
[HAVE_NUMA=no])
AC_CHECK_HEADERS([numa.h])
# FreeBSD 9+ with appropriately configured kernel
# (enabled by default in FreeBSD 10)
AC_SEARCH_LIBS([cap_getmode], [c])
AC_CHECK_HEADERS([sys/capability.h sys/capsicum.h])
AC_SEARCH_LIBS([cap_init], [cap],
[HAVE_LIBCAP=yes],
[HAVE_LIBCAP=no])
AC_SEARCH_LIBS([pthread_create], [pthread],
[HAVE_PTHREAD=yes],
[HAVE_PTHREAD=no])
AC_SEARCH_LIBS([getpidcon], [selinux],
[HAVE_SELINUX=yes],
[HAVE_SELINUX=no])
AM_CONDITIONAL([HAVE_SELINUX], [test x$HAVE_SELINUX = xyes])
AC_CHECK_HEADERS([selinux/selinux.h])
AC_SEARCH_LIBS([aa_gettaskcon], [apparmor],
[HAVE_APPARMOR=yes],
[HAVE_APPARMOR=no])
AC_SEARCH_LIBS([clock_gettime], [rt],
[HAVE_LIBRT=yes],
[HAVE_LIBRT=no])
AM_CONDITIONAL([HAVE_APPARMOR], [test x$HAVE_APPARMOR = xyes])
AC_CHECK_HEADERS([sys/apparmor.h])
AC_ARG_ENABLE([tests],
AS_HELP_STRING([--disable-tests],
[Disable unit tests]),
[enable_tests=no], [enable_tests=yes])
AM_CONDITIONAL([ENABLE_TESTS], test "$enable_tests" = yes)
AM_CONDITIONAL([HAVE_CHECK], test "$HAVE_CHECK" = yes)
AM_CONDITIONAL([PACKAGE_URL], test -n "$PACKAGE_URL")
#---------------------------------------------------------------------
# Other checks
# automake-1.13 defaults to running tests in parallel. As a consequence,
# it also disables verbose output meaning that procenv output is not
# visible in build logs. Therefore, force old behaviour by passing
# 'serial-tests', but only for version of automake >= 1.13 since older
# versions don't recognise that option.
AM_INIT_AUTOMAKE(m4_esyscmd([
version=`automake --version|head -n 1|grep -o "[0-9][0-9]*\.[0-9][0-9]*"`
major=`echo $version|cut -d\. -f1`
minor=`echo $version|cut -d\. -f2`
if [ "$major" = 1 -a "$minor" -ge 13 ]; then
echo serial-tests
elif [ "$major" -gt 1 ]; then
echo serial-tests
fi
]))
# Check available compiler flags
AX_CHECK_COMPILE_FLAG([-fstack-protector], [CFLAGS="$CFLAGS -fstack-protector"])
AX_CHECK_COMPILE_FLAG([-Wformat], [CFLAGS="$CFLAGS -Wformat"])
AX_CHECK_COMPILE_FLAG([-Wformat-security], [CFLAGS="$CFLAGS -Wformat-security"])
AC_ARG_ENABLE([compiler-optimisations],
AS_HELP_STRING([--disable-compiler-optimisations],
[Disable compiler optimisations]),
[AS_IF([test "x$enable_compiler_optimisations" = "xno"],
[[CFLAGS=`echo "$CFLAGS" | sed -e "s/ -O[1-9s]*\b/ -O0/g"`
CXXFLAGS=`echo "$CXXFLAGS" | sed -e "s/ -O[1-9s]*\b/ -O0/g"`]])])
AC_ARG_ENABLE([linker-optimisations],
AS_HELP_STRING([--disable-linker-optimisations],
[Disable linker optimisations]),
[AS_IF([test "x$enable_linker_optimisations" = "xno"],
[LDFLAGS=`echo "$LDFLAGS" | sed -e "s/ -Wl,-O[0-9]*\b//g"`],
[LDFLAGS="$LDFLAGS -Wl,-O1"])])
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],
[enable developer build]),
[AS_IF([test "x$enable_debug" = "xyes"],
[[CFLAGS=`echo "$CFLAGS -DDEBUG -pg"`
CXXFLAGS=`echo "$CXXFLAGS -DDEBUG -pg"`
DEBUG_BUILD=yes]])], [DEBUG_BUILD=no])
AC_ARG_ENABLE([reproducible_build],
AS_HELP_STRING([--enable-reproducible-build],
[Disable display of build-time values that are guaranteed to differ between builds]),
[reproducible_build=yes], [reproducible_build=no])
if test "$reproducible_build" = yes; then
AC_DEFINE([PROCENV_REPRODUCIBLE_BUILD], [1], [Generate a reproducible build])
fi
AC_ARG_WITH([forced_driver],
AS_HELP_STRING([--with-forced-driver=...],
[Used to force a particular platform driver. Warning: These aren't the droids you're looking for...]))
target_to_consider="$target"
AS_IF([test "x$with_forced_driver" != "x"], [
target_to_consider="$withval"
])
#---------------------------------------------------------------------
# Determine platform
case "$target_to_consider" in
*darwin*) procenv_platform=darwin;;
*freebsd*) procenv_platform=freebsd;;
*linux*) procenv_platform=linux;;
# XXX: must come *AFTER* linux test
*hurd*|*gnu*) procenv_platform=hurd;;
*minix*) procenv_platform=minix;;
*netbsd*) procenv_platform=netbsd;;
*openbsd*) procenv_platform=openbsd;;
*) procenv_platform=unknown;;
esac
AM_CONDITIONAL([PROCENV_PLATFORM_DARWIN], [test "$procenv_platform" = darwin])
AM_CONDITIONAL([PROCENV_PLATFORM_FREEBSD], [test "$procenv_platform" = freebsd])
AM_CONDITIONAL([PROCENV_PLATFORM_HURD], [test "$procenv_platform" = hurd])
AM_CONDITIONAL([PROCENV_PLATFORM_NETBSD], [test "$procenv_platform" = netbsd])
AM_CONDITIONAL([PROCENV_PLATFORM_OPENBSD], [test "$procenv_platform" = openbsd])
AM_CONDITIONAL([PROCENV_PLATFORM_LINUX], [test "$procenv_platform" = linux])
AM_CONDITIONAL([PROCENV_PLATFORM_MINIX], [test "$procenv_platform" = minix])
AM_CONDITIONAL([PROCENV_PLATFORM_GENERIC], [test "$procenv_platform" = unknown])
AC_SUBST([procenv_platform])
#---------------------------------------------------------------------
# Platform-specifics
# Magic options that will remove all unused symbols (defined by 'platform-generic.c').
AS_IF(
[test $procenv_platform = darwin],
# Handle darwin
[
AX_CHECK_COMPILE_FLAG([-flto], [CFLAGS="$CFLAGS -flto"])
AX_CHECK_LINK_FLAG([-flto], [LDFLAGS="$LDFLAGS -flto"])
],
# Handle other platforms
[CFLAGS="$CFLAGS -fdata-sections -ffunction-sections"; LDFLAGS="$LDFLAGS -Wl,--gc-sections"]
)
#---------------------------------------------------------------------
# XXX: Dump details of the preprocess/compiler/linker *NOW* so that if
# procenv fails to build later, the build logs will show details of the
# environment that should aid remote debugging.
#
# This may be bad form, but trying to do this at the automake stage
# seems(?) to be impossible.
t=${srcdir}/src/tests/show_compiler_details
msg=$(cat <<EOT
checking that test '$t' runs (output an aide to debugging should procenv fail to build)
EOT
)
AS_BOX($msg)
AS_IF([$t], [test_result=pass], [test_result=fail])
AS_BOX([showing result of test '$t': $test_result])
# Strip leading space. Note the mandatory use of double quadrigraphs
# to specify the character class to sed(1). We can't use literal
# square brackets as autoconf(1)/m4(1) get upset.
CFLAGS=$(echo "$CFLAGS" | sed 's/^@<:@@<:@:space:@:>@@:>@*//')
LDFLAGS=$(echo "$LDFLAGS" | sed 's/^@<:@@<:@:space:@:>@@:>@*//')
AC_CONFIG_FILES([Makefile src/Makefile procenv.spec])
AC_OUTPUT
AC_MSG_RESULT([
Configure settings for $PACKAGE_NAME version $VERSION
Build platform : $procenv_platform
Reproducible build : ${reproducible_build}
Debug build : ${DEBUG_BUILD}
Check unit test framework : ${HAVE_CHECK}
Libraries:
libapparmor : ${HAVE_APPARMOR}
libselinux : ${HAVE_SELINUX}
libcap : ${HAVE_LIBCAP}
libnuma : ${HAVE_NUMA}
libpthread : ${HAVE_PTHREAD}
libkvm : ${HAVE_KVM}
libsysinfo / sysinfo : ${HAVE_SYSINFO}
Initial CFLAGS : ${CFLAGS}
Initial LDFLAGS : ${LDFLAGS}
])