diff options
author | Andreas Obergrusberger <tradiaz@yahoo.de> | 2006-08-05 08:17:26 +0000 |
---|---|---|
committer | Andreas Obergrusberger <tradiaz@yahoo.de> | 2006-08-05 08:17:26 +0000 |
commit | 4cf9f458a9800e5a1be11e2a426cc0afb5283252 (patch) | |
tree | 7390302426eef16d823a9b0c361c99c9e6f47abb | |
parent | cfbf6179dbddab889b117aa6a8b1aa37daa2f60d (diff) | |
download | mpd-4cf9f458a9800e5a1be11e2a426cc0afb5283252.tar.gz mpd-4cf9f458a9800e5a1be11e2a426cc0afb5283252.tar.xz mpd-4cf9f458a9800e5a1be11e2a426cc0afb5283252.zip |
ChangeLog update because of the fixed search screen
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4554 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | ChangeLog | 20 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 15 insertions, 9 deletions
@@ -1,20 +1,24 @@ -2006-09-5 - * the 5th of august... it's dark around me... there are still flies constantly shitting - onto my screen's display surface and the search screen works now with new api +2006-09-5 Andreas Obergrusberger <tradiaz@yahoo.de> + * the 5th of august... it's dark around me... + there are still flies constantly shitting + onto my screen's display surface and the search + screen works now with new api of libmpdclient. enabled by default. + * building with lyrics screen on gentoo now works... thanks avuton :) -2006-09-4 +2006-09-4 Anderas Obergrusberger <tradiaz@yahoo.de> * tradiaz is temporary maintainer of a special branch of ncmpc now https://svn.musicpd.org/mpd/ncmpc/branches/tradiaz the development will go on there till kaw shows up again - contact him: tradiaz .AT. yahoo .DOT. de + contact him: tradiaz@yahoo.de - * added a lyrics screen. it downloads and shows lyrics from leoslyrics.com - (storing and reading lyrics to come) + * added a lyrics screen. it downloads and shows lyrics + from leoslyrics.com (storing and reading lyrics to come) have a look at the manpage for the lyrics_timeout config file option * catching signal SIGHUP now * host and port of mpd can be specified in the config file now - * libmpdclient update (the experimental search screen is making problems with the it) + * libmpdclient update (the experimental search screen + is making problems with the it) * enhanced compatibility of Makefile.am for automake * jat fixed a bug that occured when being in a non existing directory in the browse screen diff --git a/configure.ac b/configure.ac index 957db949d..3f8e222dc 100644 --- a/configure.ac +++ b/configure.ac @@ -137,11 +137,13 @@ PKG_CHECK_MODULES([GTHREAD], [gthread-2.0], [gthread=yes], [AC_MSG_WARN([gthread-2.0 >= 0.20 is required the lyrics screen])]) +AC_SUBST(GTHREAD_LIBS) +AC_SUBST(GTHREAD_CFLAGS) dnl check for libcurl PKG_CHECK_MODULES([libcurl], [libcurl], - [libcurl=yes], + [libcurl=yes,LIBS="$LIBS -lcurl"], [AC_MSG_WARN([libcurl is required for the lyrics screen])]) dnl check for expat |