diff options
author | obache <obache@pkgsrc.org> | 2007-02-03 04:13:25 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2007-02-03 04:13:25 +0000 |
commit | 3686e0b8a5412cecc2ca6145dce5c1ffb60a9124 (patch) | |
tree | 864e97d5f27315e19a61e45d7e37161e9d8ff845 /www | |
parent | 92ce0cd77c6094ff364c21e9a3b4f6b8e29fa3ed (diff) | |
download | pkgsrc-3686e0b8a5412cecc2ca6145dce5c1ffb60a9124.tar.gz |
Fix module name in MESSAGE for apache2.
Pointed out in PR 35510.
Diffstat (limited to 'www')
-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" |