| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
MPD shouldn't integrate sources of other libraries. Since libmp4ff is
part of libfaad, we should remove the old copy from src/mp4ff and link
with the current version from libfaad instead.
|
|
|
|
|
| |
libsamplerate 0.1.2 didn't have the 32 bit <-> float conversion
routines. Emulate them in case they aren't supported.
|
|
|
|
|
|
| |
Separate the resampling code from the rest of pcm_utils.c. Create two
sub-libraries: pcm_resample_libsamplerate.c and
pcm_resample_fallback.c.
|
|
|
|
| |
Since ffmpeg svn r13528, you have to link with libavutil manually.
|
|
|
|
|
|
|
|
|
| |
Since ffmpeg svn r12865, you have to include libavcodec/avcodec.h
instead of avcodec.h. This cannot be checked at compile time, instead
we have to add a check to configure.ac. Viliam's original ffmpeg
plugin was based on the newer ffmpeg library, while my Debian
installation had the older version. My attempt to correct his include
statements wasn't correct after all.
|
|
|
|
| |
[mk: use AC_SUBST instead of appending to MPD_CFLAGS / MPD_LIBS]
|
|
|
|
|
|
|
|
| |
With heavy use of conditionals, I broke Makefile.am for the ancient
automake version 1.6. Instead of supporting this automake version
forever, I'm removing support for it now. Since automake isn't
required on the build machine, nobody should have a serious problem
with that.
|
|
|
|
|
| |
Since mpd-mk has become the "official" MPD, the rename from commit
ba892cbc can be reverted.
|