diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-18 21:38:16 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-18 21:38:16 +0000 |
commit | a785a3e404bdba9e901431cf9d2e047e8d4b4c1a (patch) | |
tree | c31784d3351c1c9728af1fc6a4bf300b5ef02397 /src/audio_out/audio_alsa_out.c | |
parent | 0cc3c12037389df276f5233ea5d5bcd7929ddc18 (diff) | |
download | xine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.gz xine-lib-a785a3e404bdba9e901431cf9d2e047e8d4b4c1a.tar.bz2 |
Split alsa drivers, more checks about versions. Made xine lib c++ compliant.
CVS patchset: 308
CVS date: 2001/07/18 21:38:16
Diffstat (limited to 'src/audio_out/audio_alsa_out.c')
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 430aaeace..23632c96d 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -24,7 +24,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.11 2001/06/30 23:09:25 guenter Exp $ + * $Id: audio_alsa_out.c,v 1.12 2001/07/18 21:38:16 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -42,8 +42,6 @@ #include <sys/ioctl.h> #include <inttypes.h> -#if (SND_LIB_MAJOR >= 0) && (SND_LIB_MINOR >= 9) - #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) #define error(...) do {\ fprintf(stderr, "XINE lib %s:%d:(%s) ", __FILE__, __LINE__, __FUNCTION__); \ @@ -723,5 +721,3 @@ static ao_info_t ao_info_alsa = { ao_info_t *get_audio_out_plugin_info() { return &ao_info_alsa; } - -#endif /*(SND_LIB_MAJOR >= 0) && (SND_LIB_MINOR >= 9) */ |