diff options
-rw-r--r-- | www/ap-auth-external/MESSAGE | 4 | ||||
-rw-r--r-- | www/ap-auth-external/Makefile | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/ap-auth-external/MESSAGE b/www/ap-auth-external/MESSAGE index 2ddad40fc78..687b1d78364 100644 --- a/www/ap-auth-external/MESSAGE +++ b/www/ap-auth-external/MESSAGE @@ -1,9 +1,9 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1.1.1 2007/01/19 09:00:24 sborrill Exp $ +$NetBSD: MESSAGE,v 1.2 2007/02/03 04:13:25 obache Exp $ In order to use this module in your Apache installation, you need to add the following to your httpd.conf file: - LoadModule external_auth_module lib/httpd/mod_auth_external.so + LoadModule ${MODULE_NAME} lib/httpd/mod_auth_external.so =========================================================================== diff --git a/www/ap-auth-external/Makefile b/www/ap-auth-external/Makefile index e35dc65e64d..077b6d4c8d7 100644 --- a/www/ap-auth-external/Makefile +++ b/www/ap-auth-external/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/02/03 04:11:04 obache Exp $ +# $NetBSD: Makefile,v 1.4 2007/02/03 04:13:25 obache Exp $ # DISTNAME= mod_auth_external-${DISTVERS} @@ -20,9 +20,11 @@ APACHE_MODULE_NAME= mod_auth_external.${MODULE_EXT} .if ${PKG_APACHE} == "apache13" DISTVERS= 2.1.19 MODULE_EXT= so +MESSAGE_SUBST+= MODULE_NAME=external_auth_module .else DISTVERS= 2.2.11 MODULE_EXT= la +MESSAGE_SUBST+= MODULE_NAME=auth_external_module .endif .include "../../www/apache/module.mk" |