blob: eaffed05e9ef2bd1936c32501994a416f9eb6648 (
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
|
# man-arg-cache-owner.m4 serial 2
dnl MAN_ARG_CACHE_OWNER
dnl Add an --enable-cache-owner option.
AC_DEFUN([MAN_ARG_CACHE_OWNER],
[
AC_ARG_ENABLE([cache-owner],
[AS_HELP_STRING([--enable-cache-owner[=ARG]], [make system-wide cache files be owned by user ARG [arg=man]])
AS_HELP_STRING([--disable-cache-owner], [don't constrain ownership of system-wide cache files])],
[if test "$enableval" = "yes"
then
enableval=man
fi
if test "$enableval" = "no"
then
man_owner=
cache_top_owner=root
AC_MSG_NOTICE([System-wide cache files will have unconstrained ownership])
else
man_owner=$enableval
cache_top_owner=$enableval
AC_MSG_NOTICE([System-wide cache files will be owned by $enableval])
AC_DEFINE_UNQUOTED([MAN_OWNER], ["$man_owner"],
[Define as the owner of system-wide cache files.])
fi],
[man_owner=man
cache_top_owner=man
AC_DEFINE_UNQUOTED([MAN_OWNER], ["$man_owner"])])
AC_SUBST([man_owner])
AC_SUBST([cache_top_owner])
])
|