| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
Moved implementation specific code to their own sources, internal
declarations in zeroconf-internal.h.
|
|
|
|
| |
Removed the fallback setenv() implementation for solaris.
|
|
|
|
|
| |
All archive plugins used to overwrite $MPD_LIBS, ignoring the existing
value. Make them append instead, keeping the old value.
|
|
|
|
|
| |
Don't bother to look for libbz2, libzzip and libiso9660 if the plugins
are disabled.
|
|
|
|
| |
We're now using GLib threading.
|
|
|
|
| |
Allow logging to syslog if log_file is configured to "syslog".
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
When there are no archive plugins, we do not need the archive API at
all. Drop all its overhead.
|
|
|
|
|
|
| |
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.
|
|\
| |
| |
| |
| |
| |
| |
| | |
Conflicts:
configure.ac
src/ls.h
src/output/shout_plugin.c
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
configure options should use the dash instead of the underscore.
|
| |
| |
| |
| | |
Unix domain socket support is enabled by default.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| | |
Move the AC_OUTPUT below the checks. So you nicely see what goes wrong.
|
| | |
|
| |
| |
| |
| |
| | |
If lame was not available, the shout_mp3 plugin was enabled anyway,
and triggered compiler errors.
|
| |
| |
| |
| |
| | |
First check if an ecoder plugin is available, then determine whether
to enable the shout output plugin.
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|/ |
|
| |
|
|
|
|
| |
Generate and install protocol.html if xmlto is available.
|
|
|
|
|
|
|
|
|
| |
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*".
|
| |
|
| |
|
|
|
|
|
|
| |
The build failed when the oggvorbis and oggflac decoders were
disabled, because the flac decoder references a symbol from
_ogg_common.c.
|
| |
|
|
|
|
| |
First alpha version for the upcoming version 0.14.
|
|
|
|
|
| |
Call g_thread_init() from main() to enable the GLib features which
make it thread safe.
|
|
|
|
|
| |
Disable the ffmpeg decoder plugin if avcodec_decode_audio2() is not
available.
|
|
|
|
|
| |
Although there is no AC_SUBST when $enable_mp4=no, autoconf
substitutes its value in Makefile.am. Clear it in this case.
|
|
|
|
| |
The configure flag "--disable-oggflac" disabled only liboggflac.
|
|
|
|
| |
The AC_SUBST() call was missing in the previous patch.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
Due to a missing "test", the "xyes" token was interpreted as a
command.
|
|
|
|
| |
Don't compile the sources of disabled output plugins at all.
|
|
|
|
|
|
|
| |
MPD's HTTP client code has always been broken, no matter how effort
was put into fixing it. Replace it with libcurl, which is known to be
quite stable. This adds a fat library dependency, but only for people
who need streaming.
|
|
|
|
|
|
|
| |
Several clients refuse to accept the protocol version "0.14~git",
because they think it is malformed. This is clearly a client bug, but
we cannot wait for all clients to fix this bug right now. For now,
change the version back to "0.14.0".
|
|
|
|
|
|
|
| |
For testers, it should be clear that they're not using version 0.14.0
final, but an inofficial intermediate version from the git repository.
The protocol version is set to the same string, since the protocol is
subject to change during MPD development.
|
|
|
|
|
| |
Since we're not building the local mp4ff library anymore, we can
remove AC_PROG_LIBTOOL.
|