-
Notifications
You must be signed in to change notification settings - Fork 3
/
configure.ac
94 lines (75 loc) · 3.24 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
dnl Copyright 2013 Google Inc.
dnl All rights reserved.
dnl
dnl Redistribution and use in source and binary forms, with or without
dnl modification, are permitted provided that the following conditions are
dnl met:
dnl
dnl * Redistributions of source code must retain the above copyright
dnl notice, this list of conditions and the following disclaimer.
dnl * Redistributions in binary form must reproduce the above copyright
dnl notice, this list of conditions and the following disclaimer in the
dnl documentation and/or other materials provided with the distribution.
dnl * Neither the name of Google Inc. nor the names of its contributors
dnl may be used to endorse or promote products derived from this software
dnl without specific prior written permission.
dnl
dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
dnl "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
dnl LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
dnl A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
dnl OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
dnl SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
dnl LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
dnl DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
dnl THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
dnl (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
dnl OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
AC_INIT([pkg_comp], [2.1],
[https://github.com/jmmv/pkg_comp/issues/], [pkg_comp], [])
AC_PREREQ([2.65])
AC_COPYRIGHT([Copyright 2013 Google Inc.])
AC_CONFIG_AUX_DIR([admin])
AC_CONFIG_FILES([Makefile])
AC_CONFIG_SRCDIR([pkg_comp.sh])
AM_INIT_AUTOMAKE([1.9 check-news foreign subdir-objects -Wall])
AC_PATH_PROG([SANDBOXCTL], [sandboxctl], [not-found])
if test "${SANDBOXCTL}" = not-found; then
AC_MSG_ERROR([Cannot find sandboxctl])
fi
AC_ARG_VAR([PKG_COMP_CONFSUBDIR],
[Subdirectory of sysconfdir under which to look for files])
if test x"${PKG_COMP_CONFSUBDIR-unset}" = x"unset"; then
PKG_COMP_CONFSUBDIR=pkg_comp
else
case "${PKG_COMP_CONFSUBDIR}" in
/*)
AC_MSG_ERROR([PKG_COMP_CONFSUBDIR must hold a relative path])
;;
*)
;;
esac
fi
if test x"${PKG_COMP_CONFSUBDIR}" = x""; then
AC_SUBST(pkg_comp_confdir, \${sysconfdir})
else
AC_SUBST(pkg_comp_confdir, \${sysconfdir}/\${PKG_COMP_CONFSUBDIR})
fi
m4_ifndef([PKG_CHECK_MODULES],
[m4_fatal([Cannot find pkg.m4; see the INSTALL document for help])])
m4_ifndef([SHTK_CHECK],
[m4_fatal([Cannot find shtk.m4; see the INSTALL document for help])])
SHTK_CHECK([>= 1.7])
m4_ifndef([ATF_CHECK_SH],
[m4_fatal([Cannot find atf-sh.m4; see the INSTALL document for help])])
ATF_CHECK_SH([>= 0.17])
m4_ifndef([ATF_ARG_WITH],
[m4_fatal([Cannot find atf-common.m4; see the INSTALL document for help])])
ATF_ARG_WITH
AC_PATH_PROG([KYUA], [kyua])
AM_CONDITIONAL([HAVE_KYUA], [test -n "${KYUA}"])
AC_ARG_VAR([KYUA_FLAGS],
[Additional Kyua flags to use at 'make (|dist|install)check' time])
AC_SUBST(pkgtestsdir, \${testsdir}/pkg_comp)
AC_SUBST(testsdir, \${exec_prefix}/tests)
AC_OUTPUT