aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2014-12-01input/cdio_paranoia: use CopyString() instead of g_strlcpy()Max Kellermann1-3/+2
2014-11-28configure.ac: prepare for 0.19.6Max Kellermann1-2/+2
2014-11-25decoder/mp4v2: remove because of incompatible licenseMax Kellermann1-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-24configure.ac: prepare for 0.18.19Max Kellermann1-2/+2
2014-11-24configure.ac: prepare for 0.19.5Max Kellermann1-2/+2
2014-11-23configure.ac: add macro MPD_AUTOMax Kellermann1-10/+6
2014-11-22configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIBMax Kellermann1-31/+4
2014-11-21configure.ac: add macro MPD_ENABLE_AUTO_PKGMax Kellermann1-381/+59
Simplify the definition of many build options.
2014-11-21configure.ac: allow disabling syslog() supportMax Kellermann1-2/+13
2014-11-20configure.ac: add option "--disable-daemon"Max Kellermann1-0/+13
2014-11-12configure.ac: prepare for 0.19.4Max Kellermann1-2/+2
2014-11-10configure.ac: prepare for 0.18.1Max Kellermann1-2/+2
2014-11-04configure.ac: prepare for 0.19.3Max Kellermann1-2/+2
2014-11-02configure.ac: show DSD in resultMax Kellermann1-0/+1
2014-11-02configure.ac: prepare for 0.18.17Max Kellermann1-2/+2
2014-10-25SongSticker: don't use GLibMax Kellermann1-2/+0
2014-10-25decoder/wavpack: don't use GLibMax Kellermann1-2/+0
2014-10-25playlist/SoundCloud: don't use GLib for string allocationMax Kellermann1-2/+0
2014-10-25configure.ac: prepare for 0.20Max Kellermann1-3/+3
2014-10-25configure.ac: update VERSION_REVISIONMax Kellermann1-1/+1