From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 12 21:20:25 2005 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C13DA16A4CE for ; Wed, 12 Jan 2005 21:20:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A5B443D5A for ; Wed, 12 Jan 2005 21:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j0CLKPcM004326 for ; Wed, 12 Jan 2005 21:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j0CLKPek004325; Wed, 12 Jan 2005 21:20:25 GMT (envelope-from gnats) Date: Wed, 12 Jan 2005 21:20:25 GMT Message-Id: <200501122120.j0CLKPek004325@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Giorgos Keramidas Subject: Re: bin/76169: [PATCH] Add PAM support to cvs pserver X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Giorgos Keramidas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:20:25 -0000 The following reply was made to PR bin/76169; it has been noted by GNATS. From: Giorgos Keramidas To: Dan Nelson Cc: bug-followup@freebsd.org Subject: Re: bin/76169: [PATCH] Add PAM support to cvs pserver Date: Wed, 12 Jan 2005 23:17:32 +0200 On 2005-01-12 12:15, Dan Nelson wrote: > Most of the base services have been PAM-ified, but cvs is a notable > exception. CVS 1.12 will have PAM support, but I don't know when 1.12 > will be declared stable. The following patch is based on Steve > McIntyre's 1.11 patch at > http://ccvs.cvshome.org/issues/show_bug.cgi?id=44 . CVS is contrib software, so I don't know if we can just pull the files off the vendor branch so easily. But I noticed a small nit, that you may want to fix in the diff: > --- gnu/usr.bin/cvs/cvs/Makefile 6 Aug 2004 07:27:03 -0000 1.48 > +++ gnu/usr.bin/cvs/cvs/Makefile 5 Jan 2005 18:25:50 -0000 : > DPADD= ${LIBCVS} ${LIBDIFF} ${LIBGNUREGEX} ${LIBMD} ${LIBCRYPT} ${LIBZ} > -LDADD= ${LIBCVS} ${LIBDIFF} -lgnuregex -lmd -lcrypt -lz > +LDADD= ${LIBCVS} ${LIBDIFF} -lgnuregex -lmd -lcrypt -lz -lpam Adding libraries in LDADD should also update DPADD, IIRC. The fix is simple: add ${LIBPAM} to DPADD too.