17018c8489
incompatible changes to libpam.so; prior versions were buggy so upgrading is highly recommended. Pkgsrc changes from version 0.72 include: * Honor ${PKG_SYSCONFDIR}: the config files are now found in /etc/pam.conf and /etc/pam/*.conf, or in the appropriate ${PKG_SYSCONFBASE} directory. * Convert to use the general INSTALL/DEINSTALL scripts. Changes from version 0.72 include: * bug fixes to almost every PAM module * pam_pwdb replaced with pam_unix * fixed a small security hole (more of a user confusion issue) with the unix and pwdb password helper binaries. * improved handling of the setcred/close_session and update chauthtok stack. *Warning* This is a backwardly incompatible change, but 'more sane' than before. (Bug 129775 - agmorgan) * added support for '/' symbols in pam_time and pam_group config files (support for modern terminal devices). Fixed infinite loop problem with '\\[^\n]' in these files. * added accessconf=<filename> feature to pam_access
29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
$NetBSD: patch-aa,v 1.3 2002/01/29 17:10:10 jlam Exp $
|
|
|
|
--- Makefile.orig Sat Jan 20 17:29:47 2001
|
|
+++ Makefile
|
|
@@ -58,20 +58,20 @@
|
|
install: _pam_aconf.h prep
|
|
$(MKDIR) $(FAKEROOT)$(INCLUDED)
|
|
$(INSTALL) -m 444 security/_pam_aconf.h $(FAKEROOT)$(INCLUDED)
|
|
- for x in $(THINGSTOMAKE) ; do make -C $$x install ; done
|
|
+ for x in $(THINGSTOMAKE) ; do $(MAKE) -C $$x install ; done
|
|
|
|
remove:
|
|
rm -f $(FAKEROOT)$(INCLUDED)/_pam_aconf.h
|
|
- for x in $(THINGSTOMAKE) ; do make -C $$x remove ; done
|
|
+ for x in $(THINGSTOMAKE) ; do $(MAKE) -C $$x remove ; done
|
|
|
|
release:
|
|
- @if [ ! -f Make.Rules ]; then echo make Make.Rules first ; exit 1; fi
|
|
+ @if [ ! -f Make.Rules ]; then echo $(MAKE) Make.Rules first ; exit 1; fi
|
|
@if [ ! -L ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) ]; then \
|
|
echo generating ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) link ; \
|
|
ln -sf $(DISTNAME) ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL) ; \
|
|
echo to ../$(DISTNAME) . ; fi
|
|
@diff ../$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL)/Make.Rules Make.Rules
|
|
- make distclean
|
|
+ $(MAKE) distclean
|
|
cd .. ; tar zvfc $(DISTNAME)-$(MAJOR_REL).$(MINOR_REL).tar.gz \
|
|
--exclude CVS --exclude .cvsignore --exclude '.#*' \
|
|
$(DISTNAME)-$(MAJOR_REL).$(MINOR_REL)/*
|