diff options
author | riggs <riggs@FreeBSD.org> | 2015-12-29 17:15:26 +0800 |
---|---|---|
committer | riggs <riggs@FreeBSD.org> | 2015-12-29 17:15:26 +0800 |
commit | 3fc9a99eb2caf77a592c7f5ea409c2df2576f99c (patch) | |
tree | 131c2c408404fe3ce263b16aa6f0c04ab15a342a /multimedia/transcode/Makefile | |
parent | b2af06ac3aac86c4a4b85a7b548c9a75ee2f0bdb (diff) | |
download | freebsd-ports-gnome-3fc9a99eb2caf77a592c7f5ea409c2df2576f99c.tar.gz freebsd-ports-gnome-3fc9a99eb2caf77a592c7f5ea409c2df2576f99c.tar.zst freebsd-ports-gnome-3fc9a99eb2caf77a592c7f5ea409c2df2576f99c.zip |
Remove USE_GCC; add --disable-mmx on FreeBSD-10.1
PR: 202773
Submitted by: cyberbotx@cyberbotx.com (maintainer)
Reviewed by: riggs
Diffstat (limited to 'multimedia/transcode/Makefile')
-rw-r--r-- | multimedia/transcode/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/multimedia/transcode/Makefile b/multimedia/transcode/Makefile index 9fc934cc3d24..ed750af9248e 100644 --- a/multimedia/transcode/Makefile +++ b/multimedia/transcode/Makefile @@ -3,7 +3,7 @@ PORTNAME= transcode PORTVERSION= 1.1.7 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= multimedia MASTER_SITES= http://cdn.bitbucket.org/france/transcode-tcforge/downloads/ @@ -16,7 +16,6 @@ LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg USE_LDCONFIG= yes USES= gmake libtool pkgconfig tar:bzip2 -USE_GCC= any WANT_GNOME= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-oss @@ -115,6 +114,11 @@ V4L_CONFIGURE_ENABLE= v4l .include <bsd.port.pre.mk> +#Disable mmx on FreeBSD 10.1 due to a transient bug in clang +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && ${OSVERSION} < 1002000 +CONFIGURE_ARGS+= --disable-mmx +.endif + .if empty(ICONV_LIB) CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=no \ ac_cv_lib_iconv_libiconv_open=no |