File: acinclude.m4

package info (click to toggle)
libblockdev 2.25-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,944 kB
  • sloc: ansic: 17,842; python: 9,219; makefile: 569; sh: 487
file content (114 lines) | stat: -rw-r--r-- 4,143 bytes parent folder | download | duplicates (5)
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
dnl autoconf macros for libblockdev
dnl
dnl Copyright (C) 2014  Red Hat, Inc.
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU Lesser General Public License as published
dnl by the Free Software Foundation; either version 2.1 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
dnl GNU Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public License
dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
dnl
dnl THIS IS A MODIFIED VERSION OF THE ANACONDA'S acinclude.m4 FILE.
dnl
dnl Author: David Shea <dshea@redhat.com>
dnl         Vratislav Podzimek <vpodzime@redhat.com>

dnl LIBBLOCKDEV_SOFT_FAILURE(MESSAGE)
dnl
dnl Store a message that in some contexts could be considered indicative
dnl of a failure, but in other contexts could be indicative of who cares.
dnl
dnl Any message sent to this macro will be stored, and they can all be
dnl displayed at the end of configure using the LIBBLOCKDEV_FAILURES macro.
AC_DEFUN([LIBBLOCKDEV_SOFT_FAILURE], [dnl
AS_IF([test x"$libblockdev_failure_messages" = x],
    [libblockdev_failure_messages="[$1]"],
    [libblockdev_failure_messages="$libblockdev_failure_messages
[$1]"
])])dnl

dnl LIBBLOCKDEV_PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES)
dnl
dnl Check whether a module is available, using pkg-config. Instead of failing
dnl if a module is not found, store the failure in a message that can be
dnl printed using the LIBBLOCKDEV_FAILURES macro.
dnl
dnl The syntax and behavior of VARIABLE-PREFIX and MODULES is the same as for
dnl PKG_CHECK_MODULES.
AC_DEFUN([LIBBLOCKDEV_PKG_CHECK_MODULES], [dnl
PKG_CHECK_MODULES([$1], [$2], [], [LIBBLOCKDEV_SOFT_FAILURE($[$1]_PKG_ERRORS)])
])dnl

dnl LIBBLOCKDEV_PKG_CHECK_EXISTS(MODULES)
dnl
dnl Check whether a module exists, using pkg-config. Instead of failing
dnl if a module is not found, store the failure in a message that can be
dnl printed using the LIBBLOCKDEV_FAILURES macro.
dnl
dnl The syntax and behavior of MODULES is the same as for
dnl PKG_CHECK_EXISTS.
AC_DEFUN([LIBBLOCKDEV_PKG_CHECK_EXISTS], [dnl
PKG_CHECK_EXISTS([$1], [], [LIBBLOCKDEV_SOFT_FAILURE([Check for $1 failed])])
])dnl

dnl LIBBLOCKDEV_CHECK_HEADER(HEADER, CFLAGS, ERR_MSG)
dnl
dnl Check if the given HEADER exists and is usable -- gcc can compile a source
dnl file that just includes the HEADER using the given CFLAGS. In case of
dnl failure, the ERR_MSG will be printed using the LIBBLOCKDEV_FAILURES macro.
AC_DEFUN([LIBBLOCKDEV_CHECK_HEADER], [dnl
echo -n "Checking header [$1] existence and usability..."
temp_file=$(mktemp --tmpdir XXXXX.c)
echo "#include <$1>" > $temp_file
${CC} -c [$2] $temp_file
status=$?
rm -f $temp_file
rm -f $(basename ${temp_file%%.c}.o)
if test $status = 0; then
  echo yes
else
  echo no
  libblockdev_failure_messages="$libblockdev_failure_messages
[$3]"
fi
])dnl


dnl LIBBLOCKDEV_PLUGIN(NAME, name)
dnl
dnl Define things needed in Makefile.am`s as well as sources for making
dnl compilation and build modular.
AC_DEFUN([LIBBLOCKDEV_PLUGIN], [dnl
AC_ARG_WITH([$2],
    AS_HELP_STRING([--with-$2], [support $2 @<:@default=yes@:>@]),
    [],
    [with_$2=yes])

AC_SUBST([WITH_$1], [0])
AM_CONDITIONAL(WITH_$1, test "x$with_$2" != "xno")
AS_IF([test "x$with_$2" != "xno"],
      [AC_DEFINE([WITH_BD_$1], [], [Define if $2 is supported]) AC_SUBST([WITH_$1], [1])],
      [])
])dnl


dnl LIBBLOCKDEV_FAILURES
dnl
dnl Print the failure messages collected by LIBBLOCKDEV_SOFT_FAILURE,
dnl LIBBLOCKDEV_PKG_CHECK_MODULES and LIBBLOCKDEV_CHECK_HEADER
AC_DEFUN([LIBBLOCKDEV_FAILURES], [dnl
AS_IF([test x"$libblockdev_failure_messages" = x], [], [dnl
echo ""
echo "*** Libblockdev encountered the following issues during configuration:"
echo "$libblockdev_failure_messages"
echo ""
echo "*** Libblockdev will not successfully build without these missing dependencies"
AS_EXIT(1)
])])dnl