Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-06-22 | fs/Glob: use fnmatch() if available | Max Kellermann | 1 | -0/+1 | |
2015-03-25 | configure.ac: prepare for 0.19.10 | Max Kellermann | 1 | -2/+2 | |
2015-03-20 | configure.ac: support libsystemd (instead of the older libsystemd-daemon) | Max Kellermann | 1 | -3/+10 | |
2015-03-05 | fs/Traits: enable _UNICODE on Windows | Max Kellermann | 1 | -0/+1 | |
Use wchar_t for everything on Windows. Solves a lot of filesystem charset problems. | |||||
2015-02-25 | configure.ac: enable STRICT mode on Windows | Max Kellermann | 1 | -0/+1 | |
2015-02-06 | configure.ac: raise protocol version to 0.20.0 | Max Kellermann | 1 | -1/+1 | |
A few protocol feature have been added to the 0.20 branch, and thus we should raise the protocol version in the server greeting. | |||||
2015-01-26 | Test the existence of strndup(3) before using it. | PHO | 1 | -0/+1 | |
This can eliminate the ad-hoc "#ifdef WIN32" and can also support other platforms lacking it as well (including Darwin 9). | |||||
2015-01-26 | {playlist,input}/despotify: remove defunct plugin | Max Kellermann | 1 | -14/+0 | |
2015-01-23 | configure.ac: prepare for 0.18.23 | Max Kellermann | 1 | -2/+2 | |
2015-01-16 | configure.ac: prepare for 0.19.9 | Max Kellermann | 1 | -2/+2 | |
2015-01-06 | fs/io/FileOutputStream: use O_TMPFILE if available | Max Kellermann | 1 | -1/+1 | |
The Linux feature allows writing new files to an invisible file, and then replace the old file. This preserves the old file if we get interrupted by some event. | |||||
2014-12-26 | configure.ac: prepare for 0.18.22 | Max Kellermann | 1 | -2/+2 | |
2014-12-23 | configure.ac: prepare for 0.19.8 | Max Kellermann | 1 | -2/+2 | |
2014-12-22 | configure.ac: add macro MPD_DEFINE_CONDITIONAL | Max Kellermann | 1 | -81/+37 | |
2014-12-22 | configure.ac: use MPD_ENABLE_AUTO_PKG_LIB for libgme | Max Kellermann | 1 | -11/+4 | |
2014-12-22 | configure.ac: remove redundant declaration "HAVE_ISO9660" | Max Kellermann | 1 | -3/+0 | |
2014-12-15 | configure.ac: prepare for 0.18.21 | Max Kellermann | 1 | -2/+2 | |
2014-12-12 | sticker/Database: require SQLite 3.7.3 | Max Kellermann | 1 | -1/+1 | |
SQLite 3.7.3 is the version shipped in Debian Squeeze (oldstable); should be old enough to be the required version. Drop the compatibility #ifdef. | |||||
2014-12-09 | configure.ac: use MPD_ENABLE_AUTO_LIB for libfaad | Max Kellermann | 1 | -3/+2 | |
2014-12-09 | configure.ac: add macro MPD_ENABLE_AUTO_LIB | Max Kellermann | 1 | -45/+8 | |
2014-12-09 | configure.ac: use AC_CHECK_FUNCS for pthread_setname_np() | Max Kellermann | 1 | -6/+2 | |
Don't assume "-lpthread". Just use PTHREAD_CFLAGS, as determined by AX_PTHREAD. | |||||
2014-12-09 | configure.ac: check for pthread before librt | Max Kellermann | 1 | -12/+12 | |
Works around a linker problem with some older glibc versions: if "-lrt" was used, then "-pthread" was implied, but only the symbols used by librt were available. This led to a linker error because pthread_atfork() was not found. So with "-lrt", autoconf decides that no pthread flag is necessary, but in the end fails due to pthread_atfork() missing. By checking for pthread before librt, we avoid this dependency problem. | |||||
2014-12-09 | configure.ac: move --with-tremor declaration down | Max Kellermann | 1 | -5/+5 | |
2014-12-09 | configure.ac: inherit existing TREMOR_CFLAGS and TREMOR_LIBS | Max Kellermann | 1 | -22/+12 | |
Replaces the old options --with-tremor-libraries and --with-tremor-includes. | |||||
2014-12-09 | configure.ac: reset tremor_prefix | Max Kellermann | 1 | -0/+1 | |
2014-12-09 | configure.ac: make failure to find libvorbisidec fatal | Max Kellermann | 1 | -4/+2 | |
2014-12-09 | configure.ac: use AC_CHECK_FUNC for Tremor check | Max Kellermann | 1 | -1/+1 | |
Don't imply the library's name is "vorbisidec"; use whatever we found inside TREMOR_LIBS. | |||||
2014-12-09 | m4/mpd_with_flags: add macro MPD_WITH_FLAGS | Max Kellermann | 1 | -8/+4 | |
2014-12-09 | configure.ac: improve description for --enable-id3 | Max Kellermann | 1 | -1/+1 | |
2014-12-09 | src/win32: move resources to win32/ | Max Kellermann | 1 | -1/+1 | |
2014-12-09 | configure.ac: prepare for 0.19.7 | Max Kellermann | 1 | -2/+2 | |
2014-12-08 | configure.ac: add option to disable CUE | Max Kellermann | 1 | -0/+6 | |
2014-12-08 | configure.ac: prepare for 0.18.20 | Max Kellermann | 1 | -2/+2 | |
2014-12-05 | playlist/soundcloud: drop support for libyajl1 | Max Kellermann | 1 | -4/+1 | |
Require the version 2 which has a more sane API. | |||||
2014-12-05 | configure.ac: require GLib 2.32 (if enabled) | Max Kellermann | 1 | -1/+1 | |
Since version 2.32, g_thread_init() is deprecated and a no-op. Let's upgrade that (optional) dependency so we can remove all those g_thread_init() calls. | |||||
2014-12-05 | configure.ac: make GLib optional by default | Max Kellermann | 1 | -5/+11 | |
Only very few (minor) features still depend on GLib. | |||||
2014-12-04 | decoder/sidplay: use class SidDatabase | Max Kellermann | 1 | -2/+0 | |
Remove our own songlength database parser. | |||||
2014-12-04 | util/StringUtil: add ToUpperASCII() | Max Kellermann | 1 | -3/+2 | |
Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib. | |||||
2014-12-04 | util/SplitString: new utility class | Max Kellermann | 1 | -6/+4 | |
Replaces GLib's g_strsplit(). | |||||
2014-12-02 | decoder/gme: simplify ParseContainerPath() | Max Kellermann | 1 | -2/+0 | |
Use simple string and path parsing functions instead of GLib's g_pattern_match(), which was used in a very clumsy way. | |||||
2014-12-01 | output/httpd/IcyMetaDataServer: use CopyString() instead of g_strlcpy() | Max Kellermann | 1 | -2/+0 | |
2014-12-01 | input/cdio_paranoia: use CopyString() instead of g_strlcpy() | Max Kellermann | 1 | -3/+2 | |
2014-11-28 | configure.ac: prepare for 0.19.6 | Max Kellermann | 1 | -2/+2 | |
2014-11-25 | decoder/mp4v2: remove because of incompatible license | Max Kellermann | 1 | -24/+0 | |
libmp4v2 is licensed under MPL 1.1, which is incompatible with GPLv2. Unfortunately, this means that we must remove the plugin. More information can be found in the Debian bug report: http://bugs.debian.org/767504 | |||||
2014-11-24 | configure.ac: prepare for 0.18.19 | Max Kellermann | 1 | -2/+2 | |
2014-11-24 | configure.ac: prepare for 0.19.5 | Max Kellermann | 1 | -2/+2 | |
2014-11-23 | configure.ac: add macro MPD_AUTO | Max Kellermann | 1 | -10/+6 | |
2014-11-22 | configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIB | Max Kellermann | 1 | -31/+4 | |
2014-11-21 | configure.ac: add macro MPD_ENABLE_AUTO_PKG | Max Kellermann | 1 | -381/+59 | |
Simplify the definition of many build options. | |||||
2014-11-21 | configure.ac: allow disabling syslog() support | Max Kellermann | 1 | -2/+13 | |