summaryrefslogtreecommitdiffstats
path: root/source/x/x11/patch/xf86-video-s3.patch
blob: 17d7e82973fd83e665b2ac285b002ff85eda54a9 (plain) (blame)
1
2
3
4
5
6
7
# Remove obsolete references to mibstore.h and miInitializeBackingStore():
grep -r -l '#include "mibstore.h"' * | while read file ; do
  sed -i "s/#include \"mibstore.h\"//g" $file
done
grep -r -l 'miInitializeBackingStore(pScreen);' | while read file ; do
  sed -i "s/miInitializeBackingStore(pScreen);//g" $file
done