summaryrefslogtreecommitdiff
path: root/pkg/alsa-lib/alsa/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/alsa-lib/alsa/version.h')
-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"