diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-15 02:32:41 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-03-15 02:32:41 +0000 |
commit | adc8c20187263c53922e97e9a9c357337f2ed7b2 (patch) | |
tree | 1ee70ef9d8fa66640839c03245d980c5b22fbb66 /media-sound/amsynth/files | |
parent | Initial commit to close #22217. Ebuild by myself and Patrick Kursawe <phospha... (diff) | |
download | historical-adc8c20187263c53922e97e9a9c357337f2ed7b2.tar.gz historical-adc8c20187263c53922e97e9a9c357337f2ed7b2.tar.bz2 historical-adc8c20187263c53922e97e9a9c357337f2ed7b2.zip |
Added patch from bug #44696 to fix missing declaration of pthread_kill.
Diffstat (limited to 'media-sound/amsynth/files')
-rw-r--r-- | media-sound/amsynth/files/amsynth-pthread.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/media-sound/amsynth/files/amsynth-pthread.patch b/media-sound/amsynth/files/amsynth-pthread.patch new file mode 100644 index 000000000000..e0d9d6e20e6f --- /dev/null +++ b/media-sound/amsynth/files/amsynth-pthread.patch @@ -0,0 +1,10 @@ +--- src/main.cc.old 2004-03-14 13:45:10.350579816 -0600 ++++ src/main.cc 2004-03-14 13:45:39.107208144 -0600 +@@ -7,6 +7,7 @@ + + #include <gtk--/main.h> + #include <pthread.h> ++#include <signal.h> + #include <iostream> + #include <fstream> + #include <unistd.h> |