diff options
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); |