From owner-cvs-all@FreeBSD.ORG Sat Mar 19 05:20:57 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CA2A16A4CE; Sat, 19 Mar 2005 05:20:57 +0000 (GMT) Received: from les.ath.cx (12.41.244.43.ap.yournet.ne.jp [43.244.41.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9973243D1D; Sat, 19 Mar 2005 05:20:55 +0000 (GMT) (envelope-from qhwt+fbsd@les.ath.cx) Received: by les.ath.cx (Postfix, from userid 1000) id CFA101B8738; Sat, 19 Mar 2005 14:21:41 +0900 (JST) Date: Sat, 19 Mar 2005 14:21:41 +0900 From: YONETANI Tomokazu To: Norikatsu Shigemura Message-ID: <20050319052141.GA36176@les.ath.cx> References: <200503181828.j2IISipw024992@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200503181828.j2IISipw024992@repoman.freebsd.org> User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/www/linuxpluginwrapper Makefile distinfo pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Mar 2005 05:20:57 -0000 On Fri, Mar 18, 2005 at 06:28:44PM +0000, Norikatsu Shigemura wrote: > nork 2005-03-18 18:28:44 UTC > > FreeBSD ports repository > > Modified files: > www/linuxpluginwrapper Makefile distinfo pkg-message pkg-plist > Log: > Update to 20050319. Hi, the new code doesn't build on FreeBSD-4.x or DragonFly because of the difference in the number of arguments in __assert(). You need the following patch to make it build. %%% --- compat_glibc/linux_misc.c.orig 2005-03-19 03:15:37.000000000 +0900 +++ compat_glibc/linux_misc.c 2005-03-19 14:15:28.000000000 +0900 @@ -77,5 +77,10 @@ __assert_fail(const char *assertion, const char *file, unsigned int line, const char *function) { +#if defined(__DragonFly__) || __FreeBSD_version < 500000 + (void)function; + __assert(file, line, assertion); +#else __assert(function, file, line, assertion); +#endif } %%% Regards.