📄 config9.m4
字号:
dnl modules enabled in this directory by defaultdnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])APACHE_MODPATH_INIT(mappers)APACHE_MODULE(vhost_alias, mass virtual hosting module, , , most)APACHE_MODULE(negotiation, content negotiation, , , yes)APACHE_MODULE(dir, directory request handling, , , yes)APACHE_MODULE(imagemap, server-side imagemaps, , , most)APACHE_MODULE(actions, Action triggering on requests, , , yes)APACHE_MODULE(speling, correct common URL misspellings, , , most)APACHE_MODULE(userdir, mapping of requests to user-specific directories, , , yes)APACHE_MODULE(alias, mapping of requests to different filesystem parts, , , yes)APACHE_MODULE(rewrite, rule based URL manipulation, , , most)APR_CHECK_APR_DEFINE(APR_HAS_DSO)case "x$enable_so" in "xyes") if test $ac_cv_define_APR_HAS_DSO = "no"; then AC_MSG_ERROR([mod_so has been requested but cannot be built on your system]) fi ;; "xshared") AC_MSG_ERROR([mod_so can not be built as a shared DSO]) ;; "xno") ;; "x") enable_so=$ac_cv_define_APR_HAS_DSO ;;esacdnl mod_so can only be built statically. If the user wants modules todnl be built as DSOs by default (eg. ./configure --enable-mods-shared=most)dnl then we must override the default here.if test "x$enable_so" = "xyes"; then enable_so="static"fiif test "x$enable_so" = "xstatic"; then APR_ADDTO(HTTPD_LDFLAGS, [-export-dynamic]) INSTALL_DSO=yeselse INSTALL_DSO=nofiAPACHE_SUBST(INSTALL_DSO)if test "$sharedobjs" = "yes"; then if test $ac_cv_define_APR_HAS_DSO = "no"; then AC_MSG_ERROR([shared objects have been requested but cannot be built since mod_so cannot be built]) elif test $enable_so = "no"; then AC_MSG_ERROR([shared objects have been requested but cannot be built since mod_so was disabled]) fifiAPACHE_MODULE(so, DSO capability, , , $enable_so)dnl ### why save the cache?AC_CACHE_SAVEAPACHE_MODPATH_FINISH
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -