summaryrefslogtreecommitdiffstats
path: root/source/x/x11/patch/xf86-video-geode.patch
blob: 6bbc3b34a7be585a66198bdab426a1033fcf22a0 (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(pScrn);' | while read file ; do
  sed -i "s/miInitializeBackingStore(pScrn);//g" $file
done