aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
2008-09-22configure: modern AC_INIT and AM_INIT_AUTOMAKE invocationMax Kellermann1-3/+2
Provide program name and version in AC_INIT. Add the option "dist-bzip2" to AM_INIT_AUTOMAKE.
2008-09-21generate po/Makefile.in instead of bundling itJ. Alexander Treuman1-1/+1
The previously bundled po/Makefile.in would use predefined variables that should be set by the configure script. f.e., $prefix was defined as /usr/local, and caused po files to always be installed there instead of in the prefix given to ./configure.
2008-09-21configure.ac: don't enable the lyrics screen by defaultJ. Alexander Treuman1-1/+1
The configure help text already said the lyrics screen was disabled by default. Now it actually will be.
2008-09-19properly configure M4 macro dirunK1-0/+1
Add information about the M4 macro dir ./m4/ to both configure.ac and Makefile.am.
2008-09-18removed the clock screenMax Kellermann1-12/+0
Why should an audio player display a large clock?
2008-09-16use a C99 compilerMax Kellermann1-1/+1
2008-09-16lyrics: converted in-process plugins to external programsMax Kellermann1-124/+1
In-process plugins are very problematic. It is much easier and flexible to move the lyrics plugins to external programs, with a trivial protocol. This is work in progress, among the things missing: - protocol specification, including exit codes - plugin installation - plugin search directory - run-time configuration (currently hard coded) - automatic polling (using glib's main loop?) - better and more robust error handling
2008-09-16don't use libncursesw if libncurses was selectedMax Kellermann1-15/+0
No idea what this code was intended for, but if the user chooses libncurses, ncmpc shouldn't override this manual choice if it finds libncursesw.
2008-09-16set version to 0.12~gitMax Kellermann1-1/+1
We are on git now, and since we are doing major changes, increase the version number.
2008-09-15use !NDEBUG instead of DEBUGMax Kellermann1-1/+3
NDEBUG is more commonly used than DEBUG, e.g. in assert.h. Convert all macros to NDEBUG, and declare NDEBUG when debugging is disabled.
2008-09-15enable gcc warningsMax Kellermann1-1/+16
Enable all useful warnings which were also enabled in MPD. Steal m4/mpd_check_cflag.m4 from MPD.