aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-07-31Modify version string to post-release version 0.17.2~gitAvuton Olrich1-1/+1
2012-07-30configure.ac: replace MPD_CHECK_FLAG with autoconf-archive scriptsMax Kellermann1-9/+9
Use standard scripts instead of MPD's custom implementation.
2012-07-30configure.ac: add -I to CPPFLAGS, not CFLAGSMax Kellermann1-1/+1
2012-07-10require GLib 2.16Max Kellermann1-2/+2
GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it.
2012-07-09configure.ac: increment version number to 0.17.1Max Kellermann1-1/+1
2012-06-27mpd version 0.17release-0.17Max Kellermann1-1/+1
2012-05-29output/raop: delete the RAOP pluginMax Kellermann1-18/+0
This plugin is horrible code, I mean it. Last year, I tried hard to fix it, but I figured would take less time to do a full rewrite. Given that I don't even have any device that supports RAOP, I can't do that properly. After 16 months, nobody volunteered for fixing it. Hereby, I delete it, because having no RAOP plugin is better than having this mess. Sorry.
2012-04-23configure.ac: work around syntax errorMax Kellermann1-1/+1
.. when HAVE_WINDOWS was not set.
2012-04-04Modify version string to post-release version 0.16.9~gitAvuton Olrich1-1/+1
2012-04-04mpd version 0.16.8release-0.16.8Avuton Olrich1-1/+1
2012-03-19playlist/soundcloud: support libyajl2Robert Vollmert1-3/+5
[mk: backwars compatibility and autoconf check]
2012-03-01configure.ac: detect libyajl for playlist/soundcloudMax Kellermann1-2/+9
2012-03-01A soundcloud playlist plugin.Robert Vollmert1-0/+13
Requires YAJL to build, and this doesn't include the necessary automake changes. Can be built using ./configure CFLAGS="-I/usr/include/yajl" LIBS="-lyajl" --enable-soundcloud Add the following to your config: playlist_plugin { name "soundcloud" enabled "true" apikey "c4c979fd6f241b5b30431d722af212e8" } Then you can stream from soundcloud using calls like: mpc load soundcloud://track/<track-id> mpc load soundcloud://playlist/<playlist-id> mpc load soundcloud://url/http://soundcloud.com/some/track/or/playlist For the last case, you can leave off the http:// or http://soundcloud.com/ .
2012-02-23win32: Add a Windows OS resource file and iconAvuton Olrich1-0/+19
2012-02-13listen: implement systemd socket activationMax Kellermann1-0/+12
2012-02-10cue_parser: new line based CUE sheet parserMax Kellermann1-17/+1
To replace libcue, the unmaintained and crashy library.
2012-02-04Modify version string to post-release version 0.16.8~gitAvuton Olrich1-1/+1
2012-02-04mpd version 0.16.7release-0.16.7Avuton Olrich1-1/+1
2012-01-04configure.ac: disable -Wno-deprecated-declarationsMax Kellermann1-1/+0
2011-12-13configure.ac: suppress warnings in the GLib headersMax Kellermann1-0/+5
Replace -I with -isystem in GLIB_CFLAGS.
2011-12-12configure.ac: Refactor the musepack sectionAvuton Olrich1-38/+14
It appears the musepack section has not really been reviewed in some time, many parts unfunctional, others, just unnecessary.
2011-12-12configure.ac: AC_HAVE_LIBRARY has been depreciated, move to AC_CHECK_LIBAvuton Olrich1-5/+4
2011-12-12configure.ac: Update to methods which autoconf is going toAvuton Olrich1-4/+5
2011-12-12configure.ac: Realphabetize and 80 column the pretty outputAvuton Olrich1-8/+8
2011-12-12configure/utils: Add ipv6 support for mingw buildAvuton Olrich1-0/+4
2011-12-01Modify version string to post-release version 0.16.7~gitAvuton Olrich1-1/+1
2011-12-01mpd version 0.16.6release-0.16.6Avuton Olrich1-1/+1
2011-10-13configure.ac: define WINVERMax Kellermann1-0/+1
Ensure that WINVER is defined early enough, so other system headers won't fall back to their default value. Specifically, this solves a build failure (-Werror) with mingw-w64 ("WINVER redefined").
2011-10-09configure.ac: enable automake option "silent-rules"Max Kellermann1-0/+1
2011-10-09Makefile.am: require automake 1.11Max Kellermann1-1/+1
Prepare for enabling "silent-rules".
2011-10-09configure.ac: use $LIBS instead of $MPD_LIBSMax Kellermann1-12/+6
2011-10-09configure.ac: substitute MPCDEC_LIBS, MPCDEC_CFLAGSMax Kellermann1-3/+7
Don't use MPD_LIBS, MPC_CFLAGS.
2011-10-09configure.ac: add variable BZ2_LIBSMax Kellermann1-1/+2
Don't use MPD_LIBS.
2011-10-09configure.ac: don't append DESPOTIFY_LIBS to MPD_LIBSMax Kellermann1-1/+0
Use DESPOTIFY_LIBS in Makefile.am instead. Also, use DESPOTIFY_CFLAGS.
2011-10-09configure.ac: remove gprof supportMax Kellermann1-11/+0
gprof is obsolete, it's better to use perfcounters in every aspect.
2011-10-09configure.ac: use AC_SEARCH_LIBS for socket, gethostbyname, expMax Kellermann1-3/+4
AC_SEARCH_LIBS allows the function to be present in libc.
2011-10-09configure.ac: detect syslog() with AC_SEARCH_LIBSMax Kellermann1-9/+4
One call to AC_SEARCH_LIBS replaces AC_CHECK_FUNCS and AC_CHECK_LIB.
2011-10-09Modify version string to post-release version 0.16.6~gitAvuton Olrich1-1/+1
2011-10-09mpd version 0.16.5release-0.16.5Avuton Olrich1-1/+1
2011-10-07configure.ac: disable systemd service by defaultMax Kellermann1-1/+9
Defaulting to "with systemd" causes problems for users who install MPD as an unprivileged user, and it breaks "make distcheck". It looks like enabling it by default creates too many practical problems for unexperienced users. With --with-systemdsystemunitdir (without a parameter), configure.ac attempts to auto-detect systemd.
2011-10-03configure.ac: add automake conditional HAVE_CXXMax Kellermann1-0/+1
2011-09-30Install systemd service file if systemd is availableMiklos Vajna1-0/+8
2011-09-20configure.ac: fix --enable-id3 help stringMax Kellermann1-1/+1
2011-09-19configure.ac: add option --enable-solaris-outputMax Kellermann1-3/+14
Allow enabling the plugin explicitly without running Solaris, to test the build.
2011-09-19configure.ac: fix solaris result displayMax Kellermann1-1/+1
Wrong variable name.
2011-09-16configure.ac: disable assertions in the non-debugging buildMax Kellermann1-4/+3
Add -DNDEBUG to AM_CPPFLAGS.
2011-09-16configure.ac: enable -Werror for C++Max Kellermann1-0/+1
2011-09-16configure.ac: pass AM_CXXFLAGS, AM_CPPFLAGS to Makefile.amMax Kellermann1-0/+2
2011-09-01Modify version string to post-release version 0.16.5~gitAvuton Olrich1-1/+1
2011-09-01mpd version 0.16.4release-0.16.4Avuton Olrich1-1/+1