Merge branch 'v0.21.x'
This commit is contained in:
commit
84784badce
44
.travis.yml
44
.travis.yml
|
@ -23,6 +23,50 @@ matrix:
|
||||||
env:
|
env:
|
||||||
- MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
|
- MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
|
||||||
|
|
||||||
|
# Ubuntu Bionic (18.04) with GCC 7 on big-endian
|
||||||
|
- os: linux
|
||||||
|
arch: s390x
|
||||||
|
dist: bionic
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources:
|
||||||
|
- sourceline: 'ppa:deadsnakes/ppa' # for Python 3.7 (required by Meson)
|
||||||
|
packages:
|
||||||
|
- libgtest-dev
|
||||||
|
- libboost-dev
|
||||||
|
- python3.6
|
||||||
|
- python3-urllib3
|
||||||
|
- ninja-build
|
||||||
|
before_install:
|
||||||
|
- wget https://bootstrap.pypa.io/get-pip.py
|
||||||
|
- /usr/bin/python3.6 get-pip.py --user
|
||||||
|
install:
|
||||||
|
- /usr/bin/python3.6 $HOME/.local/bin/pip install --user meson
|
||||||
|
env:
|
||||||
|
- MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
|
||||||
|
|
||||||
|
# Ubuntu Bionic (18.04) with GCC 7 on ARM64
|
||||||
|
- os: linux
|
||||||
|
arch: arm64
|
||||||
|
dist: bionic
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources:
|
||||||
|
- sourceline: 'ppa:deadsnakes/ppa' # for Python 3.7 (required by Meson)
|
||||||
|
packages:
|
||||||
|
- libgtest-dev
|
||||||
|
- libboost-dev
|
||||||
|
- python3.6
|
||||||
|
- python3-urllib3
|
||||||
|
- ninja-build
|
||||||
|
before_install:
|
||||||
|
- wget https://bootstrap.pypa.io/get-pip.py
|
||||||
|
- /usr/bin/python3.6 get-pip.py --user
|
||||||
|
install:
|
||||||
|
- /usr/bin/python3.6 $HOME/.local/bin/pip install --user meson
|
||||||
|
env:
|
||||||
|
- MATRIX_EVAL="export PATH=\$HOME/.local/bin:\$PATH"
|
||||||
|
|
||||||
# Ubuntu Trusty (16.04) with GCC 6
|
# Ubuntu Trusty (16.04) with GCC 6
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
|
|
3
NEWS
3
NEWS
|
@ -30,6 +30,9 @@ ver 0.22 (not yet released)
|
||||||
* switch to C++17
|
* switch to C++17
|
||||||
- GCC 7 or clang 4 (or newer) recommended
|
- GCC 7 or clang 4 (or newer) recommended
|
||||||
|
|
||||||
|
ver 0.21.19 (not yet released)
|
||||||
|
* fix build failure with clang 10
|
||||||
|
|
||||||
ver 0.21.18 (2019/12/24)
|
ver 0.21.18 (2019/12/24)
|
||||||
* protocol
|
* protocol
|
||||||
- work around Mac OS X bug in the ISO 8601 parser
|
- work around Mac OS X bug in the ISO 8601 parser
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.musicpd"
|
package="org.musicpd"
|
||||||
android:installLocation="auto"
|
android:installLocation="auto"
|
||||||
android:versionCode="41"
|
android:versionCode="42"
|
||||||
android:versionName="0.21.18">
|
android:versionName="0.21.19">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="26"/>
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="26"/>
|
||||||
|
|
||||||
|
|
|
@ -145,7 +145,7 @@
|
||||||
|
|
||||||
#if GCC_CHECK_VERSION(7,0)
|
#if GCC_CHECK_VERSION(7,0)
|
||||||
#define gcc_fallthrough __attribute__((fallthrough))
|
#define gcc_fallthrough __attribute__((fallthrough))
|
||||||
#elif CLANG_CHECK_VERSION(10,0)
|
#elif CLANG_CHECK_VERSION(10,0) && defined(__cplusplus)
|
||||||
#define gcc_fallthrough [[fallthrough]]
|
#define gcc_fallthrough [[fallthrough]]
|
||||||
#else
|
#else
|
||||||
#define gcc_fallthrough
|
#define gcc_fallthrough
|
||||||
|
|
Loading…
Reference in New Issue