diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2007-07-29 10:43:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2007-07-29 10:43:08 +0000 |
commit | bae1f6e316da5f5df6feab8dbce35ac1ce76c23e (patch) | |
tree | 0ff06fd8dcc8da80ff78b6d5da4299f6726f57ad /media-sound/horgand/files | |
parent | Removed version that did not compile, Bug #182585. (diff) | |
download | historical-bae1f6e316da5f5df6feab8dbce35ac1ce76c23e.tar.gz historical-bae1f6e316da5f5df6feab8dbce35ac1ce76c23e.tar.bz2 historical-bae1f6e316da5f5df6feab8dbce35ac1ce76c23e.zip |
Version bump, fixing also bug 135469. Thanks to Jouni Rinne for reporting and Dominique Michel for ebuild ideas and patches.
Package-Manager: portage-2.1.3
Diffstat (limited to 'media-sound/horgand/files')
-rw-r--r-- | media-sound/horgand/files/digest-horgand-1.07 | 6 | ||||
-rw-r--r-- | media-sound/horgand/files/horgand-1.07-debug.patch | 84 |
2 files changed, 90 insertions, 0 deletions
diff --git a/media-sound/horgand/files/digest-horgand-1.07 b/media-sound/horgand/files/digest-horgand-1.07 new file mode 100644 index 000000000000..92d1205937bc --- /dev/null +++ b/media-sound/horgand/files/digest-horgand-1.07 @@ -0,0 +1,6 @@ +MD5 320a4696e4289f367eaa32484f791ff9 horgand-1.07.tar.gz 2457076 +RMD160 28dc9bbc180005429b5ad242b7adcedd04f831e2 horgand-1.07.tar.gz 2457076 +SHA256 78e2463854ab0782a7bbc05a7fa4c4bdb494b83992ca3df24b01677b6fcb44ae horgand-1.07.tar.gz 2457076 +MD5 2274141696d8cb163853b92c831fcff1 horgand_1.07-1.diff.gz 16947 +RMD160 41fedffb483f111319340f6b51674e4d7d1acee7 horgand_1.07-1.diff.gz 16947 +SHA256 7e1e9766d7da29d32c62df0828faee15ed39dc42d216e6ff2a144ec3e5bf6f98 horgand_1.07-1.diff.gz 16947 diff --git a/media-sound/horgand/files/horgand-1.07-debug.patch b/media-sound/horgand/files/horgand-1.07-debug.patch new file mode 100644 index 000000000000..9792e7388329 --- /dev/null +++ b/media-sound/horgand/files/horgand-1.07-debug.patch @@ -0,0 +1,84 @@ +--- src/organMIDIIn.C 2004-06-23 17:34:05.000000000 +0200 ++++ src/organMIDIIn.C 2006-09-22 22:38:53.000000000 +0200 +@@ -30,22 +30,26 @@ + { + + int l1; ++ printf("DEBUG: IN 1\n"); + snd_seq_event_t *midievent; +- ++ printf("DEBUG: IN 2\n"); + midievent = NULL; ++ printf("DEBUG: IN 3\n"); + snd_seq_event_input (MidiInPuerto[keIN].midi_in, &midievent); ++ printf("DEBUG: IN 4\n"); + if (midievent == NULL) + return; +- ++ printf("DEBUG: IN noreturn_5\n"); + + switch (midievent->type) + { + case SND_SEQ_EVENT_PITCHBEND: ++ printf("DEBUG: IN switch_1\n"); + pitch = (float) midievent->data.control.value / 8192.0; + break; + + case SND_SEQ_EVENT_PGMCHANGE: +- ++ printf("DEBUG: IN switch_2\n"); + + if ((midievent->data.control.value > 0) + && (midievent->data.control.value < 33)) +@@ -57,6 +61,7 @@ + + case SND_SEQ_EVENT_CONTROLLER: + ++ printf("DEBUG: IN switch_3\n"); + if (midievent->data.control.param == 1) + modulation = (float) midievent->data.control.value / 12.7; + +@@ -85,7 +90,8 @@ + + + case SND_SEQ_EVENT_NOTEON: +- ++ ++ printf("DEBUG: IN switch_4\n"); + if (midievent->data.note.velocity != 0) + { + for (l1 = 0; l1 < POLY; l1++) +@@ -135,6 +141,7 @@ + + case SND_SEQ_EVENT_NOTEOFF: + ++ printf("DEBUG: IN switch_5\n"); + vumvum = vum; + vum = 0; + for (l1 = 0; l1 < POLY; l1++) +--- src/main.C.orig 2006-09-22 22:41:42.000000000 +0200 ++++ src/main.C 2006-09-22 22:43:40.000000000 +0200 +@@ -52,17 +52,22 @@ + void * + thread1 (void *arg) + { ++ printf("DEBUG: thread_1\n"); + pon_realtime(); ++ printf("DEBUG: thread_1 realtime_on\n"); + while (Pexitprogram ==0) hor.midievents(1); ++ printf("DEBUG: thread_1 while ends\n"); + return (0); + }; + + void * + thread2 (void *arg) + { +- ++ printf("DEBUG: thread_2\n"); + pon_realtime(); ++ printf("DEBUG: thread_2 realtime_on\n"); + while (Pexitprogram ==0) hor.Alg1s(hor.PERIOD,0); ++ printf("DEBUG: thread_2 while ends\n"); + return(0); + + }; |