aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* oggvorbis: define HAVE_OGGVORBIS when tremor is enabledMax Kellermann2009-01-15
| | | | When tremor (libvorbisidec) is used, HAVE_OGGVORBIS was not defined.
* configure.ac: added the --enable-sqlite optionMax Kellermann2009-01-12
| | | | | | MPD will (optionall) use sqlite databases in the future. Add a configure option to enable that. There is no code yet to really use sqlite, so the practical use of this patch is limited.
* configure.ac: removed duplicate PKG_PROG_PKG_CONFIGMax Kellermann2009-01-11
|
* configure.ac: declare MPD_LIBS and MPD_CFLAGS firstMax Kellermann2009-01-06
| | | | | Declare and initialize MPD_LIBS and MPD_CFLAGS before the "OS specific defaults" section.
* configure.ac: moved checks to argument declarations IMax Kellermann2009-01-05
| | | | | | Zeroconf, curl, libsamplerate. No libid3tag for now, because libid3tag should be automatically disabled when no decoders using it are enabled.
* configure.ac: moved checks to argument declarations IMax Kellermann2009-01-05
| | | | | Don't separate basic options from their according tests. Due to lots of interdependencies, we won't do that for the plugins yet.
* configure.ac: reordered plugin typesMax Kellermann2009-01-05
| | | | | Print input plugins first, then archive, metadatab, decoder, converter, encoder, output plugins.
* configure.ac: moved build options downMax Kellermann2009-01-05
| | | | | Initialize the CFLAGS (warnings, errors) after all the libraries, because some library checks may be broken with -Werror or -pedantic.
* configure.ac: use AC_CHECK_HEADERS to check for locale.hMax Kellermann2009-01-05
| | | | | AC_CHECK_HEADERS defines HAVE_LOCALE_H, so we don't have to manually define HAVE_LOCALE.
* configure.ac: moved mandatory checks upMax Kellermann2009-01-05
| | | | | First do the checks for mandatory stuff (libc features, glib, pkg-config), then all the options.
* configure.ac: removed obsolete checksMax Kellermann2009-01-05
| | | | Don't check for inttypes.h and langinfo.h.
* use GLib byte order macrosMax Kellermann2009-01-05
|
* configure.ac: disable ID3 support when libid3tag was not foundMax Kellermann2009-01-05
| | | | Fix a typo.
* configure.ac: detect libid3tag without pkg-configMax Kellermann2009-01-04
| | | | | | 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.
* configure.ac: link with -lws2_32 on WIN32Max Kellermann2009-01-03
| | | | All socket functions are provided by ws2_32.dll.
* main: use the GLib main loopMax Kellermann2008-12-30
| | | | | | | 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.
* zeroconf: moved code to zeroconf-avahi.c and zeroconf-bonjour.cMax Kellermann2008-12-30
| | | | | Moved implementation specific code to their own sources, internal declarations in zeroconf-internal.h.
* main: use g_setenv() instead of setenv()Max Kellermann2008-12-29
| | | | Removed the fallback setenv() implementation for solaris.
* configure.ac: append archive libraries to $MPD_LIBSMax Kellermann2008-12-29
| | | | | All archive plugins used to overwrite $MPD_LIBS, ignoring the existing value. Make them append instead, keeping the old value.
* configure.ac: check for archive libraries only if enabledMax Kellermann2008-12-29
| | | | | Don't bother to look for libbz2, libzzip and libiso9660 if the plugins are disabled.
* configure.ac: removed pthread checksMax Kellermann2008-12-29
| | | | We're now using GLib threading.
* log: support syslog()Max Kellermann2008-12-28
| | | | Allow logging to syslog if log_file is configured to "syslog".
* decoder: new plugin using modplug libraryViliam Mateicka2008-12-28
|
* configure.ac: fixed description to bzip2 compile optionViliam Mateicka2008-12-27
|
* Add an "Archive support" section to the configure results screen.Avuton Olrich2008-12-27
|
* Change configure time option to be bzip2 rather than bz2.Avuton Olrich2008-12-27
|
* Fix text string to show bz2 rather than rar.Avuton Olrich2008-12-27
|
* disable archive API without pluginsMax Kellermann2008-12-27
| | | | | When there are no archive plugins, we do not need the archive API at all. Drop all its overhead.
* configure.ac: moved archive library checks to optionsMax Kellermann2008-12-27
| | | | | | 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.
* Merge branch 'experimental' of git://git.musicpd.org/metyl/mpdMax Kellermann2008-12-27
|\ | | | | | | | | | | | | | | Conflicts: configure.ac src/ls.h src/output/shout_plugin.c
| * archiveapi: archive plugin for ISO filesViliam Mateicka2008-12-16
| |
| * archiveapi: archive plugin for ZIP filesViliam Mateicka2008-12-16
| |
| * archiveapi: archive plugin for BZ2 filesViliam Mateicka2008-12-16
| |
* | Check for pkg-config before using itQball Cow2008-12-27
| |
* | Modify version string to post-release version 0.15~gitAvuton Olrich2008-12-25
| |
* | MPD version 0.14Avuton Olrich2008-12-25
| |
* | configure.ac: renamed shout optionsMax Kellermann2008-12-24
| | | | | | | | configure options should use the dash instead of the underscore.
* | configure.ac: fix --enable-un documentationMax Kellermann2008-12-24
| | | | | | | | Unix domain socket support is enabled by default.
* | configure.ac: disable the mikmod plugin by defaultMax Kellermann2008-12-24
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Build makefiles after checking available outputs and decoder pluginsQball Cow2008-12-22
| | | | | | | | Move the AC_OUTPUT below the checks. So you nicely see what goes wrong.
* | MPD version 0.14~beta3Avuton Olrich2008-12-20
| |
* | configure.ac: check lame availability before shout_mp3 testMax Kellermann2008-12-17
| | | | | | | | | | If lame was not available, the shout_mp3 plugin was enabled anyway, and triggered compiler errors.
* | configure.ac: disable shout when no encoder is foundMax Kellermann2008-12-17
| | | | | | | | | | First check if an ecoder plugin is available, then determine whether to enable the shout output plugin.
* | configure.ac: added libcurl to configure summaryjefromi2008-12-14
| | | | | | | | | | | | | | | | 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.
* | MPD version 0.14~beta2Avuton Olrich2008-12-02
|/
* MPD version 0.14~beta1Avuton Olrich2008-11-23
|
* doc: process protocol.xml with xmltoMax Kellermann2008-11-20
| | | | Generate and install protocol.html if xmlto is available.
* aac: detect whether to pass "uint32_t*" to NeAACDecInit2()Max Kellermann2008-11-16
| | | | | | | | | 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*".
* MPD version 0.14~alpha3Avuton Olrich2008-11-14
|
* MPD version 0.14~alpha2Avuton Olrich2008-11-13
|