summaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)Author
2018-07-16m4: update various libraries from autoconf-archive 20170928Max Kellermann
Not updating m4/ax_boost_base.m4 because the new version breaks cross-compilation by adding -I/usr/include to BOOST_CPPFLAGS.
2018-01-15input/qobuz: new input plugin to receive Qobuz streamsMax Kellermann
2017-01-26configure.ac: use MPD_DEPENDS for upnp->expat dependencyMax Kellermann
2017-01-26m4/mpd_depends.m4: print warning when disabling the featureMax Kellermann
2017-01-26m4/mpd_depends.m4: add documentationMax Kellermann
2017-01-17AUTHORS, ...: update my email addressMax Kellermann
2017-01-04m4: update various scripts from autoconf-archiveMax Kellermann
2016-12-26configure.ac: use MPD_AUTO for libsndio and HaikuMax Kellermann
2016-11-21m4/ax_cxx_compile_stdcxx.m4: workarounds to allow gcc 4.8Max Kellermann
gcc 4.8 doesn't have full C++14 support, but it's enough for MPD.
2016-11-18configure.ac: enable C++14Max Kellermann
2016-05-27m4: update to autoconf-archive 20150925Max Kellermann
2015-03-20m4: add MPD_ENABLE_AUTO()Max Kellermann
2015-03-19m4: add API documentationMax Kellermann
2014-12-22configure.ac: add macro MPD_DEFINE_CONDITIONALMax Kellermann
2014-12-22m4/mpd_auto: fix description in AC_DEFINE()Max Kellermann
2014-12-09configure.ac: use MPD_ENABLE_AUTO_LIB for libfaadMax Kellermann
2014-12-09configure.ac: add macro MPD_ENABLE_AUTO_LIBMax Kellermann
2014-12-09m4/mpd_with_flags: add macro MPD_WITH_FLAGSMax Kellermann
2014-12-09m4/mpd_auto.m4: fix option description in MPD_ARG_ENABLEMax Kellermann
Was using the wrong variable. Regression by commit 16f870aa
2014-12-08m4/mpd_auto.m4: move code to MPD_ARG_ENABLEMax Kellermann
2014-12-08m4/mpd_auto.m4: fix displayed default valueMax Kellermann
Was hard-coded to "auto", and the macro parameter was ignored (in the help text).
2014-12-08m4/mpd_func.m4: fix typoMax Kellermann
2014-12-08m4/pretty_print.m4: eliminate "eval"Max Kellermann
2014-12-08m4/pretty_print.m4: drop support for "with_*" variablesMax Kellermann
Not used.
2014-11-24m4/mpd_auto.m4: fix inverted assignment after auto-detectionMax Kellermann
Broken by commit cdbdcec
2014-11-23configure.ac: add macro MPD_AUTOMax Kellermann
2014-11-22configure.ac: add macro MPD_ENABLE_AUTO_PKG_LIBMax Kellermann
2014-11-21configure.ac: add macro MPD_ENABLE_AUTO_PKGMax Kellermann
Simplify the definition of many build options.
2014-11-21m4/mpd_auto.m4: reduce "eval" bloatMax Kellermann
Don't assign bash variables; instead, use the m4 parameters directly.
2014-10-25decoder/faad: remove workaround for ancient libfaad2 ABI bugMax Kellermann
Many years ago, FAAD had a serious ABI bug: the NeAACDecInit() prototype in its header declared the "samplerate" parameter to be "unsigned long *", but internally, the function assumed it was "uint32_t *" instead. On 32 bit machines, that was no difference, but on 64 bit, this left one portion of the return value uninitialized; and worse, on big-endian, the wrong word was filled. This bug had to be worked around in MPD (commit 9c4e97a6). A few months later, the bug was fixed in the FAAD CVS in commit 1.117 on file libfaad/decoder.c; the commit message was: "Use public headers internally to prevent duplicate declarations" The commit message was too brief at best; the problem was not duplicate declarations, but a prototype mismatch. No mention of the bug fix in the ChangeLog. The MPD project never learned about this bug fix, and so MPD would always pass a "uin32_t *" dressed up as a "unsigned long *". Nearly 6 years later, it's about time to fix this second ABI problem. Let's kill the workaround!
2014-10-24configure.ac: improve database dependency checksMax Kellermann
Abort if --enable-libmpdclient or --enable-upnp are used with --disable-database, instead of ignoring the mismatch silently.
2014-06-11configure.ac: check for BoostMax Kellermann
2014-06-11m4: update to pkg-config 0.28Max Kellermann
2014-06-11m4: update to autoconf-archive 20140228Max Kellermann
2014-03-15m4/ucred.m4: don't define _GNU_SOURCEMax Kellermann
Not necessary anymore, because we enable this flag unconditionally now.
2014-03-01m4: add missing file ax_pthread.m4 from autoconf-archiveMax Kellermann
2013-11-27Add infrastructure for using multiple event loopsDenis Krjuchkov
This change adds two configuration options: --with-eventloop=[glib|internal|auto] --with-pollmethod=[epoll|auto] First allows switching between GLib event loop and internal one. Second chooses backend to use for internal event loop. Conditional compilation symbols are changed accordingly. Additional helper macro MPD_OPTIONAL_FUNC_NODEF is added as well.
2013-10-17configure.ac: add function MPD_AUTO_LIB and use itMax Kellermann
2013-08-07configure.ac: pass option name to MPD_OPTIONAL_FUNC()Max Kellermann
2013-08-06configure.ac: add option --enable-eventfdMax Kellermann
Remove the runtime check for eventfd(), hard-code the feature once it's been selected at compile time. The class WakeFD is splitted into EventFD and EventPipe, using WakeFD as a macro diversion.
2013-01-29decoder/faad: use the newer NeAAC* APIMax Kellermann
Drop support for the old faacDec* API.
2013-01-29faad.m4: clear FAAD_LIBS if faad got auto-disabledMax Kellermann
Fixes build errors on systems without libfaad, when --disable-aac was not specified.
2013-01-29faad.m4: don't add -I. to temporary CFLAGSMax Kellermann
2013-01-29faad.m4: remove faad --with-* optionsMax Kellermann
Some of these are not implemented properly and never worked. And the others are not useful; you can easily set environment variables instead.
2013-01-28decoder/mp4ff: delete obsolete pluginMax Kellermann
The underlying library has been obsolete for many years.
2013-01-03Merge branch 'v0.17.x'Max Kellermann
2013-01-03mpd_auto.m4: Pass libraries to AC_CHECK_LIB in MPD_AUTO_PKG_LIBDenis Krjuchkov
Rationale: vanilla libid3tag does not have any pkg-config stuff and fails to detect because symbols from libz are not found.
2012-08-03configure.ac: copy missing file m4/ax_check_link_flag.m4Max Kellermann
Needed by ax_append_link_flags.m4.
2012-08-02configure.ac: enable --gc-sectionsMax Kellermann
Produce a smaller binary by removing all unused functions.
2012-08-01configure.ac: require C++11 compilerMax Kellermann
We'll add some C++11 code soon.