aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
2007-06-172 critical bugs in leoslyrics lyrics src fixedAndreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@6630 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2007-03-23updated configure.acAndreas Obergrusberger1-2/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5730 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2007-01-03added a plugin system for lyrics sourcesAndreas Obergrusberger1-13/+113
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5217 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-05fixed building on systems with libncursesw but without <ncursesw/ncurses.h> ↵Andreas Obergrusberger1-3/+12
like Arch Linux git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4563 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-05translation updates, template and german. another little build fixAndreas Obergrusberger1-3/+10
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4555 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-05ChangeLog update because of the fixed search screenAndreas Obergrusberger1-1/+3
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4554 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-04search screen works now using the new tag searching apiAndreas Obergrusberger1-6/+3
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4550 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-04the updated sourcesAndreas Obergrusberger1-3/+60
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4543 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-03-31Added danish translationKalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3982 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-03-28Fallback to ncurses if ncursesw is missingKalle Wallin1-3/+12
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3961 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-03-28check for recv/send/gethostbyname/socket/connect (solaris)Kalle Wallin1-0/+15
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3959 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-03-28Galician translation from Johám-Luís Miguéns VilaKalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3958 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-01-22Use libncursesw by defaultKalle Wallin1-6/+7
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3856 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-01-16included patch from Jonathan ForsKalle Wallin1-0/+9
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3832 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-06-11support wide-char ncurses library (ncursesw)Kalle Wallin1-21/+21
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3325 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-06-06Added an experimental artist (browser) screenKalle Wallin1-0/+12
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3322 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-06-06Added Norwegian translations from Ole R. ThorsenKalle Wallin1-1/+13
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3321 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-06-01German translation updatesKalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3305 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-01-23Version updateKalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2899 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-01-20French translation from Yann CézardKalle Wallin1-2/+2
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2892 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-01-03Mark the search screen as experimental and disable it by defaultKalle Wallin1-3/+3
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2870 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-01-03Added Russian translations from Nikolay PavlovKalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2867 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-11-15Added a search screenKalle Wallin1-9/+31
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2668 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-21¡Español!Kalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1888 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-12Added configure option --disable-raw-modeKalle Wallin1-0/+12
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1855 09075e82-0dd4-0310-85a5-a0d7c8717e4f