1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Fix module names in httpd.conf

PR:		ports/75892
Reported by:	Lewis Thompson <purple@lewiz.net>
This commit is contained in:
Clement Laforet 2005-01-17 21:33:32 +00:00
parent 924f071a21
commit 8fe0e2e893
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126676

View File

@ -1,18 +1,19 @@
--- Makefile.orig Sat Aug 24 15:33:12 2002
+++ Makefile Sun Oct 5 20:41:52 2003
+++ Makefile Mon Jan 17 22:30:14 2005
@@ -1,5 +1,4 @@
LIBS=-lpam
-APXS=apxs
# try this, if you're not root and apxs is in the standard place
#APXS=/usr/sbin/apxs
@@ -14,8 +13,7 @@
@@ -14,8 +13,8 @@
$(APXS) -c $< $(LIBS)
install: $(TARGETS)
- $(APXS) -i $(TARGETS)
- [ -d /etc/pam.d/ -a ! -f /etc/pam.d/httpd ] && install -m 644 -o root -g root samples/httpd /etc/pam.d/
+ $(APXS) -i -A $(TARGETS)
+ $(APXS) -i -A mod_auth_pam.la
+ $(APXS) -i -A mod_auth_sys_group.la
clean:
-rm -f $(TARGETS) *~ $(SOURCES:.c=.slo) $(SOURCES:.c=.lo) $(SOURCES:.c=.so) $(SOURCES:.c=.o)