mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Merge 3.4.
This commit is contained in:
commit
fc452518e6
3 changed files with 9 additions and 5 deletions
|
|
@ -39,8 +39,8 @@
|
|||
#include "memory.h"
|
||||
|
||||
|
||||
#if MPD_MAJOR_VERSION != 2
|
||||
#error "libmpdec major version 2 required"
|
||||
#if !defined(MPD_VERSION_HEX) || MPD_VERSION_HEX < 0x02040100
|
||||
#error "libmpdec version >= 2.4.1 required"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -108,9 +108,13 @@ MPD_PRAGMA(MPD_HIDE_SYMBOLS_START)
|
|||
|
||||
#define MPD_MAJOR_VERSION 2
|
||||
#define MPD_MINOR_VERSION 4
|
||||
#define MPD_MICRO_VERSION 0
|
||||
#define MPD_MICRO_VERSION 1
|
||||
|
||||
#define MPD_VERSION "2.4.0"
|
||||
#define MPD_VERSION "2.4.1"
|
||||
|
||||
#define MPD_VERSION_HEX ((MPD_MAJOR_VERSION << 24) | \
|
||||
(MPD_MINOR_VERSION << 16) | \
|
||||
(MPD_MICRO_VERSION << 8))
|
||||
|
||||
const char *mpd_version(void);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue