From owner-freebsd-questions@FreeBSD.ORG Fri Apr 28 01:03:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C177616A411 for ; Fri, 28 Apr 2006 01:03:22 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF5C343D48 for ; Fri, 28 Apr 2006 01:03:15 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (aris.bedc.ondsl.gr [62.103.39.226]) (authenticated bits=128) by igloo.linux.gr (8.13.6/8.13.6/Debian-1) with ESMTP id k3S12nja010224 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 28 Apr 2006 04:02:51 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k3S12rZ5003125; Fri, 28 Apr 2006 04:02:53 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k3S12rUI003124; Fri, 28 Apr 2006 04:02:53 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 28 Apr 2006 04:02:53 +0300 From: Giorgos Keramidas To: Sean Murphy Message-ID: <20060428010253.GC1742@gothmog.pc> References: <445160BB.5040600@calarts.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <445160BB.5040600@calarts.edu> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.392, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.81, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: shadow.h compile question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Apr 2006 01:03:23 -0000 On 2006-04-27 17:24, Sean Murphy wrote: > I am trying to compile a plugin for squrrilmail it is the vacation > plugin. when I run make it tells me the it cannot find shadow.h > > I did a find on the freebsd server which is 5.4 and did not find > shadow or shadow.h > > what is shadow.h? can I get it from anywhere? A Linuxism that has been used by the author of the software: $ find /usr/include -name shadow.h /usr/include/shadow.h $ uname -a Linux foo 2.6.10 #1 Thu Dec 30 03:01:16 EET 2004 i686 GNU/Linux $ User programs shouldn't depend on but use the header instead and the getpwent() library function, whenever they need to access user/password information. - Giorgos