Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-01-05 | configure.ac: removed obsolete checks | Max Kellermann | 1 | -5/+0 | |
Don't check for inttypes.h and langinfo.h. | |||||
2009-01-05 | use GLib byte order macros | Max Kellermann | 1 | -2/+0 | |
2009-01-05 | configure.ac: disable ID3 support when libid3tag was not found | Max Kellermann | 1 | -1/+1 | |
Fix a typo. | |||||
2009-01-04 | configure.ac: detect libid3tag without pkg-config | Max Kellermann | 1 | -3/+8 | |
libid3tag comes without a pkg-config file, and it is usually added by distribution packages. For those without .pc file, attempt to auto-detect the library with AC_CHECK_LIB. | |||||
2009-01-03 | configure.ac: link with -lws2_32 on WIN32 | Max Kellermann | 1 | -0/+6 | |
All socket functions are provided by ws2_32.dll. | |||||
2008-12-30 | main: use the GLib main loop | Max Kellermann | 1 | -1/+1 | |
This is a rather huge patch, which unfortunately cannot be splitted. Instead of using our custom ioops.h library, convert everything to use the GLib main loop. | |||||
2008-12-30 | zeroconf: moved code to zeroconf-avahi.c and zeroconf-bonjour.c | Max Kellermann | 1 | -0/+2 | |
Moved implementation specific code to their own sources, internal declarations in zeroconf-internal.h. | |||||
2008-12-29 | main: use g_setenv() instead of setenv() | Max Kellermann | 1 | -1/+0 | |
Removed the fallback setenv() implementation for solaris. | |||||
2008-12-29 | configure.ac: append archive libraries to $MPD_LIBS | Max Kellermann | 1 | -4/+9 | |
All archive plugins used to overwrite $MPD_LIBS, ignoring the existing value. Make them append instead, keeping the old value. | |||||
2008-12-29 | configure.ac: check for archive libraries only if enabled | Max Kellermann | 1 | -3/+9 | |
Don't bother to look for libbz2, libzzip and libiso9660 if the plugins are disabled. | |||||
2008-12-29 | configure.ac: removed pthread checks | Max Kellermann | 1 | -4/+0 | |
We're now using GLib threading. | |||||
2008-12-28 | log: support syslog() | Max Kellermann | 1 | -0/+15 | |
Allow logging to syslog if log_file is configured to "syslog". | |||||
2008-12-28 | decoder: new plugin using modplug library | Viliam Mateicka | 1 | -0/+21 | |
2008-12-27 | configure.ac: fixed description to bzip2 compile option | Viliam Mateicka | 1 | -1/+1 | |
2008-12-27 | Add an "Archive support" section to the configure results screen. | Avuton Olrich | 1 | -18/+21 | |
2008-12-27 | Change configure time option to be bzip2 rather than bz2. | Avuton Olrich | 1 | -1/+1 | |
2008-12-27 | Fix text string to show bz2 rather than rar. | Avuton Olrich | 1 | -1/+1 | |
2008-12-27 | disable archive API without plugins | Max Kellermann | 1 | -0/+10 | |
When there are no archive plugins, we do not need the archive API at all. Drop all its overhead. | |||||
2008-12-27 | configure.ac: moved archive library checks to options | Max Kellermann | 1 | -14/+16 | |
Don't split configure options and their implementation. Check for the backend library before the AM_CONDITIONAL, otherwise Makefile.am will compile the plugin although the library may not be available. | |||||
2008-12-27 | Check for pkg-config before using it | Qball Cow | 1 | -0/+3 | |
2008-12-25 | Modify version string to post-release version 0.15~git | Avuton Olrich | 1 | -1/+1 | |
2008-12-25 | MPD version 0.14release-0.14 | Avuton Olrich | 1 | -1/+1 | |
2008-12-24 | configure.ac: renamed shout options | Max Kellermann | 1 | -4/+4 | |
configure options should use the dash instead of the underscore. | |||||
2008-12-24 | configure.ac: fix --enable-un documentation | Max Kellermann | 1 | -2/+2 | |
Unix domain socket support is enabled by default. | |||||
2008-12-24 | configure.ac: disable the mikmod plugin by default | Max Kellermann | 1 | -1/+1 | |
libmikmod seems to be unmaintained, and has several critical bugs which make MPD crash. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461519 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476339 Disable the plugin by default to minimize harm. Users should explicitly enable the mikmod decoder (--enable-mod) if they wish to have it anyway. | |||||
2008-12-22 | Build makefiles after checking available outputs and decoder plugins | Qball Cow | 1 | -10/+12 | |
Move the AC_OUTPUT below the checks. So you nicely see what goes wrong. | |||||
2008-12-20 | MPD version 0.14~beta3release-0.14_beta3 | Avuton Olrich | 1 | -1/+1 | |
2008-12-17 | configure.ac: check lame availability before shout_mp3 test | Max Kellermann | 1 | -5/+5 | |
If lame was not available, the shout_mp3 plugin was enabled anyway, and triggered compiler errors. | |||||
2008-12-17 | configure.ac: disable shout when no encoder is found | Max Kellermann | 1 | -12/+10 | |
First check if an ecoder plugin is available, then determine whether to enable the shout output plugin. | |||||
2008-12-16 | archiveapi: archive plugin for ISO files | Viliam Mateicka | 1 | -0/+20 | |
2008-12-16 | archiveapi: archive plugin for ZIP files | Viliam Mateicka | 1 | -0/+19 | |
2008-12-16 | archiveapi: archive plugin for BZ2 files | Viliam Mateicka | 1 | -0/+25 | |
2008-12-14 | configure.ac: added libcurl to configure summary | jefromi | 1 | -0/+8 | |
When updating from a version before libcurl was used for streaming support, this is confusing - streaming will work with the old version (e.g. 0.13.2) but will give "no such file" errors with the new due to the missing dependency. However, the missing dependency will not be obvious when running the configure script. | |||||
2008-12-02 | MPD version 0.14~beta2release-0.14_beta2 | Avuton Olrich | 1 | -1/+1 | |
2008-11-23 | MPD version 0.14~beta1release-0.14_beta1 | Avuton Olrich | 1 | -1/+1 | |
2008-11-20 | doc: process protocol.xml with xmlto | Max Kellermann | 1 | -0/+16 | |
Generate and install protocol.html if xmlto is available. | |||||
2008-11-16 | aac: detect whether to pass "uint32_t*" to NeAACDecInit2() | Max Kellermann | 1 | -0/+31 | |
neaacdec.h declares all arguments as "unsigned long", but internally expects uint32_t pointers. This triggers gcc warnings on 64 bit architectures. To avoid that, make configure.ac detect whether we're using Debian's corrected headers or the original libfaad headers. In any case, pass a pointer to an uint32_t, conditionally casted to "unsigned long*". | |||||
2008-11-14 | MPD version 0.14~alpha3release-0.14_alpha3 | Avuton Olrich | 1 | -1/+1 | |
2008-11-13 | MPD version 0.14~alpha2release-0.14_alpha2 | Avuton Olrich | 1 | -1/+1 | |
2008-11-07 | configure.ac: enable _ogg_common.c when flac is enabled | Max Kellermann | 1 | -1/+1 | |
The build failed when the oggvorbis and oggflac decoders were disabled, because the flac decoder references a symbol from _ogg_common.c. | |||||
2008-11-07 | configure.ac: added AC_CONFIG_SRCDIR | Max Kellermann | 1 | -4/+2 | |
2008-11-05 | MPD version 0.14~alpha1release-0.14_alpha1 | Max Kellermann | 1 | -1/+1 | |
First alpha version for the upcoming version 0.14. | |||||
2008-11-05 | enable GLib threading | Max Kellermann | 1 | -1/+1 | |
Call g_thread_init() from main() to enable the GLib features which make it thread safe. | |||||
2008-11-04 | configure.ac: check for avcodec_decode_audio2() | Max Kellermann | 1 | -0/+8 | |
Disable the ffmpeg decoder plugin if avcodec_decode_audio2() is not available. | |||||
2008-11-04 | configure.ac: unset MP4FF_LIBS when MP4 support is disabled | Max Kellermann | 1 | -0/+1 | |
Although there is no AC_SUBST when $enable_mp4=no, autoconf substitutes its value in Makefile.am. Clear it in this case. | |||||
2008-11-03 | configure.ac: disable libflac's oggflac support with --disable-oggflac | Avuton Olrich | 1 | -1/+1 | |
The configure flag "--disable-oggflac" disabled only liboggflac. | |||||
2008-11-03 | configure.ac: AC_SUBST(MP4FF_LIBS) | Max Kellermann | 1 | -0/+1 | |
The AC_SUBST() call was missing in the previous patch. | |||||
2008-11-03 | configure.ac: separate the "aac" and "mp4" decoder tests | Max Kellermann | 1 | -3/+39 | |
MPD used to have a copy of the mp4ff library. Since that has been removed, AAC suport was disabled when there was no libmp4ff. Separate the libmp4ff test, and enable AAC support no matter if libmp4ff is available. | |||||
2008-10-26 | configure.ac: fix "xyes: command not found" | Max Kellermann | 1 | -1/+1 | |
Due to a missing "test", the "xyes" token was interpreted as a command. | |||||
2008-10-26 | output: don't compile plugins which are disabled | Max Kellermann | 1 | -0/+20 | |
Don't compile the sources of disabled output plugins at all. |