aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2021-10-12 16:39:24 +0200
committerTakashi Iwai <tiwai@suse.de>2021-10-12 16:39:38 +0200
commit135f38646a9adeddc940f8b795b7a853ef61b023 (patch)
tree9683b64abfd33e8d8bbf902cb04ba684243051d1
parentb766ce58c0683d86450caa50fb8b588e9e7ad9a0 (diff)
downloadsalsa-lib-135f38646a9adeddc940f8b795b7a853ef61b023.tar.gz
Bump the default compat version to 1.2.5
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--README.md2
-rw-r--r--configure.ac8
2 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 2883379..7ca8b27 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ For enabling the support for the string buffer with snd_output_*()
function (e.g. used by PulseAudio), pass --enable-output-buffer option.
The alsa-library version to be compatible can be given explicitly via
---with-compat-version option. As default, 1.0.28 is set.
+--with-compat-version option. As default, 1.2.5 is set.
If the ALSA device files are not in /dev/snd, another directory can be
specified with the --with-alsa-devdir option.
diff --git a/configure.ac b/configure.ac
index 2fbd63b..ca835de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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.28)]),
- compatver="$withval", compatver="1.0.28")
+ [specify the compatible version with ALSA-lib (default=1.2.5)]),
+ compatver="$withval", compatver="1.2.5")
SND_LIB_VERSION="$compatver"
SND_LIB_MAJOR=1
-SND_LIB_MINOR=0
-SND_LIB_SUBMINOR=28
+SND_LIB_MINOR=2
+SND_LIB_SUBMINOR=5
SND_LIB_EXTRAVER=1000000
case "$compatver" in
*.*.*)