From cc1f4c24778bfbd2a7d28f32661009deaeecfbf5 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 27 Jun 2021 01:37:07 -0700 Subject: alsa-lib: Update to 1.2.5.1 --- pkg/alsa-lib/alsa/version.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'pkg/alsa-lib/alsa') diff --git a/pkg/alsa-lib/alsa/version.h b/pkg/alsa-lib/alsa/version.h index 3850ee35..bcedafad 100644 --- a/pkg/alsa-lib/alsa/version.h +++ b/pkg/alsa-lib/alsa/version.h @@ -4,12 +4,11 @@ #define SND_LIB_MAJOR 1 /**< major number of library version */ #define SND_LIB_MINOR 2 /**< minor number of library version */ -#define SND_LIB_SUBMINOR 4 /**< subminor number of library version */ +#define SND_LIB_SUBMINOR 5 /**< subminor number of library version */ #define SND_LIB_EXTRAVER 1000000 /**< extra version number, used mainly for betas */ /** library version */ -#define SND_LIB_VERSION ((SND_LIB_MAJOR<<16)|\ - (SND_LIB_MINOR<<8)|\ - SND_LIB_SUBMINOR) +#define SND_LIB_VER(maj, min, sub) (((maj)<<16)|((min)<<8)|(sub)) +#define SND_LIB_VERSION SND_LIB_VER(SND_LIB_MAJOR, SND_LIB_MINOR, SND_LIB_SUBMINOR) /** library version (string) */ -#define SND_LIB_VERSION_STR "1.2.4" +#define SND_LIB_VERSION_STR "1.2.5.1" -- cgit v1.2.3