From owner-freebsd-stable@FreeBSD.ORG Sat Jan 8 16:06:03 2005 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3495616A4CE for ; Sat, 8 Jan 2005 16:06:03 +0000 (GMT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 342F243D31 for ; Sat, 8 Jan 2005 16:06:02 +0000 (GMT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 8 Jan 2005 16:06:00 +0000 (GMT) Date: Sat, 8 Jan 2005 16:05:59 +0000 From: David Malone To: RJ45 Message-ID: <20050108160559.GA25747@walton.maths.tcd.ie> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i Sender: dwmalone@maths.tcd.ie cc: freebsd-stable@freebsd.org Subject: Re: syslog problem X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jan 2005 16:06:03 -0000 On Sat, Jan 08, 2005 at 07:49:10AM -0700, RJ45 wrote: > Building stable I have this problem > /usr/src/lib/libc/gen/syslog.c:336: error: `_PATH_LOG_PRIV' undeclared I guess that you are building RELENG_5, rather than RELENG_4? The error suggests that either /usr/src/sys/sys/syslog.h is out of date (it should define _PATH_LOG_PRIV) or that you accidently did a "make" rather than "make buildworld" (in which case it is picking up the old syslog.h header in /usr/include). If you're trying to compile RELENG_4, then you probably have a mix of FreeBSD 4 and 5 sourcecode. David.