summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorobache <obache>2007-02-03 04:13:25 +0000
committerobache <obache>2007-02-03 04:13:25 +0000
commitbca1070f5448ea4b4ec5f02217c0e6db1e4fb753 (patch)
tree864e97d5f27315e19a61e45d7e37161e9d8ff845 /www
parent3a748978f0a3b47ba928046176c13a968ca43978 (diff)
downloadpkgsrc-bca1070f5448ea4b4ec5f02217c0e6db1e4fb753.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/MESSAGE4
-rw-r--r--www/ap-auth-external/Makefile4
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"