mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
67886560b2
l/pulseaudio-12.1-x86_64-1.txz: Upgraded. l/utf8proc-2.1.1-x86_64-1.txz: Upgraded.
10 lines
516 B
Diff
10 lines
516 B
Diff
# 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
|
|
|
|
# Patch for xorg-server-1.20.x:
|
|
zcat $CWD/patch/xf86-video-tseng/xf86-video-tseng.xorg-server-1.20.x.diff.gz | patch -p1 --verbose || { touch ${SLACK_X_BUILD_DIR}/${PKGNAME}.failed ; continue ; }
|