diff options
author | ahze <ahze@FreeBSD.org> | 2004-11-11 21:53:14 +0000 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2004-11-11 21:53:14 +0000 |
commit | be17930c3900581797afe737f11e5df0bf5315d7 (patch) | |
tree | edbfa9e3b3ecca0a864727cf8c06e24e82749118 /multimedia | |
parent | ed2cf4b5dbb0163fdef0d4f429e72519f4e5e4e6 (diff) | |
download | FreeBSD-ports-be17930c3900581797afe737f11e5df0bf5315d7.zip FreeBSD-ports-be17930c3900581797afe737f11e5df0bf5315d7.tar.gz |
Remove nvidia support for 4.x users (libXvMCNVIDIA.so is linked to libc.so.5)
Submitted by: Serge Gagnon <ser_gagnon@sympatico.ca>
Approved by: Thomas E. Zander (maintainer)
pav (co mentor)
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mplayer/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index 984468e..eb5bc32 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -31,7 +31,7 @@ # default: disabled # Enable nvidia XVMC support for nvidia video cards # Note: This is highly experimental at the moment and works only for -# MPEG1/2 using -vo xvmc -vc ffmpeg12mc +# MPEG1/2 using -vo xvmc -vc ffmpeg12mc on FreeBSD-5 # # WITHOUT_MENCODER # default: undefined @@ -303,6 +303,11 @@ TOOLFILES= calcbpp.pl countquant.pl \ .include <bsd.port.pre.mk> +# Can't run mplayer/nvidia-driver WITH_NVIDIA on FreeBSD 4.X now +.if ${OSVERSION} < 500000 && defined(WITH_NVIDIA) +IGNORE= does not run on 4.x when WITH_NVIDIA is defined +.endif + #Building of vidix dependent shared libs is only possible #on i386 at the moment. .if ${ARCH} == "i386" |