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

📄 config.m4

📁 linux subdivision ying gai ke yi le ba
💻 M4
字号:
dnl modules enabled in this directory by default

APACHE_MODPATH_INIT(dav/svn)

dnl dav_svn_objects=""

dnl ### we want to default this based on whether dav is being used...
dnl ### but there is no ordering to the config.m4 files right now...
dnl APACHE_MODULE(dav_svn, DAV provider for Subversion, $dav_svn_objects, , no)

AC_MSG_CHECKING(whether to enable mod_dav_svn)
AC_ARG_ENABLE(dav-svn,
  AC_HELP_STRING([--enable-dav-svn], [DAV provider for Subversion]),
  [  ],
  [ enable_dav_svn=no ])
AC_MSG_RESULT($enable_dav_svn)

if test "$enable_dav_svn" != "no"; then
  case "$enable_$1" in
    shared*)
      AC_MSG_ERROR(mod_dav_svn can only be built dynamically via APXS)
      ;;
    *)
      MODLIST="$MODLIST dav_svn"
      ;;
  esac

  modpath_static="libmod_dav_svn.la libsvn_fs.la libsvn_subr.la"
  BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/libmod_dav_svn.la $modpath_current/libsvn_fs.la $modpath_current/libsvn_subr.la"
fi

APACHE_MODPATH_FINISH

⌨️ 快捷键说明

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