summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2017-09-20lib/icu/Compare: add fallback using strcasecmp() and strcasestr()Max Kellermann
Our IcuCaseFold() fallback using strxfrm() is not actually case insensitive. This commit fixes the problem by switching to strcasecmp(). That function is not guaranteed to support UTF-8, but it's the best we can do in this sparse situation. Closes #111
2017-08-31increment version number to 0.20.11Max Kellermann
2017-06-15increment version number to 0.20.10Max Kellermann
2017-05-29increment version number to 0.20.9Max Kellermann
2017-05-16increment version number to 0.20.8Max Kellermann
2017-03-16configure.ac: prepare for 0.20.7Max Kellermann
2017-03-01configure.ac: prepare for 0.20.6Max Kellermann
2017-02-09configure.ac: don't require libsidutils when building with libsidplayfpMax Kellermann
The libsidplayfp fork has merged libsidutils into the main library. The libsidutils we used to link with was part of the original libsidplay project.
2017-02-06configure.ac: prepare for 0.20.5Max Kellermann
2017-01-27configure.ac: prepare for 0.20.4Max Kellermann
2017-01-16configure.ac: prepare for 0.20.3Max Kellermann
2017-01-10configure.ac: prepare for 0.20.2Max Kellermann
2017-01-08storage/http: new storage pluginMax Kellermann
2017-01-05configure.ac: prepare for 0.20.1Max Kellermann
2016-12-26configure.ac: use MPD_AUTO for libsndio and HaikuMax Kellermann
2016-12-13Merge tag 'v0.19.21'Max Kellermann
release v0.19.21
2016-12-13systemd: add user unitMax Kellermann
The user unit omits the "ProtectKernelModules" setting which fails with modular kernels: Failed at step CAPABILITIES spawning /usr/bin/mpd: Operation not permitted It is unfortunate that systemd (version 232) is unable to reduce its own capabilities, because this requires us to split system and user units. https://bugs.musicpd.org/view.php?id=4608
2016-12-13systemd: add "system" sub directoryMax Kellermann
2016-12-13configure.ac: prepare for 0.19.21Max Kellermann
2016-12-09release v0.19.20v0.19.20Max Kellermann
2016-11-18configure.ac: enable C++14Max Kellermann
2016-09-27configure.ac: prepare for 0.19.20Max Kellermann
2016-08-15configure.ac: prepare for 0.19.19Max Kellermann
2016-07-29Merge branch 'v0.19.x'Max Kellermann
2016-07-29decoder/sidplay: allow building with libsidplayfp instead of libsidplay2Max Kellermann
https://bugs.musicpd.org/view.php?id=4558
2016-07-29configure.ac: detect libsidplay2 and related with pkg-configMax Kellermann
The comment about requiring libtool from 7 years ago is obsolete these days.
2016-07-29decoder/sidplay: use class SidDatabaseMax Kellermann
Remove our own songlength database parser.
2016-07-27configure.ac: prepare for 0.19.18Max Kellermann
2016-07-04configure.ac: use $have_ogg, not $enable_oggMax Kellermann
The latter doesn't exist, and this broke Vorbis-only builds.
2016-07-01configure.ac: prepare for 0.19.17Max Kellermann
2016-06-22Add sndio output pluginDimitris Papastamos
2016-05-14decoder/vorbis: reimplement using class OggDecoderMax Kellermann
Use libvorbis instead of libvorbisfile, which gives us more control over the decoding process.
2016-05-03{de,en}coder/{vorbis,flac,opus}: move several libraries to lib/xiph/Max Kellermann
2016-05-03configure.ac: enable HAVE_XIPH if Vorbis/FLAC encoder is enabledMax Kellermann
2016-05-03configure.ac: detect liboggMax Kellermann
Will be needed to compile libxiph.a.
2016-05-03configure.ac: improve HAVE_XIPH declaration, add HAVE_OGGMax Kellermann
2016-05-02configure.ac: don't suppress GLib warnings by changing -I to -isystemMax Kellermann
This is a kludge which may break system include path order, see https://bugs.musicpd.org/view.php?id=4524
2016-05-02configure.ac: prepare for 0.19.16Max Kellermann
2016-03-30configure.ac: prepare for 0.19.15Max Kellermann
2016-03-01configure.ac: prepare for 0.19.14Max Kellermann
2016-02-23Merge tag 'v0.19.13'Max Kellermann
release v0.19.13
2016-02-23configure.ac, unix/Daemon: check for initgroups() at configure timeMax Kellermann
The initgroups() manpage says we need to check for _BSD_SOURCE. The thing is that glibc deprecated this macro, and doesn't define it anymore, effectively breaking all MPD supplementary groups. The real fix is to check for initgroups() availability at configure time, instead of relying on the deprecated _BSD_SOURCE macro.
2016-02-19configure.ac: prepare for 0.19.13Max Kellermann
2015-12-16configure.ac: don't disable C++ exceptionsMax Kellermann
We may start using C++ exceptions for error handling soon.
2015-11-10configure.ac: prepare for 0.19.12Max Kellermann
2015-10-16configure.ac: prepare for 0.19.11Max Kellermann
2015-09-30configure.ac: remove -lstdc++ from fallback GME_LIBSMax Kellermann
This should not be necessary if libgme was built properly, and it may break the build with libc++.
2015-09-17output: add native Haiku audio output and mixer supportFrançois Revol
Also uses the notification system to display tags.
2015-09-17configure: add tests for Haiku tools (rc, xres)François Revol
2015-09-17configure.ac: check for socket() in libnetwork for HaikuFrançois Revol