summaryrefslogtreecommitdiffstats
path: root/multimedia/mplayerxp/files/get-feat
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/mplayerxp/files/get-feat')
-rw-r--r--multimedia/mplayerxp/files/get-feat18
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);
OpenPOWER on IntegriCloud