Date: Mon, 1 Dec 2014 00:08:18 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373697 - in head/multimedia/libfame: . files Message-ID: <201412010008.sB108IFG070173@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Mon Dec 1 00:08:18 2014 New Revision: 373697 URL: https://svnweb.freebsd.org/changeset/ports/373697 QAT: https://qat.redports.org/buildarchive/r373697/ Log: - Fix library w/clang on i386 Broken .so was produced, undefined reference to _mmx_one. This fixes multimedia/recmpeg on i386. Approved by: portmgr blanket MFH: 2014Q4 Added: head/multimedia/libfame/files/patch-src__half_mmx.h (contents, props changed) Modified: head/multimedia/libfame/Makefile Modified: head/multimedia/libfame/Makefile ============================================================================== --- head/multimedia/libfame/Makefile Sun Nov 30 23:51:36 2014 (r373696) +++ head/multimedia/libfame/Makefile Mon Dec 1 00:08:18 2014 (r373697) @@ -3,7 +3,7 @@ PORTNAME= libfame PORTVERSION= 0.9.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= SF/fame/${PORTNAME}/${PORTVERSION} Added: head/multimedia/libfame/files/patch-src__half_mmx.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libfame/files/patch-src__half_mmx.h Mon Dec 1 00:08:18 2014 (r373697) @@ -0,0 +1,11 @@ +--- src/half_mmx.h.orig 2002-04-30 22:04:02.000000000 +0400 ++++ src/half_mmx.h 2014-12-01 01:08:04.000000000 +0300 +@@ -18,7 +18,7 @@ + */ + /**************************** half-pixel interpolation ***********************/ + +-static short const _mmx_one[] = { 1, 1, 1, 1 }; ++short const _mmx_one[] = { 1, 1, 1, 1 }; + + static void inline mmx_interpolate(unsigned char **ref, + int pitch,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412010008.sB108IFG070173>