aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-10-16configure.ac: prepare for 0.19.11Max Kellermann1-2/+2
2015-09-30configure.ac: remove -lstdc++ from fallback GME_LIBSMax Kellermann1-1/+1
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 Revol1-0/+19
Also uses the notification system to display tags.
2015-09-17configure: add tests for Haiku tools (rc, xres)François Revol1-0/+4
2015-09-17configure.ac: check for socket() in libnetwork for HaikuFrançois Revol1-1/+1
2015-06-27configure.ac: remove GLib optionMax Kellermann1-22/+0
Not used anymore.
2015-06-27configure.ac: add option to disable iconv()Max Kellermann1-1/+11
2015-06-27configure.ac: make libicu "auto" by defaultMax Kellermann1-7/+3
2015-06-26lib/icu/Converter: add iconv() implementationMax Kellermann1-0/+4
2015-06-22fs/Glob: use fnmatch() if availableMax Kellermann1-0/+1
2015-03-25configure.ac: prepare for 0.19.10Max Kellermann1-2/+2
2015-03-20configure.ac: support libsystemd (instead of the older libsystemd-daemon)Max Kellermann1-3/+10
2015-03-05fs/Traits: enable _UNICODE on WindowsMax Kellermann1-0/+1
Use wchar_t for everything on Windows. Solves a lot of filesystem charset problems.
2015-02-25configure.ac: enable STRICT mode on WindowsMax Kellermann1-0/+1
2015-02-06configure.ac: raise protocol version to 0.20.0Max Kellermann1-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-26Test the existence of strndup(3) before using it.PHO1-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 pluginMax Kellermann1-14/+0
2015-01-23configure.ac: prepare for 0.18.23Max Kellermann1-2/+2
2015-01-16configure.ac: prepare for 0.19.9Max Kellermann1-2/+2
2015-01-06fs/io/FileOutputStream: use O_TMPFILE if availableMax Kellermann1-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-26configure.ac: prepare for 0.18.22Max Kellermann1-2/+2
2014-12-23configure.ac: prepare for 0.19.8Max Kellermann1-2/+2
2014-12-22configure.ac: add macro MPD_DEFINE_CONDITIONALMax Kellermann1-81/+37
2014-12-22configure.ac: use MPD_ENABLE_AUTO_PKG_LIB for libgmeMax Kellermann1-11/+4
2014-12-22configure.ac: remove redundant declaration "HAVE_ISO9660"Max Kellermann1-3/+0
2014-12-15configure.ac: prepare for 0.18.21Max Kellermann1-2/+2
2014-12-12sticker/Database: require SQLite 3.7.3Max Kellermann1-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-09configure.ac: use MPD_ENABLE_AUTO_LIB for libfaadMax Kellermann1-3/+2
2014-12-09configure.ac: add macro MPD_ENABLE_AUTO_LIBMax Kellermann1-45/+8
2014-12-09configure.ac: use AC_CHECK_FUNCS for pthread_setname_np()Max Kellermann1-6/+2
Don't assume "-lpthread". Just use PTHREAD_CFLAGS, as determined by AX_PTHREAD.
2014-12-09configure.ac: check for pthread before librtMax Kellermann1-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-09configure.ac: move --with-tremor declaration downMax Kellermann1-5/+5
2014-12-09configure.ac: inherit existing TREMOR_CFLAGS and TREMOR_LIBSMax Kellermann1-22/+12
Replaces the old options --with-tremor-libraries and --with-tremor-includes.
2014-12-09configure.ac: reset tremor_prefixMax Kellermann1-0/+1
2014-12-09configure.ac: make failure to find libvorbisidec fatalMax Kellermann1-4/+2
2014-12-09configure.ac: use AC_CHECK_FUNC for Tremor checkMax Kellermann1-1/+1
Don't imply the library's name is "vorbisidec"; use whatever we found inside TREMOR_LIBS.
2014-12-09m4/mpd_with_flags: add macro MPD_WITH_FLAGSMax Kellermann1-8/+4
2014-12-09configure.ac: improve description for --enable-id3Max Kellermann1-1/+1
2014-12-09src/win32: move resources to win32/Max Kellermann1-1/+1
2014-12-09configure.ac: prepare for 0.19.7Max Kellermann1-2/+2
2014-12-08configure.ac: add option to disable CUEMax Kellermann1-0/+6
2014-12-08configure.ac: prepare for 0.18.20Max Kellermann1-2/+2
2014-12-05playlist/soundcloud: drop support for libyajl1Max Kellermann1-4/+1
Require the version 2 which has a more sane API.
2014-12-05configure.ac: require GLib 2.32 (if enabled)Max Kellermann1-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-05configure.ac: make GLib optional by defaultMax Kellermann1-5/+11
Only very few (minor) features still depend on GLib.
2014-12-04decoder/sidplay: use class SidDatabaseMax Kellermann1-2/+0
Remove our own songlength database parser.
2014-12-04util/StringUtil: add ToUpperASCII()Max Kellermann1-3/+2
Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib.
2014-12-04util/SplitString: new utility classMax Kellermann1-6/+4
Replaces GLib's g_strsplit().
2014-12-02decoder/gme: simplify ParseContainerPath()Max Kellermann1-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-01output/httpd/IcyMetaDataServer: use CopyString() instead of g_strlcpy()Max Kellermann1-2/+0