1
0
Fork 0
man-db/m4/man-arg-automatic-create.m4
Daniel Baumann 1fa764a8d3
Adding upstream version 2.13.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 08:13:55 +02:00

13 lines
416 B
Text

# man-arg-automatic-create.m4 serial 1
dnl MAN_ARG_AUTOMATIC_CREATE
dnl Add an --enable-automatic-create option.
AC_DEFUN([MAN_ARG_AUTOMATIC_CREATE],
[
AC_ARG_ENABLE([automatic-create],
[AS_HELP_STRING([--enable-automatic-create], [allow man to create user databases on the fly])],
[if test "$enableval" = "yes"
then
AC_DEFINE([MAN_DB_CREATES], [1], [Allow man to create user databases on the fly.])
fi])
])