This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Hack against a startup race in the Spotify linux client, which makes it go | |
| * "Can't play the current song" for every song in >80% of runs. | |
| * | |
| * Compile: gcc -O2 -fPIC -shared -s -o spotifix.so spotifix.c | |
| * Run: LD_PRELOAD=spotifix.so spotify | |
| * | |
| * This program is in the public domain. To the extent possible under law, the | |
| * creator of this work has waived all copyright and related or neighboring | |
| * rights to this work. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Hack against mislinked crashing Qt5 applications on Void Linux x86_64. See: | |
| * | |
| * https://github.com/voidlinux/void-packages/issues/12328 | |
| * https://github.com/voidlinux/void-packages/issues/13161 | |
| * | |
| * This program is in the public domain. To the extent possible under law, the | |
| * creator of this work has waived all copyright and related or neighboring | |
| * rights to this work. | |
| */ |