forked from ibm-power-utilities/librtas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
79 lines (67 loc) · 2.27 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
AC_INIT([librtas],[2.0.5],[See README])
AC_PREREQ([2.69])
AC_CONFIG_SRCDIR([librtas_src/librtas.h])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability subdir-objects foreign tar-ustar])
AC_CONFIG_HEADERS([config.h])
AC_CHECK_FUNCS([memset munmap strrchr])
AC_CHECK_HEADERS([fcntl.h])
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_FUNC_REALLOC
AC_TYPE_OFF_T
AC_TYPE_SIZE_T
AC_TYPE_UID_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_DEFUN([LIBRTAS_SET_FLAGS], [
AC_REQUIRE([AX_APPEND_COMPILE_FLAGS])
AC_LANG_PUSH([C])
# Some warning flags need -O2 to work.
AX_APPEND_COMPILE_FLAGS([-O2], [cc_opt_flags])
# Specify a C dialect instead of using the compiler's default.
AX_APPEND_COMPILE_FLAGS([-std=gnu99], [cc_std_flags])
# Warning flags to use if supported. By default clang only warns
# on unrecognized -W flags, so run the tests with -Werror.
AX_APPEND_COMPILE_FLAGS([ \
-Wall \
-Wextra \
-Wformat-signedness \
-Wformat=2 \
-Wno-unused-parameter \
-Wsign-compare \
], [cc_warn_flags], [-Werror])
AC_LANG_POP
AC_SUBST([cc_opt_flags])
AC_SUBST([cc_std_flags])
AC_SUBST([cc_warn_flags])
])
LIBRTAS_SET_FLAGS
AC_CHECK_PROGS([cmd_abidiff], [abidiff])
LT_INIT
LT_LANG([C])
# Detection of missing pkg-config macros, per Autoconf manual.
m4_pattern_forbid([^PKG_])
PKG_PROG_PKG_CONFIG
AC_MSG_CHECKING([whether to enable tests])
AC_ARG_ENABLE([tests],
[AS_HELP_STRING([--enable-tests],
[enable tests (default is no)])],
[enable_tests=$enableval],
[enable_tests="no"])
AC_MSG_RESULT([$enable_tests])
AM_CONDITIONAL([ENABLE_TESTS], [test "$enable_tests" = "yes"])
if test "$enable_tests" = "yes"; then
cmocka_min_ver=1.1.7
PKG_CHECK_MODULES([CMOCKA],
[cmocka >= $cmocka_min_ver],
[cmocka_available="yes"],
[cmocka_available="no"])
if test "$cmocka_available" = "no"; then
AC_MSG_ERROR([--enable-tests requires cmocka >= $cmocka_min_ver])
fi
fi
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_FILES([Makefile librtas.spec])
AC_OUTPUT