⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bsd-security.m4

📁 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a
💻 M4
字号:
# SYNOPSIS##   AMANDA_BSD_SECURITY## OVERVIEW##   Handle configuration for BSD security, implementing the #   --without-bsd-security option.  Also supplies the --without-amandahosts#   option to use .rhosts instead of .amandahosts##   Note that the defaults for *both* of these options are "yes", unlike#   the remainder of the security implementations.##   Defines BSD_SECURITY, and sets AM_CONDITIONAL WANT_BSD_SECURITY,#   if the user has selected this mechanism.  Also defines USE_AMANDAHOSTS#   unless the user has specified --without-amandahosts.#AC_DEFUN([AMANDA_BSD_SECURITY],[    BSD_SECURITY="yes"    AC_ARG_WITH(bsd-security,        AS_HELP_STRING([--without-bsd-security],                [do not include BSD authentication]),        [            case "$withval" in                n | no) BSD_SECURITY=no ;;                y |  ye | yes) ;;                *) AC_MSG_ERROR([*** You must not supply an argument to --without-bsd-security.])                    ;;            esac        ],    )    USE_AMANDAHOSTS=yes    AC_ARG_WITH(amandahosts,        AS_HELP_STRING([ --without-amandahosts],            [use ".rhosts" instead of ".amandahosts"]),        [            case "$withval" in                n | no ) USE_AMANDAHOSTS="no" ;;                y |  ye | yes) : ;;                *) AC_MSG_ERROR([*** You must not supply an argument to --without-amandahosts option.])                  ;;            esac        ]    )    if test "x$BSD_SECURITY" = "xyes"; then        AC_DEFINE(BSD_SECURITY,1,            [Define to use BSD .rhosts/.amandahosts security. ])        if test "x$USE_AMANDAHOSTS" = "xyes"; then            AC_DEFINE(USE_AMANDAHOSTS,1,                [Define if you want to use the ".amandahosts" for BSD security. ])        fi    fi    AM_CONDITIONAL(WANT_BSD_SECURITY, test x"$BSD_SECURITY" = x"yes")])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -