summaryrefslogtreecommitdiff
path: root/multimedia/mplayer-share/Makefile.cflags
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2016-02-07 13:34:33 +0000
committerleot <leot@pkgsrc.org>2016-02-07 13:34:33 +0000
commit31251607126ae6ef0ff22ae830c616e6448343fd (patch)
treec6760618fd8b2d7ae3975ca284db8443ec99df7e /multimedia/mplayer-share/Makefile.cflags
parentf46edce99ccd5ceeae1bf875e416987a13775f8a (diff)
downloadpkgsrc-31251607126ae6ef0ff22ae830c616e6448343fd.tar.gz
Update multimedia/{gmplayer,mencoder,mplayer,mplayer-share} to 1.2.1.
pkgsrc changes: o Switch all mplayer packages to use multimedia/ffmpeg2 instead of the version bundled with MPlayer. This will make maintainership of mplayer packages probably a bit easier (and it's particular relevant when dealing vulnerability issues). Discussed with wiz@. o Adjust CONFIGURE_ARGS and other part of the Makefile* to reflect the switch to multimedia/ffmpeg2. Changes: 1.2.1: Fixes: * misc GUI fixes * fix build regression in FreeBSD * fix many crashes with fuzzed files * fix errors for multichannels files and pulseaudio >= 6 Other: * building with system FFmpeg libs is possible without a local copy of of private FFmpeg headers * docs building does not require FFmpeg anymore * FFmpeg updated to 2.8.5
Diffstat (limited to 'multimedia/mplayer-share/Makefile.cflags')
-rw-r--r--multimedia/mplayer-share/Makefile.cflags12
1 files changed, 1 insertions, 11 deletions
diff --git a/multimedia/mplayer-share/Makefile.cflags b/multimedia/mplayer-share/Makefile.cflags
index cfc62ffb142..ae80111f5fa 100644
--- a/multimedia/mplayer-share/Makefile.cflags
+++ b/multimedia/mplayer-share/Makefile.cflags
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.cflags,v 1.7 2014/12/03 15:08:02 bouyer Exp $
+# $NetBSD: Makefile.cflags,v 1.8 2016/02/07 13:34:33 leot Exp $
# This must be included after everything else to truly clear ${CFLAGS}
# in the non-runtime-cpu-detection case. If ${CFLAGS} is non-empty, the
@@ -13,16 +13,6 @@
. include "../../mk/compiler.mk"
-# alignment flags for builtin ffmpeg
-# --yasm='' disables asm altogether for gcc < 4.2
-
-. if !empty(CC_VERSION:Mgcc-[123]*) || \
- !empty(CC_VERSION:Mgcc-4.[01].*)
-CONFIGURE_ARGS+= --yasm=''
-. elif !empty(CC_VERSION:Mgcc-4.*)
-CFLAGS+=-mstackrealign -mpreferred-stack-boundary=4
-. endif
-
. if !empty(CC_VERSION:Mgcc-4*)
CFLAGS+= -O3 -ffast-math -fomit-frame-pointer -mtune=pentiumpro
. else