diff options
Diffstat (limited to 'm4/man-arg-cats.m4')
-rw-r--r-- | m4/man-arg-cats.m4 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/m4/man-arg-cats.m4 b/m4/man-arg-cats.m4 new file mode 100644 index 0000000..e17bd7a --- /dev/null +++ b/m4/man-arg-cats.m4 @@ -0,0 +1,14 @@ +# man-arg-cats.m4 serial 1 +dnl MAN_ARG_CATS +dnl Add a --disable-cats option. + +AC_DEFUN([MAN_ARG_CATS], +[ +AC_ARG_ENABLE([cats], +[AS_HELP_STRING([--disable-cats], [don't allow man to create/update cat files])], + [if test "$enableval" = "yes" + then + AC_DEFINE([MAN_CATS], [1], [Allow man to create/update cat files.]) + fi], + [AC_DEFINE([MAN_CATS], [1], [Allow man to create/update cat files.])]) +]) |