diff options
author | tsutsui <tsutsui@pkgsrc.org> | 2018-05-27 15:27:13 +0000 |
---|---|---|
committer | tsutsui <tsutsui@pkgsrc.org> | 2018-05-27 15:27:13 +0000 |
commit | bb8fbd138601f3e2ac12e742d3665ce5c969e3c6 (patch) | |
tree | 788bee210a7fb6eeee57dc0545badd3cd56b92e5 /multimedia/mencoder | |
parent | afa1146b825fab1ccf547731b54255f15f5c43c8 (diff) | |
download | pkgsrc-bb8fbd138601f3e2ac12e742d3665ce5c969e3c6.tar.gz |
mencoder, mplayer, gmplayer: avoid text relocations on NetBSD/i386 8.0.
* specify --disable-sse4 to avoid non-PIE asm ops in libmpcodecs/vf_ass.c
that cause text relocations on NetBSD/i386
* explicitly pull pkgsrc/multimedia/libass to avoid internal libass
(which seems usually enabled by configure's autodetect)
* specify -fpic in configure for NetBSD/i386 to enable __PIC__ blocks
in some sources
* while here, use -mtune rather than -mcpu for not only gcc4 but
also 5.x and later
Bump PKGREVISIONs. Ok'ed by wiz@ in PR pkg/53319.
Diffstat (limited to 'multimedia/mencoder')
-rw-r--r-- | multimedia/mencoder/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/mencoder/Makefile b/multimedia/mencoder/Makefile index 7f7d2a5786b..e0440c71268 100644 --- a/multimedia/mencoder/Makefile +++ b/multimedia/mencoder/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.67 2016/02/25 15:49:44 jperkin Exp $ +# $NetBSD: Makefile,v 1.68 2018/05/27 15:27:13 tsutsui Exp $ PKGNAME= mencoder-${MPLAYER_VERSION} +PKGREVISION= 1 COMMENT= Simple movie encoder for MPlayer-playable movies |