From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/820 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: make -i with linux-pam Date: Mon, 14 May 2012 14:17:11 -0400 Message-ID: <20120514181711.GT163@brightrain.aerifal.cx> References: <20120513205824.16f08160@newbook> <20120514041106.GS163@brightrain.aerifal.cx> <20120514110133.233d6de3@newbook> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1337019772 30793 80.91.229.3 (14 May 2012 18:22:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 14 May 2012 18:22:52 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-821-gllmg-musl=m.gmane.org@lists.openwall.com Mon May 14 20:22:51 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1STzux-0001su-0f for gllmg-musl@plane.gmane.org; Mon, 14 May 2012 20:22:47 +0200 Original-Received: (qmail 9756 invoked by uid 550); 14 May 2012 18:22:46 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 9740 invoked from network); 14 May 2012 18:22:45 -0000 Content-Disposition: inline In-Reply-To: <20120514110133.233d6de3@newbook> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:820 Archived-At: On Mon, May 14, 2012 at 11:01:33AM -0700, Isaac Dunham wrote: > > > pam_unix_passwd.c:57:21: error: rpc/rpc.h: No such file or directory > > > > This would need an external rpc implementation, but I question why > > unix_passwd support needs rpc to begin with... > ... > > Ugly NIS stuff... > Looks like NIS uses RPC... > I think I'll disable pam_unix for the time being. I don't understand why pam_unix is performing NIS lookups. It should just be using getpwnam_r, which would automatically support NIS if the underlying getpwnam_r does and would avoid the dependency on systems that don't have/need it. Rich