summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2002-05-27 11:14:20 +0000
committerTakashi Iwai <tiwai@suse.de>2002-05-27 11:14:20 +0000
commitea83756fbedaac3120a5af90db17afe7286b99d5 (patch)
tree8435edccf5aa8d7e1de96c44b865f30ade7097aa /utils
parentffda02123d2e421104932e2e15dccb9ae31a59da (diff)
downloadalsa-lib-ea83756fbedaac3120a5af90db17afe7286b99d5.tar.gz
- removed snd_seq_create_event from seq.h. it's deprecated.
the function itself still exists for compatibility but protected by DOC_HIDDEN. - a bit more comments about snd_seq_free_event. - since alsa.m4 used snd_seq_create_event for checking libasound, now it's replaced with snd_ctl_open.
Diffstat (limited to 'utils')
-rw-r--r--utils/alsa.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/alsa.m4 b/utils/alsa.m4
index 59d24c1e..70c87ec7 100644
--- a/utils/alsa.m4
+++ b/utils/alsa.m4
@@ -2,7 +2,7 @@ dnl Configure Paths for Alsa
dnl Some modifications by Richard Boulton <richard-alsa@tartarus.org>
dnl Christopher Lansdown <lansdoct@cs.alfred.edu>
dnl Jaroslav Kysela <perex@suse.cz>
-dnl Last modification: $Id: alsa.m4,v 1.21 2002/04/04 07:08:41 perex Exp $
+dnl Last modification: $Id: alsa.m4,v 1.22 2002/05/27 11:14:20 tiwai Exp $
dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate.
dnl enables arguments --with-alsa-prefix=
@@ -116,7 +116,7 @@ exit(0);
AC_LANG_RESTORE
dnl Now that we know that we have the right version, let's see if we have the library and not just the headers.
-AC_CHECK_LIB([asound], [snd_seq_create_event],,
+AC_CHECK_LIB([asound], [snd_ctl_open],,
[ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)])
alsa_found=no]
)