aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-09-30 15:26:49 +0200
committerTakashi Iwai <tiwai@suse.de>2008-09-30 15:26:49 +0200
commit0af741fd26b09b08be6c835408c5046ca4c54959 (patch)
treef91967882706072f193475e37cd10051266476f5
parent02ba6a96d1268fec8a3cd7415df23c2b1cdb90e0 (diff)
downloadsalsa-lib-0af741fd26b09b08be6c835408c5046ca4c54959.tar.gz
version 0.0.19 - alsa-lib 1.0.18 compatiblev0.0.19
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac8
2 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0386531..c8758ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Version 0.0.19:
+ * Fix return value of snd_ctl_subscribe_events()
+ * Fix snd_card_get_index() to parse the string "x,y" correctly
+ * Add snd_pcm_avail() and snd_pcm_avail_delay() to be compatible
+ with alsa-lib 1.0.18
+ * Mark snd_pcm_hwsync() as deprecated, as of alsa-lib 1.0.18
+
Version 0.0.18:
* Fix unclosable snd_rawmidi_open() (fix by Sam O'Connor)
diff --git a/configure.ac b/configure.ac
index eefeb3c..6e27c4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.59)
AC_INIT(src/control.c)
-AM_INIT_AUTOMAKE(salsa-lib, 0.0.18)
+AM_INIT_AUTOMAKE(salsa-lib, 0.0.19)
AC_PREFIX_DEFAULT(/usr)
dnl AC_CONFIG_HEADERS(src/config.h)
@@ -14,13 +14,13 @@ AC_HEADER_STDC
dnl Compatible version
AC_ARG_WITH(compat-version,
AS_HELP_STRING([--with-compat-version=VERSION],
- [specify the compatible version with ALSA-lib (default=1.0.16)]),
- compatver="$withval", compatver="1.0.16")
+ [specify the compatible version with ALSA-lib (default=1.0.18)]),
+ compatver="$withval", compatver="1.0.18")
SND_LIB_VERSION="$compatver"
SND_LIB_MAJOR=1
SND_LIB_MINOR=0
-SND_LIB_SUBMINOR=14
+SND_LIB_SUBMINOR=18
SND_LIB_EXTRAVER=1000000
case "$compatver" in
*.*.*)