summaryrefslogtreecommitdiffstats
path: root/modules/generators/config.m4
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-12-04 21:34:48 +0100
committerRyan Bloom <rbb@apache.org>2000-12-04 21:34:48 +0100
commita87a761b37f2859cdafca6ec5d9cfad193a4f19a (patch)
treeb4bf2ab6a6f3ca48ca84636e4e93eaee23d0b399 /modules/generators/config.m4
parentStart pointing the configuration scripts to the correct directories (diff)
downloadapache2-a87a761b37f2859cdafca6ec5d9cfad193a4f19a.tar.xz
apache2-a87a761b37f2859cdafca6ec5d9cfad193a4f19a.zip
Start to add back the config.m4 and Makefile.in's that were separated out
during the repository move. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87184 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/generators/config.m422
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/generators/config.m4 b/modules/generators/config.m4
new file mode 100644
index 0000000000..f3eef3ed0b
--- /dev/null
+++ b/modules/generators/config.m4
@@ -0,0 +1,22 @@
+dnl modules enabled in this directory by default
+
+dnl AC_DEFUN(modulename, modulestructname, defaultonoroff, configmacros)
+dnl XXX - Need to allow --enable-module to fail if optional config fails
+
+AC_DEFUN(APACHE_CHECK_STANDARD_MODULE, [
+ APACHE_MODULE([$1],[$2],,[$3],[$4],[$5])
+])
+
+APACHE_MODPATH_INIT(generators)
+
+APACHE_CHECK_STANDARD_MODULE(status, process/thread monitoring, , no)
+APACHE_CHECK_STANDARD_MODULE(autoindex, directory listing, , yes)
+APACHE_CHECK_STANDARD_MODULE(asis, as-is filetypes, , yes)
+APACHE_CHECK_STANDARD_MODULE(info, server information, , no)
+APACHE_CHECK_STANDARD_MODULE(suexec, set uid and gid for spawned processes, , no)
+
+LTFLAGS="$LTFLAGS -export-dynamic"
+
+APACHE_MODPATH_FINISH
+
+APACHE_SUBST(STANDARD_LIBS)