Summary: | multimedia/mplayer: i386 clang build error | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | anonymous <anonymous> | ||||||
Component: | Individual Port(s) | Assignee: | Alex Kozlov <ak> | ||||||
Status: | Closed FIXED | ||||||||
Severity: | Affects Only Me | ||||||||
Priority: | Normal | ||||||||
Version: | Latest | ||||||||
Hardware: | Any | ||||||||
OS: | Any | ||||||||
Attachments: |
|
Description
anonymous
2012-09-17 13:40:09 UTC
Maintainer of multimedia/mplayer, Please note that PR ports/171707 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171707 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) This is good. Let's commit this with a slight modification: @committer: Can you please put the additional configure args "--disable-mp3lib" into Makefile.shared instead of Makefile. This fixes the problem for mencoder as well. Thanks. Best, Riggs Hi Sorry for the delay. Can you please check and approve next patch? p.s. Do you plan to convert port to new options framework in the near future? I would be glad to help. -- Alex Author: ak Date: Wed Feb 13 10:39:13 2013 New Revision: 312152 URL: http://svnweb.freebsd.org/changeset/ports/312152 Log: - Fix build with clang [1] - Convert Makefile headers to new style PR: ports/171707 [1] Submitted by: anonymous <anonymous@gmail.com> Approved by: Thomas Zander <thomas.e.zander@googlemail.com> (maintainer) Modified: head/multimedia/mplayer/Makefile head/multimedia/mplayer/Makefile.options head/multimedia/mplayer/Makefile.shared Modified: head/multimedia/mplayer/Makefile ============================================================================== --- head/multimedia/mplayer/Makefile Wed Feb 13 10:24:15 2013 (r312151) +++ head/multimedia/mplayer/Makefile Wed Feb 13 10:39:13 2013 (r312152) @@ -1,9 +1,5 @@ -# New ports collection makefile for: mplayer -# Date created: 10 August 2001 -# Whom: Thomas E. Zander -# with lots of help from Vladimir Kushnir +# Created by: Thomas E. Zander with help from Vladimir Kushnir # $FreeBSD$ -# PORTNAME= mplayer PORTVERSION= ${MPLAYER_PORT_VERSION} @@ -96,7 +92,7 @@ CONFIGURE_ARGS+= --disable-directfb \ # Fix a problem with unknown assembly opcodes in embedded ffmpeg .if ${ARCH} == "ppc" -CONFIGURE_ARGS+= --disable-asm +CONFIGURE_ARGS+= --disable-asm .endif .include "${.CURDIR}/Makefile.options" Modified: head/multimedia/mplayer/Makefile.options ============================================================================== --- head/multimedia/mplayer/Makefile.options Wed Feb 13 10:24:15 2013 (r312151) +++ head/multimedia/mplayer/Makefile.options Wed Feb 13 10:39:13 2013 (r312152) @@ -52,7 +52,7 @@ CFLAGS+= -O3 -fomit-frame-pointer -ffast .endif #WITH_DEBUG #Supported architectures for clang -.if ${ARCH} == "amd64" +.if ${ARCH} == "i386" || ${ARCH} == "amd64" MPLAYER_CLANG_SUPPORTED_ARCH= yes .endif Modified: head/multimedia/mplayer/Makefile.shared ============================================================================== --- head/multimedia/mplayer/Makefile.shared Wed Feb 13 10:24:15 2013 (r312151) +++ head/multimedia/mplayer/Makefile.shared Wed Feb 13 10:39:13 2013 (r312152) @@ -39,6 +39,7 @@ CONFIGURE_ARGS= --cc="${CC}" \ --disable-liba52 \ --disable-alsa \ --disable-libbs2b \ + --disable-mp3lib \ --enable-ass-internal WANT_GNOME= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" Responsible Changed From-To: freebsd-ports-bugs->ak I'll take it. State Changed From-To: feedback->closed Committed. Thanks! |