diff options
author | Matthias Dahl <matt2000@users.sourceforge.net> | 2002-04-27 22:11:12 +0000 |
---|---|---|
committer | Matthias Dahl <matt2000@users.sourceforge.net> | 2002-04-27 22:11:12 +0000 |
commit | 351c466a6753a03162f67356d554940f39a4187a (patch) | |
tree | 801ae36c1b81577db612436a4afd7ea5b834731f | |
parent | 37e46df02f2b66e3fb9de98403ac17f4416d94f9 (diff) | |
download | xine-lib-351c466a6753a03162f67356d554940f39a4187a.tar.gz xine-lib-351c466a6753a03162f67356d554940f39a4187a.tar.bz2 |
Just in case something goes wrong, stop with a handy error message.
CVS patchset: 1787
CVS date: 2002/04/27 22:11:12
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 3aa136877..513cd5c89 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.51 2002/04/27 14:04:53 f1rmb Exp $ + * $Id: audio_alsa_out.c,v 1.52 2002/04/27 22:11:12 matt2000 Exp $ */ #ifdef HAVE_CONFIG_H @@ -46,6 +46,8 @@ #include <alsa/asoundlib.h> #elif HAVE_SYS_ASOUNDLIB_H #include <sys/asoundlib.h> +#else +#error "required asoundlib.h neither in sys/ nor alsa/ - unable to compile." #endif #include <sys/ioctl.h> |