aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-11-18Modify version string to post-release version 0.15.7~gitAvuton Olrich1-1/+1
2009-11-18mpd version 0.15.6release-0.15.6Avuton Olrich1-1/+1
2009-11-17cmdline: print out list of encoders in --version infoViliam Mateicka1-0/+4
2009-11-17encoder: introducing flac encoder pluginViliam Mateicka1-0/+16
2009-11-12include config.h in all sourcesMax Kellermann1-0/+3
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-11-10wave_encoder: new encoder for streaming PCM wave files.Viliam Mateicka1-1/+19
When using wave encoder with httpd audio output mpd can input this stream via http and audiofile decoder. This for example opens simple way to configure lossless audio streaming port(like jack or pulseaudio does but without overhead). Another possibility can be using it for gathering raw data for visualization plugins (If sync issue will be resolved)
2009-11-10configure.ac: enable_audiofile defaults to "auto"Max Kellermann1-2/+2
Since we're using MPD_AUTO_PKG, we can auto-detect this option. Also fix the --enable-audiofile help string.
2009-11-10configure.ac: require GLib 2.12Max Kellermann1-2/+2
Drop the required GLib version from 2.16 to 2.12, because many current systems still don't have GLib 2.16. This requires several new compatibility functions in glib_compat.h.
2009-11-10zzip: require libzzip 0.13Max Kellermann1-1/+1
We need the function zzip_file_stat().
2009-11-10input/mms: require libmms 0.4Max Kellermann1-1/+1
We're using API functions which are not available in 0.3.
2009-11-07set the close-on-exec flag on all file descriptorsMax Kellermann1-1/+3
Added the "fd_util" library, which attempts to use the new thread-safe Linux system calls pipe2(), accept4() and the options O_CLOEXEC, SOCK_CLOEXEC. Without these, it falls back to FD_CLOEXEC, which is not thread safe. This is particularly important for the "pipe" output plugin (and others, such as JACK/PulseAudio), because we were heavily leaking file descriptors to child processes.
2009-11-05output/jack: use jack_client_open() instead of jack_client_new()Max Kellermann1-1/+1
jack_client_new() is deprecated. This requires libjack 0.100 (released nearly 5 years ago). We havn't been testing older libjack versions anyway. As a side effect, there is the new option "autostart".
2009-10-24add --disable-inotify for configure to disable inotify when autodetectedViliam Mateicka1-1/+19
2009-10-22Makefile.am: enable the "subdir-objects" optionMax Kellermann1-1/+1
Don't clutter the top directory with *.o files.
2009-10-21pulse: code rewrite using the asynchronous libpulse APIMax Kellermann1-1/+1
This is a complete rewrite of the PulseAudio output plugin. It uses the asynchronous API, which gives us more control over everything. Additionally, it connects to the PulseAudio server on startup, and keeps this connection up while MPD runs. During pause, instead of closing the stream, it enables "cork".
2009-10-18Modify version string to post-release version 0.15.6~gitAvuton Olrich1-1/+1
2009-10-18mpd version 0.15.5release-0.15.5Avuton Olrich1-1/+1
2009-10-13configure.ac: require GLib 2.16Max Kellermann1-2/+2
Accidently, MPD has been using several GLib 2.16 functions for a while, and nobody noticed yet. To simplify the code base, let's bump the minimum GLib version for MPD to 2.16. That version is old enough, and it's reasonable to expect users to have it.
2009-10-10configure: Fix up the recorder plugin configure.Avuton Olrich1-3/+3
2009-10-08configure.ac: build with large file support by defaultAlam Arias1-0/+2
This fixes mpg123 support.
2009-10-03Modify version string to post-release version 0.15.5~gitAvuton Olrich1-1/+1
2009-10-03mpd version 0.15.4release-0.15.4Avuton Olrich1-1/+1
2009-09-25automatically update the database with Linux inotifyMax Kellermann1-0/+3
This patch implements a light-weight inotify library, and watches all directories below the music directory. It updates all directories where files changed after a delay of 5 seconds.
2009-09-24configure.ac: rename HAVE_CURL to ENABLE_CURLMax Kellermann1-2/+2
2009-09-20output/osx: fix the OS X 10.6 buildPatrik Weiskircher1-6/+0
Include CoreServices/CoreServices.h.
2009-09-07output/openal: support OpenAL plugin on Mac OS XSerge Ziryukin1-3/+13
2009-09-06configure.ac: use /Developer/SDKs/MacOSX10.5.sdkPatrik Weiskircher1-0/+6
First, this is not a nice fix. I am also not sure why the error happens in the first place. I assume Apple deprecated some stuff in 10.6 + x86_64. My patch simply uses the 10.5 SDK if compiling on 10.6 Snow Leopard - which is installed by default if you install XCode 3.2 that comes with Snow Leopard. The reason this is not a nice fix is, of course, that this doesn't fix the problem. It just "postpones" it to the next release of MacOS X. But, some people may need it, and its better than nothing.
2009-09-06openal output pluginSerge Ziryukin1-0/+25
2009-08-30decoder/sidplay: implemented songlength databaseMike Dawson1-2/+7
[mk: added autoconf test; fixed songlen_data_size type]
2009-08-29Modify version string to post-release version 0.15.4~gitAvuton Olrich1-1/+1
2009-08-29mpd version 0.15.3release-0.15.3Avuton Olrich1-1/+1
2009-08-26decoder/mpg123: new decoder plugin based on libmpg123Max Kellermann1-0/+19
Still missing: - seeking - tags - streaming - encodings other than MPG123_ENC_SIGNED_16
2009-08-24output/recorder: new output plugin for recording radio streamsMax Kellermann1-2/+35
The recorder plugin writes audio played by MPD to a file. This may be useful for recording radio streams. This implementation is incomplete, because support for tags is missing, and MPD should be able to record each track to a different file.
2009-08-15Modify version string to post-release version 0.15.3~gitAvuton Olrich1-1/+1
2009-08-15mpd version 0.15.2release-0.15.2Avuton Olrich1-1/+1
2009-08-13use daemon() when the C library provides itMike Frysinger1-1/+1
For systems that cannot support fork() (like no-mmu Linux), use daemon() if it is available for the daemonizing code. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-07-17configure.ac: fix the --enable-alsa help stringMax Kellermann1-2/+1
--enable means "enable", not "disable".
2009-07-15Modify version string to post-release version 0.15.2~gitAvuton Olrich1-1/+1
2009-07-15mpd version 0.15.1release-0.15.1Avuton Olrich1-1/+1
2009-07-14encoder/twolame: new encoder plugin based on libtwolameMax Kellermann1-1/+24
This encoder plugin is a replacement for the LAME encoder plugin for those who prefer a "free" (non-patent encumbered) encoder library. Most of the plugin source code is copied from the LAME encoder plugin, since the LAME and TwoLAME APIs are nearly the same.
2009-07-14configure.ac: use more MPD_AUTO_PKG()Max Kellermann1-24/+19
Fail when a feature is enabled, but the library is not found.
2009-07-14Makefile.am: use WAVPACK_CFLAGS and WAVPACK_LIBSMax Kellermann1-5/+2
Don't append these to MPD_CFLAGS and MPD_LIBS.
2009-07-14configure.ac: fail when ffmpeg is enabled, but not foundMax Kellermann1-7/+5
2009-07-07decoder/sndfile: new decoder plugin based on libsndfileMax Kellermann1-0/+32
2009-07-05configure.ac: increased protocol version to 0.16.0Max Kellermann1-1/+1
We're going to extend the protocol now. Update the protocol version.
2009-06-25Makefile.am: require automake 1.10Max Kellermann1-1/+1
Refuse to build with automake 1.9. 1.9 is quite old already, and I'm too lazy to test with ancient versions.
2009-06-25configure.ac: fix the --disable-ffmpeg help textMax Kellermann1-1/+1
2009-06-25NEWS: updated NEWS file for 0.15.1Max Kellermann1-1/+1
2009-06-24Modify version string to post-release version 0.16~gitAvuton Olrich1-1/+1
2009-06-23mpd version 0.15release-0.15Avuton Olrich1-1/+1