aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-12-25configure.ac: added --enable-werror, rewrote --enable-debugMax Kellermann1-11/+18
"--enable-werror" adds "-Werror" to CFLAGS.
2008-12-25configure.ac: moved CFLAGS settings to the bottomMax Kellermann1-28/+42
2008-12-25configure.ac: removed duplicate NLS optionMax Kellermann1-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.
2008-12-25configure.ac: drop support for GLib < 2.4Max Kellermann1-17/+3
GLib 2.4 is required for proper NLS support. It is so old, we can safely remove support for GLib 2.2.
2008-12-24configure.ac: clarify --enable-mini documentationMax Kellermann1-1/+1
2008-12-15configure.ac: display the correct default valuesMax Kellermann1-2/+2
The artist and the outputs screen are both enabled by default.
2008-12-12screen_text: new library for displaying large textsMax Kellermann1-0/+1
Took a lot of code from screen_lyrics.
2008-12-12plugin: new plugin libraryMax Kellermann1-0/+2
The plugin library is based on code from lyrics.c.
2008-12-10support: removed fallback strcasestr() implementationMax Kellermann1-6/+0
The code which used to call strcasestr() has been converted to match_line().
2008-12-05screen_outputs: new screen to control MPD's output devicesMikael Svantesson1-0/+13
The "outputs" screen allows the user to enable or disable MPD's audio output devices.
2008-12-05configure.ac: bumped version number to 0.13~gitMax Kellermann1-1/+1
The development of version 0.13 has started!
2008-12-05ncmpc version 0.12release-0.12Max Kellermann1-1/+1
2008-12-05configure.ac: disable color terminal support with --enable-miniMax Kellermann1-1/+1
2008-12-05configure.ac: disable the artist screen with --enable-miniMax Kellermann1-1/+1
2008-12-04po: added Hungarian translationLászló Áshin1-1/+1
2008-11-28ncmpc version 0.12~beta2Max Kellermann1-1/+1
2008-11-25ncmpc version 0.12~beta1Max Kellermann1-1/+1
First beta version for the upcoming version 0.12.
2008-11-25po: enabled Slovakian translationMax Kellermann1-1/+1
The Slovakian translation was added a while ago, but it was not enabled in configure.ac.
2008-11-18screen_song: new screen which views song informationMax Kellermann1-0/+14
This new screen views all information available on a song: its location, file name, and tags.
2008-11-17ncmpc version 0.12~alpha1Max Kellermann1-1/+1
First alpha version for the upcoming version 0.12.
2008-11-17configure.ac: enable color support by defaultMax Kellermann1-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.
2008-11-17removed ChangeLog, added release dates to NEWSMax Kellermann1-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.
2008-11-17configure.ac: enable artist screen by defaultMax Kellermann1-2/+2
The artist screen has matured, and everybody should have it by default.
2008-11-07configure.ac: require autoconf 2.60Max Kellermann1-0/+1
2008-11-07configure.ac, Makefile.am: removed subversion keywordsMax Kellermann1-4/+0
Removed $Id$.
2008-11-07configure.ac: remove misplaced commaMax Kellermann1-1/+1
2008-11-07configure.ac: added --disable-help-screenMax Kellermann1-10/+12
2008-11-07configure.ac: added --disable-nlsMax Kellermann1-0/+13
Option --disable-nls disables all NLS features, even if the system supports it.
2008-11-07configure.ac: added option --enable-miniMax Kellermann1-4/+26
The option --enable-mini disables lots of features, and tries to create a ncmpc binary which fits on very small machines.
2008-11-07configure.ac: renamed $use_wide to $enable_wideMax Kellermann1-7/+7
2008-11-07configure.ac: removed deprecated result lineMax Kellermann1-6/+0
2008-11-07configure.ac: added LIRC configure switchMax Kellermann1-3/+13
Detect liblircclient with pkg-config.
2008-11-07native LIRC support for ncmpcThomas Jansen1-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(...).
2008-11-07Makefile.am: require automake 1.9Max Kellermann1-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.
2008-11-07configure.ac: disable libtoolMax Kellermann1-5/+0
libtool isn't required for the ncmpc build process, it only causes massive slowdown.
2008-10-14configure.ac: disabled the C++ and fortran checksMax Kellermann1-0/+4
Why check for C++ and fortran compilers? This hack was borrowed from Qball's gmpc git repository.
2008-10-06configure.ac: added option --disable-wideMax Kellermann1-0/+36
The configure option "--disable-wide" disables wide character support. This simplifies lots of internal calculations and makes the ncmpc binary leaner.
2008-10-06include ncursesw/ncurses.h if availableMax Kellermann1-0/+5
When compiling with libncursesw, include <ncursesw/ncurses.h> instead of <ncurses.h> (if available).
2008-10-06disable ncurses raw modeMax Kellermann1-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...
2008-10-04Do not include libgen.h, it is unneeded after commit 44ecb.Emanuele Giaquinta1-4/+0
2008-10-03colors: make color support optional at compile timeMax Kellermann1-0/+12
Default is colors disabled. Those who love colorful terminals have the option to enable it with --enable-colors.
2008-10-03use g_basename() instead of basename()Max Kellermann1-1/+1
g_basename() is always available, no need to implement a fallback. Also use g_path_get_dirname(), g_path_get_basename().
2008-10-02configure.ac: define ENABLE_x_SCREEN instead of DISABLE_x_SCREENMax Kellermann1-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.
2008-09-25screen: don't compile disabled sourcesMax Kellermann1-1/+7
Instead of evaluating macros from config.h in the disabled source, don't start the compiler on it at all.
2008-09-25configure: updated automake optionsMax Kellermann1-1/+1
New automake options are "gnu 1.6 dist-bzip2". Sync with Makefile.am.
2008-09-25Makefile: don't install disabled lyrics pluginsMax Kellermann1-0/+2
Don't install the lyrics plugins if the lyrics screen is disabled.
2008-09-25configure: fix default lyrics plugin directoryMax Kellermann1-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.
2008-09-23lyrics: configurable global plugin directoryMax Kellermann1-0/+9
The lyrics library loads all plugins from the directory configured with "--with-lyrics-plugin-dir".
2008-09-23configure: removed unused lyrics checksMax Kellermann1-14/+0
Removed the commented checks for libraries which aren't being used anymore by the new lyrics code.
2008-09-23configure: removed gthread testMax Kellermann1-15/+0
Threading has been disabled when I overhauled lyrics support. Remove all libgthread checks from configure.ac.