Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 1 | From 4350314c941489833a8baa930e16512e55f72a13 Mon Sep 17 00:00:00 2001 |
| 2 | From: Tanu Kaskinen <tanuk@iki.fi> |
| 3 | Date: Wed, 27 Jan 2016 13:22:38 +0200 |
| 4 | Subject: [PATCH] pph: include config.h from rate_speexrate.c |
| 5 | |
| 6 | Fixes compilation against libspeexdsp 1.2rc3. |
| 7 | |
| 8 | rate_speexrate.c includes speex_resampler.h, which depends on config.h |
| 9 | by referencing the HAVE_SPEEX_SPEEXDSP_TYPES_H macro. AFAIK it's not |
| 10 | a good idea to include config.h from headers (I don't know/remember |
| 11 | why, though), which is why I include config.h from rate_speexrate.c |
| 12 | instead of speex_resampler.h. |
| 13 | |
| 14 | Upstream-Status: Accepted [expected in 1.1.1] |
| 15 | |
| 16 | Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> |
| 17 | --- |
| 18 | pph/rate_speexrate.c | 1 + |
| 19 | 1 file changed, 1 insertion(+) |
| 20 | |
| 21 | diff --git a/pph/rate_speexrate.c b/pph/rate_speexrate.c |
| 22 | index 0a1325c..8fc4cef 100644 |
| 23 | --- a/pph/rate_speexrate.c |
| 24 | +++ b/pph/rate_speexrate.c |
| 25 | @@ -28,6 +28,7 @@ |
| 26 | POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | +#include "config.h" |
| 30 | #include <stdio.h> |
| 31 | #include <alsa/asoundlib.h> |
| 32 | #include <alsa/pcm_rate.h> |
| 33 | -- |
| 34 | 2.7.0.rc3 |
| 35 | |