diff options
author | nox <nox@FreeBSD.org> | 2012-09-02 23:04:58 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2012-09-02 23:04:58 +0800 |
commit | f80bea26b8ad56d55e79d1ef833c311a9baf8b5d (patch) | |
tree | 89d8ac32cec5ba94370eefdf0f164bddc7aa2a2d /multimedia/vlc | |
parent | e2b4d5f44a874c67aad2251224b314caceee3404 (diff) | |
download | freebsd-ports-gnome-f80bea26b8ad56d55e79d1ef833c311a9baf8b5d.tar.gz freebsd-ports-gnome-f80bea26b8ad56d55e79d1ef833c311a9baf8b5d.tar.zst freebsd-ports-gnome-f80bea26b8ad56d55e79d1ef833c311a9baf8b5d.zip |
- Actually change MAINTAINER to multimedia@ [1]
- Add --disable-mmx to i386 case too as I got a report --disable-sse
was not enough for at least one guy.
Approved by: jsa (previous maintainer) [1]
Noticed by: wxs [1]
Diffstat (limited to 'multimedia/vlc')
-rw-r--r-- | multimedia/vlc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 735dd5af4ef1..d02a61d651c8 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -15,7 +15,7 @@ MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSIO ftp://ftp.crans.org/pub/videolan/${PORTNAME}/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION:S/p/-pre/} -MAINTAINER= jsa@FreeBSD.org +MAINTAINER= multimedia@FreeBSD.org COMMENT= Qt4 based multimedia player and streaming server LICENSE= GPLv2 @@ -194,8 +194,9 @@ IGNORE= base clang version too old, set NO_IGNORE to override CONFIGURE_ARGS+=--enable-altivec # VLC's config script doesn't know to do this .endif +# sometimes(?) misdetected causing build failure .if ${ARCH} == "i386" -CONFIGURE_ARGS+=--disable-sse # sometimes(?) misdetected causing build failure +CONFIGURE_ARGS+=--disable-sse --disable-mmx .endif # End OS specific hacks |