Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/mpg123/src/version.h
4389 views
1
#ifndef MPG123_VERSION_H
2
#define MPG123_VERSION_H
3
/*
4
version: mpg123 distribution version
5
6
This is the main source of mpg123 distribution version information, parsed
7
by the build system for packaging.
8
9
copyright 2023 by the mpg123 project,
10
free software under the terms of the LGPL 2.1
11
see COPYING and AUTHORS files in distribution or http://mpg123.org
12
13
initially written by Thomas Orgis
14
*/
15
16
// only single spaces as separator to ease parsing by build scripts
17
#define MPG123_MAJOR 1
18
#define MPG123_MINOR 33
19
#define MPG123_PATCH 0
20
// Don't get too wild with that to avoid confusing m4. No brackets.
21
// Also, it should fit well into a sane file name for the tarball.
22
#define MPG123_SUFFIX ""
23
24
#define MPG123_VERSION_CAT_REALLY(a, b, c) #a "." #b "." #c
25
#define MPG123_VERSION_CAT(a, b, c) MPG123_VERSION_CAT_REALLY(a, b, c)
26
27
#define MPG123_VERSION \
28
MPG123_VERSION_CAT(MPG123_MAJOR, MPG123_MINOR, MPG123_PATCH) MPG123_SUFFIX
29
30
#endif
31
32