aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* configure.ac: remove -lstdc++ from fallback GME_LIBSMax Kellermann2015-09-301-1/+1
| | | | | This should not be necessary if libgme was built properly, and it may break the build with libc++.
* output: add native Haiku audio output and mixer supportFrançois Revol2015-09-171-0/+19
| | | | Also uses the notification system to display tags.
* configure: add tests for Haiku tools (rc, xres)François Revol2015-09-171-0/+4
|
* configure.ac: check for socket() in libnetwork for HaikuFrançois Revol2015-09-171-1/+1
|
* configure.ac: remove GLib optionMax Kellermann2015-06-271-22/+0
| | | | Not used anymore.
* configure.ac: add option to disable iconv()Max Kellermann2015-06-271-1/+11
|
* configure.ac: make libicu "auto" by defaultMax Kellermann2015-06-271-7/+3
|
* lib/icu/Converter: add iconv() implementationMax Kellermann2015-06-261-0/+4
|
* fs/Glob: use fnmatch() if availableMax Kellermann2015-06-221-0/+1
|
* configure.ac: support libsystemd (instead of the older libsystemd-daemon)Max Kellermann2015-03-201-3/+10
|
* fs/Traits: enable _UNICODE on WindowsMax Kellermann2015-03-051-0/+1
| | | | | Use wchar_t for everything on Windows. Solves a lot of filesystem charset problems.
* configure.ac: enable STRICT mode on WindowsMax Kellermann2015-02-251-0/+1
|
* configure.ac: raise protocol version to 0.20.0Max Kellermann2015-02-061-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.
* Merge branch 'v0.19.x'Max Kellermann2015-01-261-5/+1
|\
| * Merge branch 'v0.18.x' into v0.19.xMax Kellermann2015-01-261-14/+0
| |\
| | * {playlist,input}/despotify: remove defunct pluginMax Kellermann2015-01-261-14/+0
| | |
| | * configure.ac: prepare for 0.18.23Max Kellermann2015-01-231-2/+2
| | |
| | * configure.ac: prepare for 0.18.22Max Kellermann2014-12-261-2/+2
| | |
| | * configure.ac: prepare for 0.18.21Max Kellermann2014-12-151-2/+2
| | |
| | * configure.ac: prepare for 0.18.20Max Kellermann2014-12-081-2/+2
| | |
| | * configure.ac: prepare for 0.18.19Max Kellermann2014-11-241-2/+2
| | |
| | * configure.ac: prepare for 0.18.1Max Kellermann2014-11-101-2/+2
| | |
| | * configure.ac: show DSD in resultMax Kellermann2014-11-021-0/+1
| | |
| | * configure.ac: prepare for 0.18.17Max Kellermann2014-11-021-2/+2
| | |
| * | Test the existence of strndup(3) before using it.PHO2015-01-261-0/+1
| | | | | | | | | | | | This can eliminate the ad-hoc "#ifdef WIN32" and can also support other platforms lacking it as well (including Darwin 9).
| * | configure.ac: prepare for 0.19.9Max Kellermann2015-01-161-2/+2
| | |
| * | configure.ac: prepare for 0.19.8Max Kellermann2014-12-231-2/+2
| | |
| * | configure.ac: prepare for 0.19.7Max Kellermann2014-12-091-2/+2
| | |
| * | configure.ac: prepare for 0.19.6Max Kellermann2014-11-281-2/+2
| | |
* | | fs/io/FileOutputStream: use O_TMPFILE if availableMax Kellermann2015-01-061-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.
* | | configure.ac: add macro MPD_DEFINE_CONDITIONALMax Kellermann2014-12-221-81/+37
| | |
* | | configure.ac: use MPD_ENABLE_AUTO_PKG_LIB for libgmeMax Kellermann2014-12-221-11/+4
| | |
* | | configure.ac: remove redundant declaration "HAVE_ISO9660"Max Kellermann2014-12-221-3/+0
| | |
* | | sticker/Database: require SQLite 3.7.3Max Kellermann2014-12-121-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.
* | | configure.ac: use MPD_ENABLE_AUTO_LIB for libfaadMax Kellermann2014-12-091-3/+2
| | |
* | | configure.ac: add macro MPD_ENABLE_AUTO_LIBMax Kellermann2014-12-091-45/+8
| | |
* | | configure.ac: use AC_CHECK_FUNCS for pthread_setname_np()Max Kellermann2014-12-091-6/+2
| | | | | | | | | | | | | | | Don't assume "-lpthread". Just use PTHREAD_CFLAGS, as determined by AX_PTHREAD.
* | | configure.ac: check for pthread before librtMax Kellermann2014-12-091-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.
* | | configure.ac: move --with-tremor declaration downMax Kellermann2014-12-091-5/+5
| | |
* | | configure.ac: inherit existing TREMOR_CFLAGS and TREMOR_LIBSMax Kellermann2014-12-091-22/+12
| | | | | | | | | | | | | | | Replaces the old options --with-tremor-libraries and --with-tremor-includes.
* | | configure.ac: reset tremor_prefixMax Kellermann2014-12-091-0/+1
| | |
* | | configure.ac: make failure to find libvorbisidec fatalMax Kellermann2014-12-091-4/+2
| | |
* | | configure.ac: use AC_CHECK_FUNC for Tremor checkMax Kellermann2014-12-091-1/+1
| | | | | | | | | | | | | | | Don't imply the library's name is "vorbisidec"; use whatever we found inside TREMOR_LIBS.
* | | m4/mpd_with_flags: add macro MPD_WITH_FLAGSMax Kellermann2014-12-091-8/+4
| | |
* | | configure.ac: improve description for --enable-id3Max Kellermann2014-12-091-1/+1
| | |
* | | src/win32: move resources to win32/Max Kellermann2014-12-091-1/+1
| | |
* | | configure.ac: add option to disable CUEMax Kellermann2014-12-081-0/+6
| | |
* | | playlist/soundcloud: drop support for libyajl1Max Kellermann2014-12-051-4/+1
| | | | | | | | | | | | Require the version 2 which has a more sane API.
* | | configure.ac: require GLib 2.32 (if enabled)Max Kellermann2014-12-051-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.
* | | configure.ac: make GLib optional by defaultMax Kellermann2014-12-051-5/+11
| | | | | | | | | | | | Only very few (minor) features still depend on GLib.