diff options
Diffstat (limited to 'audio/spiralsynthbaby/files/patch-SpiralSoundMidi_C')
-rw-r--r-- | audio/spiralsynthbaby/files/patch-SpiralSoundMidi_C | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/spiralsynthbaby/files/patch-SpiralSoundMidi_C b/audio/spiralsynthbaby/files/patch-SpiralSoundMidi_C new file mode 100644 index 000000000000..4c29f82a0c23 --- /dev/null +++ b/audio/spiralsynthbaby/files/patch-SpiralSoundMidi_C @@ -0,0 +1,13 @@ +SpiralSound/Midi.C:54: `O_SYNC' undeclared (first use this function) + +--- SpiralSound/Midi.C.orig Sun Nov 26 07:52:41 2000 ++++ SpiralSound/Midi.C Wed Dec 6 14:22:58 2000 +@@ -51,7 +51,7 @@ + { + if (!SpiralInfo::WANTMIDI) return; + +- m_MidiFd = open(SpiralInfo::MIDIFILE.c_str(),O_RDONLY|O_SYNC); ++ m_MidiFd = open(SpiralInfo::MIDIFILE.c_str(),O_RDONLY); + + pipe(m_Pipefd); + fcntl(m_Pipefd[0],F_SETFL,O_NONBLOCK); |