aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* configure.ac: added --enable-werror, rewrote --enable-debugMax Kellermann2008-12-251-11/+18
| | | | "--enable-werror" adds "-Werror" to CFLAGS.
* configure.ac: moved CFLAGS settings to the bottomMax Kellermann2008-12-251-28/+42
|
* configure.ac: removed duplicate NLS optionMax Kellermann2008-12-251-11/+0
| | | | | There was --enable-nls in configure.ac, and --disable-nls in m4/nls.m4. Remove the first one, it wasn't working anyway.
* configure.ac: drop support for GLib < 2.4Max Kellermann2008-12-251-17/+3
| | | | | GLib 2.4 is required for proper NLS support. It is so old, we can safely remove support for GLib 2.2.
* configure.ac: clarify --enable-mini documentationMax Kellermann2008-12-241-1/+1
|
* configure.ac: display the correct default valuesMax Kellermann2008-12-151-2/+2
| | | | The artist and the outputs screen are both enabled by default.
* screen_text: new library for displaying large textsMax Kellermann2008-12-121-0/+1
| | | | Took a lot of code from screen_lyrics.
* plugin: new plugin libraryMax Kellermann2008-12-121-0/+2
| | | | The plugin library is based on code from lyrics.c.
* support: removed fallback strcasestr() implementationMax Kellermann2008-12-101-6/+0
| | | | | The code which used to call strcasestr() has been converted to match_line().
* screen_outputs: new screen to control MPD's output devicesMikael Svantesson2008-12-051-0/+13
| | | | | The "outputs" screen allows the user to enable or disable MPD's audio output devices.
* configure.ac: bumped version number to 0.13~gitMax Kellermann2008-12-051-1/+1
| | | | The development of version 0.13 has started!
* ncmpc version 0.12release-0.12Max Kellermann2008-12-051-1/+1
|
* configure.ac: disable color terminal support with --enable-miniMax Kellermann2008-12-051-1/+1
|
* configure.ac: disable the artist screen with --enable-miniMax Kellermann2008-12-051-1/+1
|
* po: added Hungarian translationLászló Áshin2008-12-041-1/+1
|
* ncmpc version 0.12~beta2Max Kellermann2008-11-281-1/+1
|
* ncmpc version 0.12~beta1Max Kellermann2008-11-251-1/+1
| | | | First beta version for the upcoming version 0.12.
* po: enabled Slovakian translationMax Kellermann2008-11-251-1/+1
| | | | | The Slovakian translation was added a while ago, but it was not enabled in configure.ac.
* screen_song: new screen which views song informationMax Kellermann2008-11-181-0/+14
| | | | | This new screen views all information available on a song: its location, file name, and tags.
* ncmpc version 0.12~alpha1Max Kellermann2008-11-171-1/+1
| | | | First alpha version for the upcoming version 0.12.
* configure.ac: enable color support by defaultMax Kellermann2008-11-171-1/+1
| | | | | Many users love colors. It would be too confusing for them to have color options in the configuration file, but no color support enabled.
* removed ChangeLog, added release dates to NEWSMax Kellermann2008-11-171-1/+1
| | | | | | | | The ChangeLog is useless, because it hasn't been updated in a while, and due to the nature of git, the log will never be lost. Switch to automake "foreign" mode, because "gnu" mandates the presence of ChangeLog.
* configure.ac: enable artist screen by defaultMax Kellermann2008-11-171-2/+2
| | | | | The artist screen has matured, and everybody should have it by default.
* configure.ac: require autoconf 2.60Max Kellermann2008-11-071-0/+1
|
* configure.ac, Makefile.am: removed subversion keywordsMax Kellermann2008-11-071-4/+0
| | | | Removed $Id$.
* configure.ac: remove misplaced commaMax Kellermann2008-11-071-1/+1
|
* configure.ac: added --disable-help-screenMax Kellermann2008-11-071-10/+12
|
* configure.ac: added --disable-nlsMax Kellermann2008-11-071-0/+13
| | | | | Option --disable-nls disables all NLS features, even if the system supports it.
* configure.ac: added option --enable-miniMax Kellermann2008-11-071-4/+26
| | | | | The option --enable-mini disables lots of features, and tries to create a ncmpc binary which fits on very small machines.
* configure.ac: renamed $use_wide to $enable_wideMax Kellermann2008-11-071-7/+7
|
* configure.ac: removed deprecated result lineMax Kellermann2008-11-071-6/+0
|
* configure.ac: added LIRC configure switchMax Kellermann2008-11-071-3/+13
| | | | Detect liblircclient with pkg-config.
* native LIRC support for ncmpcThomas Jansen2008-11-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | The attachment includes the patch and a sample .lircrc config for testing purposes (i. e. only a few commands are mapped to IR events). The config is rather simple to write: For each button add a block like this to ~/.lircrc: begin button = <button name from /etc/lircd.conf> prog = ncmpc config = <command name from src/command.c> end The patch is not finished, there are several problems that still need to be solved: 1. the configure.ac modifications are just for testing purposes and should be made optional with a parameter like --enable-lirc for ./configure. Unfortunately I'm not an expert on autoconfig tools. 2. LIRC example code [1] suggests looping over lirc_code2char, probably to have multiple actions that can be triggered from one button. Perhaps lirc_event(...) should be moved to lirc.c and be heavily modified, no longer being a mere copy of keyboard_event(...).
* Makefile.am: require automake 1.9Max Kellermann2008-11-071-1/+1
| | | | | Makefile.am uses several features which are not available in the ancient automake version 1.6. Let's just raise the bar to 1.9.
* configure.ac: disable libtoolMax Kellermann2008-11-071-5/+0
| | | | | libtool isn't required for the ncmpc build process, it only causes massive slowdown.
* configure.ac: disabled the C++ and fortran checksMax Kellermann2008-10-141-0/+4
| | | | | Why check for C++ and fortran compilers? This hack was borrowed from Qball's gmpc git repository.
* configure.ac: added option --disable-wideMax Kellermann2008-10-061-0/+36
| | | | | | The configure option "--disable-wide" disables wide character support. This simplifies lots of internal calculations and makes the ncmpc binary leaner.
* include ncursesw/ncurses.h if availableMax Kellermann2008-10-061-0/+5
| | | | | When compiling with libncursesw, include <ncursesw/ncurses.h> instead of <ncurses.h> (if available).
* disable ncurses raw modeMax Kellermann2008-10-061-12/+0
| | | | | We're better off doing our own signal handling, instead of switching ncurses to raw mode. Anyway, it was commented out and didn't work...
* Do not include libgen.h, it is unneeded after commit 44ecb.Emanuele Giaquinta2008-10-041-4/+0
|
* colors: make color support optional at compile timeMax Kellermann2008-10-031-0/+12
| | | | | Default is colors disabled. Those who love colorful terminals have the option to enable it with --enable-colors.
* use g_basename() instead of basename()Max Kellermann2008-10-031-1/+1
| | | | | g_basename() is always available, no need to implement a fallback. Also use g_path_get_dirname(), g_path_get_basename().
* configure.ac: define ENABLE_x_SCREEN instead of DISABLE_x_SCREENMax Kellermann2008-10-021-9/+8
| | | | | Everybody who uses the ENABLE_ macros has to include ncmpc.h. We're better off defining those in config.h via configure.ac.
* screen: don't compile disabled sourcesMax Kellermann2008-09-251-1/+7
| | | | | Instead of evaluating macros from config.h in the disabled source, don't start the compiler on it at all.
* configure: updated automake optionsMax Kellermann2008-09-251-1/+1
| | | | New automake options are "gnu 1.6 dist-bzip2". Sync with Makefile.am.
* Makefile: don't install disabled lyrics pluginsMax Kellermann2008-09-251-0/+2
| | | | Don't install the lyrics plugins if the lyrics screen is disabled.
* configure: fix default lyrics plugin directoryMax Kellermann2008-09-251-1/+8
| | | | | | | When the user does not specify "--prefix", ${prefix} is "NONE". This breaks the default lyrics plugin directory, which was "${prefix}/lib/ncmpc/lyrics". Fall back to ${ac_default_prefix} if ${prefix} is NONE.
* lyrics: configurable global plugin directoryMax Kellermann2008-09-231-0/+9
| | | | | The lyrics library loads all plugins from the directory configured with "--with-lyrics-plugin-dir".
* configure: removed unused lyrics checksMax Kellermann2008-09-231-14/+0
| | | | | Removed the commented checks for libraries which aren't being used anymore by the new lyrics code.
* configure: removed gthread testMax Kellermann2008-09-231-15/+0
| | | | | Threading has been disabled when I overhauled lyrics support. Remove all libgthread checks from configure.ac.