summaryrefslogtreecommitdiffstats
path: root/m4/man-arg-override-dir.m4
blob: a8ffc61baa82442f1b7b599008b2710698cc7378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# man-arg-override-dir.m4 serial 3
dnl MAN_ARG_OVERRIDE_DIR
dnl Add an --enable-override-dir option.

AC_DEFUN([MAN_ARG_OVERRIDE_DIR],
[
AC_ARG_WITH([override-dir],
[AS_HELP_STRING([--with-override-dir=OVERRIDE], [use OVERRIDE as relative override dir inside the man path - the first directory to be searched when looking for man pages])],
	[if test "$withval" = "yes" || test "$withval" = "no"
	 then
		AC_MSG_ERROR([--with-override-dir requires an argument])
	 else
		override_dir=$withval
	 fi],
	[: ${override_dir=""}])
AC_SUBST([override_dir])
AC_DEFINE_UNQUOTED(
	[OVERRIDE_DIR], ["$override_dir"],
	[Relative override directory inside man path.])
])