summaryrefslogtreecommitdiff
path: root/pkg/alsa-lib/alsa
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-06-27 01:37:07 -0700
committerMichael Forney <mforney@mforney.org>2021-06-27 01:51:57 -0700
commitcc1f4c24778bfbd2a7d28f32661009deaeecfbf5 (patch)
tree95af61a17fd56261f782f7db767dc9aabc25c617 /pkg/alsa-lib/alsa
parentfccac025c366b0983c1ecc9eba12547c04331d50 (diff)
alsa-lib: Update to 1.2.5.1
Diffstat (limited to 'pkg/alsa-lib/alsa')
-rw-r--r--pkg/alsa-lib/alsa/version.h9
1 files changed, 4 insertions, 5 deletions
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"