changeset 1056:8e58b7dc2bd1 trunk

[svn] - FILEWRITER_LIBS had been left blank if bash 3.0 was used for configure, since this version doesn't accept '+='.
author yaz
date Tue, 22 May 2007 08:26:53 -0700
parents 0cc6b35fbeb4
children ddb79127d9cf
files ChangeLog configure.ac
diffstat 2 files changed, 11 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue May 22 05:24:09 2007 -0700
+++ b/ChangeLog	Tue May 22 08:26:53 2007 -0700
@@ -1,3 +1,11 @@
+2007-05-22 12:24:09 +0000  Giacomo Lozito <james@develia.org>
+  revision [2276]
+  - evdev-plug 0.2: do not intercept all event types, currently only pick types KEY and ABSOLUTE; there could be other event types that are worth intercepting, feedback needed about this
+  trunk/src/evdev-plug/ed_common.h |    2 +-
+  trunk/src/evdev-plug/ed_ui.c     |   26 ++++++++++++++++++--------
+  2 files changed, 19 insertions(+), 9 deletions(-)
+
+
 2007-05-22 09:28:58 +0000  Giacomo Lozito <james@develia.org>
   revision [2274]
   - statusicon: partial rewrite of si_ui_statusicon_cb_hook_tchange , nicer this way
--- a/configure.ac	Tue May 22 05:24:09 2007 -0700
+++ b/configure.ac	Tue May 22 08:26:53 2007 -0700
@@ -1252,7 +1252,7 @@
    AC_CHECK_LIB(mp3lame -lm, lame_init, [have_lame=yes], [have_lame=no])
    if test "$have_lame" = yes; then
       AC_DEFINE(FILEWRITER_MP3, 1, [Define if Vorbis output part should be built])
-	  FILEWRITER_LIBS+=" -lmp3lame"
+	  FILEWRITER_LIBS="$FILEWRITER_LIBS -lmp3lame"
    fi
 fi
 
@@ -1267,7 +1267,7 @@
    [have_vorbisenc=yes], [have_vorbisenc=no])
    if test "$have_vorbisenc" = yes; then
       AC_DEFINE(FILEWRITER_VORBIS, 1, [Define if Vorbis output part should be built])
-      FILEWRITER_LIBS+=" -lvorbisenc"
+      FILEWRITER_LIBS="$FILEWRITER_LIBS  -lvorbisenc"
    fi
 fi
 
@@ -1283,7 +1283,7 @@
    )
    if test "$have_writer_flac" = yes; then
       AC_DEFINE(FILEWRITER_FLAC, 1, [Define if FLAC output part should be built])
-	  FILEWRITER_LIBS+=" -lFLAC"
+	  FILEWRITER_LIBS="$FILEWRITER_LIBS  -lFLAC"
    fi
 fi