blob: d85b418a21e514a078e895502c06e3060e8fe57f (
plain)
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
|
AC_DEFUN([GPKG_CHECK_RPM],
[
AC_ARG_WITH([rpmbuild],
[AS_HELP_STRING([--with-rpmbuild=PATH],
[Program to use for building RPMs])])
AC_MSG_CHECKING([for rpmbuild or rpm])
if test -x "${with_rpmbuild}"
then
RPMBUILD="${with_rpmbuild}"
AC_MSG_RESULT([${RPMBUILD} (from parameter)])
else
AC_MSG_RESULT([using autodetection])
AC_CHECK_PROGS(RPMBUILD, [rpmbuild rpm], false)
AC_MSG_CHECKING([for rpmbuild or rpm])
AC_MSG_RESULT([${RPMBUILD} (autodetected)])
fi
AC_SUBST([RPMBUILD])
AM_CONDITIONAL([ENABLE_RPM], [test "$RPMBUILD" != "false"])
])
AC_DEFUN([GPKG_CHECK_LINUX],
[
# effective_target has to be determined in advance
AC_REQUIRE([AC_NEED_BYTEORDER_H])
is_linux=false
case "$effective_target" in
*linux*)
is_linux=true
;;
esac
AM_CONDITIONAL([HAVE_LINUX], ["$is_linux"])
# required for docdir
# FIXME: Implicit dependency
# AC_REQUIRE(GP_CHECK_DOC_DIR)
AC_ARG_WITH([hotplug-doc-dir],
[AS_HELP_STRING([--with-hotplug-doc-dir=PATH],
[Where to install hotplug scripts as docs [default=autodetect]])])
if "$is_linux"; then
AC_MSG_CHECKING([for hotplug doc dir])
if test "x${with_hotplug_doc_dir}" != "x"
then # given as parameter
hotplugdocdir="${with_hotplug_doc_dir}"
AC_MSG_RESULT([${hotplugdocdir} (from parameter)])
else # start at docdir
hotplugdocdir="${docdir}/linux-hotplug"
AC_MSG_RESULT([${hotplugdocdir} (default)])
fi
else
hotplugdocdir=""
fi
AC_ARG_WITH([hotplug-usermap-dir],
[AS_HELP_STRING([--with-hotplug-usermap-dir=PATH],
[Where to install hotplug scripts as docs [default=autodetect]])])
if "$is_linux"; then
AC_MSG_CHECKING([for hotplug usermap dir])
if test "x${with_hotplug_usermap_dir}" != "x"
then # given as parameter
hotplugusermapdir="${with_hotplug_usermap_dir}"
AC_MSG_RESULT([${hotplugusermapdir} (from parameter)])
else # start at docdir
hotplugusermapdir="${docdir}/linux-hotplug"
AC_MSG_RESULT([${hotplugusermapdir} (default)])
fi
else
hotplugusermapdir=""
fi
# Let us hope that automake does not create "" directories
# on non-Linux systems now.
AC_SUBST([hotplugdocdir])
AC_SUBST([hotplugusermapdir])
])
|