diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-06-08 14:55:35 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-06-08 14:55:35 +0100 |
commit | fc625b517fdd26f2deccc4693197b4d26b86d3cd (patch) | |
tree | edbcc06f3ad896ccca70aa47cad2731974258e8e /src/audio_out/audio_alsa_out.c | |
parent | c5892c4568703b07971196cff9d3d0ee3657e0eb (diff) | |
download | xine-lib-fc625b517fdd26f2deccc4693197b4d26b86d3cd.tar.gz xine-lib-fc625b517fdd26f2deccc4693197b4d26b86d3cd.tar.bz2 |
Add two missing alloca.h includes and clean up one other.
Diffstat (limited to 'src/audio_out/audio_alsa_out.c')
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index ce3e7fb2b..3aef7978d 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -41,7 +41,9 @@ #include <stdlib.h> #include <fcntl.h> #include <math.h> +#ifdef HAVE_ALLOCA_H #include <alloca.h> +#endif #define ALSA_PCM_NEW_HW_PARAMS_API #define ALSA_PCM_NEW_SW_PARAMS_API |