#ifndef MPG123_VERSION_H1#define MPG123_VERSION_H2/*3version: mpg123 distribution version45This is the main source of mpg123 distribution version information, parsed6by the build system for packaging.78copyright 2023 by the mpg123 project,9free software under the terms of the LGPL 2.110see COPYING and AUTHORS files in distribution or http://mpg123.org1112initially written by Thomas Orgis13*/1415// only single spaces as separator to ease parsing by build scripts16#define MPG123_MAJOR 117#define MPG123_MINOR 3318#define MPG123_PATCH 019// Don't get too wild with that to avoid confusing m4. No brackets.20// Also, it should fit well into a sane file name for the tarball.21#define MPG123_SUFFIX ""2223#define MPG123_VERSION_CAT_REALLY(a, b, c) #a "." #b "." #c24#define MPG123_VERSION_CAT(a, b, c) MPG123_VERSION_CAT_REALLY(a, b, c)2526#define MPG123_VERSION \27MPG123_VERSION_CAT(MPG123_MAJOR, MPG123_MINOR, MPG123_PATCH) MPG123_SUFFIX2829#endif303132