diff options
-rw-r--r-- | modules/test/Makefile.in | 3 | ||||
-rw-r--r-- | modules/test/config.m4 | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/modules/test/Makefile.in b/modules/test/Makefile.in new file mode 100644 index 0000000000..7c5c149d85 --- /dev/null +++ b/modules/test/Makefile.in @@ -0,0 +1,3 @@ +# a modules Makefile has no explicit targets -- they will be defined by +# whatever modules are enabled. just grab special.mk to deal with this. +include $(top_srcdir)/build/special.mk diff --git a/modules/test/config.m4 b/modules/test/config.m4 new file mode 100644 index 0000000000..01bc0fa971 --- /dev/null +++ b/modules/test/config.m4 @@ -0,0 +1,9 @@ + +APACHE_MODPATH_INIT(test) + +APACHE_MODULE(optional_hook_export, example optional hook exporter, , , no) +APACHE_MODULE(optional_hook_import, example optional hook importer, , , no) +APACHE_MODULE(optional_fn_import, example optional function importer, , , no) +APACHE_MODULE(optional_fn_export, example optional function exporter, , , no) + +APACHE_MODPATH_FINISH |