diff options
author | Brian Harring <ferringb@gentoo.org> | 2004-02-07 21:51:31 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2004-02-07 21:51:31 +0000 |
commit | 65e81ecb1e19dbc91d38b72edc226adc34f1e7ea (patch) | |
tree | 62a9d50b47da1fc5835f7c12fdd5af9894732045 /media-sound/pd/files | |
parent | Fix empty VERSION and PACKAGE, bug #39576. (Manifest recommit) (diff) | |
download | gentoo-2-65e81ecb1e19dbc91d38b72edc226adc34f1e7ea.tar.gz gentoo-2-65e81ecb1e19dbc91d38b72edc226adc34f1e7ea.tar.bz2 gentoo-2-65e81ecb1e19dbc91d38b72edc226adc34f1e7ea.zip |
closing out bug 39134, jack-audio-connection-kit causing pd-0.37 to bork in compilation. pd seems to be a rather cranky package... adding metadata.xml also.
Diffstat (limited to 'media-sound/pd/files')
-rw-r--r-- | media-sound/pd/files/pd-0.37.0-jack-fix.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/media-sound/pd/files/pd-0.37.0-jack-fix.patch b/media-sound/pd/files/pd-0.37.0-jack-fix.patch new file mode 100644 index 000000000000..18cd2385bbf8 --- /dev/null +++ b/media-sound/pd/files/pd-0.37.0-jack-fix.patch @@ -0,0 +1,23 @@ +diff -urN pd-0.37-0/src/s_audio_jack.c pd-0.37-0-fixed/src/s_audio_jack.c +--- pd-0.37-0/src/s_audio_jack.c 2003-08-19 14:13:03.000000000 -0500 ++++ pd-0.37-0-fixed/src/s_audio_jack.c 2004-02-03 08:14:56.000000000 -0600 +@@ -67,9 +67,8 @@ + } + + static int +-srate (jack_nframes_t srate, void *arg) ++jack_srate (jack_nframes_t srate, void *arg) + { +- printf ("jack: sample rate %ld/sec\n", srate); + sys_dacsr = srate; + return 0; + } +@@ -248,7 +247,7 @@ + the sample rate of the system changes. + */ + +- jack_set_sample_rate_callback (jack_client, srate, 0); ++ jack_set_sample_rate_callback (jack_client, jack_srate, 0); + + + /* tell the JACK server to call `jack_shutdown()' if |