From owner-freebsd-ports@FreeBSD.ORG Mon Jul 23 18:22:06 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 171E2106564A for ; Mon, 23 Jul 2012 18:22:06 +0000 (UTC) (envelope-from naddy@mips.inka.de) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mx1.freebsd.org (Postfix) with ESMTP id B8E578FC0A for ; Mon, 23 Jul 2012 18:22:05 +0000 (UTC) Received: from mail-in-19-z2.arcor-online.net (mail-in-19-z2.arcor-online.net [151.189.8.36]) by mx.arcor.de (Postfix) with ESMTP id 8233D5A01F; Mon, 23 Jul 2012 20:21:59 +0200 (CEST) Received: from mail-in-18.arcor-online.net (mail-in-18.arcor-online.net [151.189.21.58]) by mail-in-19-z2.arcor-online.net (Postfix) with ESMTP id 7DEAF3F8407; Mon, 23 Jul 2012 20:21:59 +0200 (CEST) Received: from lorvorc.mips.inka.de (dslb-188-098-176-251.pools.arcor-ip.net [188.98.176.251]) by mail-in-18.arcor-online.net (Postfix) with ESMTPS id 46C1A3DC542; Mon, 23 Jul 2012 20:21:59 +0200 (CEST) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-18.arcor-online.net 46C1A3DC542 Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.5/8.14.3) with ESMTP id q6NILw43064794; Mon, 23 Jul 2012 20:21:58 +0200 (CEST) (envelope-from naddy@lorvorc.mips.inka.de) Received: (from naddy@localhost) by lorvorc.mips.inka.de (8.14.5/8.14.5/Submit) id q6NILwMS064793; Mon, 23 Jul 2012 20:21:58 +0200 (CEST) (envelope-from naddy) Date: Mon, 23 Jul 2012 20:21:58 +0200 From: Christian Weisgerber To: Thomas Zander Message-ID: <20120723182158.GA64413@lorvorc.mips.inka.de> References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="k1lZvvs/B4yU6o8G" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-ports@freebsd.org Subject: Re: CFT: New mplayer / mencoder snapshot X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2012 18:22:06 -0000 --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Thomas Zander: > if you are a regular mplayer / mencoder user, you are invited to test > a new snapshot from 2012-07-21. > > The drop-in replacements for the ports files for both can be found here: > http://bsdistfiles.googlecode.com/files/m20120722.tar.bz2 Doesn't build on 7-STABLE. extra-patch-base_system_log2f doesn't apply and needs to be regenerated (attached). However, the build still fails: CC libavcodec/h264_cabac.o {standard input}: Assembler messages: {standard input}:22: Error: `(%ebx,%ebp,2)' is not a valid 64 bit base/index expression {standard input}:47: Error: `-1(%edx)' is not a valid 64 bit base/index expression [...] -- Christian "naddy" Weisgerber naddy@mips.inka.de --k1lZvvs/B4yU6o8G Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=extra-patch-base_system_log2f --- configure.orig 2012-07-23 01:48:06.000000000 +0200 +++ configure 2012-07-23 01:49:12.000000000 +0200 @@ -3131,7 +3131,7 @@ echores "$_kstat" -for func in cbrtf exp2 exp2f isnan isinf llrint llrintf log2 log2f lrint lrintf rint round roundf trunc truncf; do +for func in cbrtf exp2 exp2f isnan isinf llrint llrintf lrint lrintf rint round roundf trunc truncf; do echocheck $func eval _$func=no statement_check math.h "${func}(2.0)" -D_ISOC99_SOURCE && eval _$func=yes @@ -3143,7 +3143,9 @@ echores no fi done - +for func in log2 log2f; do + eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\"" +done echocheck "mkstemp" _mkstemp=no --k1lZvvs/B4yU6o8G--