diff options
author | lioux <lioux@FreeBSD.org> | 2001-10-16 01:25:41 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-10-16 01:25:41 +0000 |
commit | cf62161d4692fc172750b288377061404c8ecb4a (patch) | |
tree | 4027fc82052aae1a95e7bbd84503d39c7bef459f /multimedia/mplayerxp/files/get-feat | |
parent | 1881c667c9e438744cc57372abe4466fe3017da1 (diff) | |
download | FreeBSD-ports-cf62161d4692fc172750b288377061404c8ecb4a.zip FreeBSD-ports-cf62161d4692fc172750b288377061404c8ecb4a.tar.gz |
o update to 0.50 final
o add several WITH_* options (specially DVD support :-)
o update WWW tag in DESCR
o update PKGMESSAGE
o update install-user script to handle new fonts from port
mplayer-fonts/Makefile rev 1.2
Submitted by: MAINTAINER
Diffstat (limited to 'multimedia/mplayerxp/files/get-feat')
-rw-r--r-- | multimedia/mplayerxp/files/get-feat | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/multimedia/mplayerxp/files/get-feat b/multimedia/mplayerxp/files/get-feat deleted file mode 100644 index 07deea5..0000000 --- a/multimedia/mplayerxp/files/get-feat +++ /dev/null @@ -1,18 +0,0 @@ -#This perl script will determine the supported CPU features -#of this machine, so the build of the correct decode plugins -#will do automatically - -@list=`cat /var/run/dmesg.boot|grep Feat`; -@features=("MMX","SSE","3DNow!","DSP"); -open (INC,">$ENV{TEMPDIR}/Makefile.inc"); -foreach $feature(@features) -{ - foreach $line(@list) - { - if ( $line =~ m/$feature/) - { - print INC "WITH_$feature = yes\n"; - } - } -} -close (INC); |