aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* configure: modern AC_INIT and AM_INIT_AUTOMAKE invocationMax Kellermann2008-09-221-3/+2
| | | | | Provide program name and version in AC_INIT. Add the option "dist-bzip2" to AM_INIT_AUTOMAKE.
* generate po/Makefile.in instead of bundling itJ. Alexander Treuman2008-09-211-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.
* configure.ac: don't enable the lyrics screen by defaultJ. Alexander Treuman2008-09-211-1/+1
| | | | | The configure help text already said the lyrics screen was disabled by default. Now it actually will be.
* properly configure M4 macro dirunK2008-09-191-0/+1
| | | | | Add information about the M4 macro dir ./m4/ to both configure.ac and Makefile.am.
* removed the clock screenMax Kellermann2008-09-181-12/+0
| | | | Why should an audio player display a large clock?
* use a C99 compilerMax Kellermann2008-09-161-1/+1
|
* lyrics: converted in-process plugins to external programsMax Kellermann2008-09-161-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
* don't use libncursesw if libncurses was selectedMax Kellermann2008-09-161-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.
* set version to 0.12~gitMax Kellermann2008-09-161-1/+1
| | | | | We are on git now, and since we are doing major changes, increase the version number.
* use !NDEBUG instead of DEBUGMax Kellermann2008-09-151-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.
* enable gcc warningsMax Kellermann2008-09-151-1/+16
| | | | | Enable all useful warnings which were also enabled in MPD. Steal m4/mpd_check_cflag.m4 from MPD.
* 2 critical bugs in leoslyrics lyrics src fixedAndreas Obergrusberger2007-06-171-0/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@6630 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* updated configure.acAndreas Obergrusberger2007-03-231-2/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5730 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* added a plugin system for lyrics sourcesAndreas Obergrusberger2007-01-031-13/+113
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5217 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* fixed building on systems with libncursesw but without <ncursesw/ncurses.h> ↵Andreas Obergrusberger2006-08-051-3/+12
| | | | | | like Arch Linux git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4563 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* translation updates, template and german. another little build fixAndreas Obergrusberger2006-08-051-3/+10
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4555 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* ChangeLog update because of the fixed search screenAndreas Obergrusberger2006-08-051-1/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4554 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* search screen works now using the new tag searching apiAndreas Obergrusberger2006-08-041-6/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4550 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* the updated sourcesAndreas Obergrusberger2006-08-041-3/+60
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4543 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added danish translationKalle Wallin2006-03-311-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3982 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Fallback to ncurses if ncursesw is missingKalle Wallin2006-03-281-3/+12
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3961 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* check for recv/send/gethostbyname/socket/connect (solaris)Kalle Wallin2006-03-281-0/+15
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3959 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Galician translation from Johám-Luís Miguéns VilaKalle Wallin2006-03-281-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3958 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Use libncursesw by defaultKalle Wallin2006-01-221-6/+7
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3856 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* included patch from Jonathan ForsKalle Wallin2006-01-161-0/+9
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3832 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* support wide-char ncurses library (ncursesw)Kalle Wallin2005-06-111-21/+21
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3325 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added an experimental artist (browser) screenKalle Wallin2005-06-061-0/+12
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3322 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added Norwegian translations from Ole R. ThorsenKalle Wallin2005-06-061-1/+13
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3321 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* German translation updatesKalle Wallin2005-06-011-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3305 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Version updateKalle Wallin2005-01-231-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2899 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* French translation from Yann CézardKalle Wallin2005-01-201-2/+2
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2892 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Mark the search screen as experimental and disable it by defaultKalle Wallin2005-01-031-3/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2870 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added Russian translations from Nikolay PavlovKalle Wallin2005-01-031-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2867 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added a search screenKalle Wallin2004-11-151-9/+31
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2668 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* ¡Español!Kalle Wallin2004-07-211-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1888 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added configure option --disable-raw-modeKalle Wallin2004-07-121-0/+12
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1855 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Fixed short option handling for multiple short options at once (-abcde)Kalle Wallin2004-07-121-5/+5
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1846 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Updated version to 0.11.0Kalle Wallin2004-07-091-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1819 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* display a warning when NLS is disabled by AM_GLIB_GNU_GETTEXTKalle Wallin2004-07-061-1/+4
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1798 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added german translations from OgigKalle Wallin2004-07-031-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1786 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Replaced the debug macro with a functionKalle Wallin2004-07-031-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1780 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added basic ncurses mouse supportKalle Wallin2004-07-021-0/+5
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1770 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Removed popt code/dependencyKalle Wallin2004-07-011-12/+32
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1761 09075e82-0dd4-0310-85a5-a0d7c8717e4f