aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* decoder/sidplay: use class SidDatabaseMax Kellermann2014-12-041-2/+0
| | | | Remove our own songlength database parser.
* util/StringUtil: add ToUpperASCII()Max Kellermann2014-12-041-3/+2
| | | | | Replaces g_ascii_strup() and allows building the Vorbis encoder without GLib.
* util/SplitString: new utility classMax Kellermann2014-12-041-6/+4
| | | | Replaces GLib's g_strsplit().
* decoder/gme: simplify ParseContainerPath()Max Kellermann2014-12-021-2/+0
| | | | | Use simple string and path parsing functions instead of GLib's g_pattern_match(), which was used in a very clumsy way.
* output/httpd/IcyMetaDataServer: use CopyString() instead of g_strlcpy()Max Kellermann2014-12-011-2/+0
|
* input/cdio_paranoia: use CopyString() instead of g_strlcpy()Max Kellermann2014-12-011-3/+2
|
* Merge tag 'v0.19.5'Max Kellermann2014-11-261-24/+0
|\
| * decoder/mp4v2: remove because of incompatible licenseMax Kellermann2014-11-251-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
| * configure.ac: prepare for 0.19.5Max Kellermann2014-11-241-2/+2
| |
| * configure.ac: prepare for 0.19.4Max Kellermann2014-11-121-2/+2
| |
| * configure.ac: prepare for 0.19.3Max Kellermann2014-11-041-2/+2
| |
* | configure.ac: add macro MPD_AUTOMax Kellermann2014-11-231-10/+6
| |
* | configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIBMax Kellermann2014-11-221-31/+4
| |
* | configure.ac: add macro MPD_ENABLE_AUTO_PKGMax Kellermann2014-11-211-381/+59
| | | | | | | | Simplify the definition of many build options.
* | configure.ac: allow disabling syslog() supportMax Kellermann2014-11-211-2/+13
| |
* | configure.ac: add option "--disable-daemon"Max Kellermann2014-11-201-0/+13
| |
* | SongSticker: don't use GLibMax Kellermann2014-10-251-2/+0
| |
* | decoder/wavpack: don't use GLibMax Kellermann2014-10-251-2/+0
| |
* | playlist/SoundCloud: don't use GLib for string allocationMax Kellermann2014-10-251-2/+0
| |
* | configure.ac: prepare for 0.20Max Kellermann2014-10-251-3/+3
|/
* configure.ac: update VERSION_REVISIONMax Kellermann2014-10-251-1/+1
|
* configure.ac: add storage plugin section to resultMax Kellermann2014-10-251-0/+4
|
* configure.ac: show DSD in resultMax Kellermann2014-10-251-0/+1
|
* configure.ac: require xmlto for --enable-documentationMax Kellermann2014-10-251-3/+4
|
* configure.ac: auto-disable plugins that require GLib when --disable-glib is usedMax Kellermann2014-10-241-0/+20
|
* configure.ac: improve database dependency checksMax Kellermann2014-10-241-2/+6
| | | | | Abort if --enable-libmpdclient or --enable-upnp are used with --disable-database, instead of ignoring the mismatch silently.
* configure.ac: prepare for 0.19.2Max Kellermann2014-10-231-1/+1
|
* configure.ac: prepare for 0.19.1Max Kellermann2014-10-111-1/+1
|
* release v0.19Max Kellermann2014-10-101-1/+1
|
* Merge tag 'v0.18.16'Max Kellermann2014-09-261-43/+13
|\