Mercurial > audlegacy
changeset 2692:6abffd68fa59 trunk
[svn] - make --enable-chardet default.
- now configure shows the configure status for chardet.
author | yaz |
---|---|
date | Mon, 30 Apr 2007 21:07:19 -0700 |
parents | ecfb79d60c3a |
children | b47f5577bea0 |
files | ChangeLog configure.ac src/audacious/build_stamp.c |
diffstat | 3 files changed, 19 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Apr 30 20:49:38 2007 -0700 +++ b/ChangeLog Mon Apr 30 21:07:19 2007 -0700 @@ -1,3 +1,18 @@ +2007-05-01 03:49:38 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> + revision [4408] + maintenance of build system: + - LIBDEP macro has been introduced as like audacious plugins r1888. + - make rules such as $(AR) cq $@ $(OBJECTS) in individual Makefile have been removed. these linkage will be done through objective.mk. + + trunk/mk/objective.mk | 2 +- + trunk/src/audacious/Makefile | 4 +++- + trunk/src/audacious/widgets/Makefile | 3 --- + trunk/src/intl/Makefile | 3 --- + trunk/src/libguess/Makefile | 4 ---- + trunk/src/librcd/Makefile | 4 ---- + 6 files changed, 4 insertions(+), 16 deletions(-) + + 2007-04-27 17:22:03 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [4406] - temporal workaround for a bug which introduced in r4360. without this patch, cuesheet plugin endlessly adds entries in a cue sheet to the current playlist.
--- a/configure.ac Mon Apr 30 20:49:38 2007 -0700 +++ b/configure.ac Mon Apr 30 21:07:19 2007 -0700 @@ -201,8 +201,8 @@ dnl chardet support dnl ======================== AC_ARG_ENABLE(chardet, - [ --enable-chardet enable character set detection support (default=no)], - enable_chardet=$enableval, enable_chardet=no) + [ --enable-chardet enable character set detection support (default=yes)], + enable_chardet=$enableval, enable_chardet=yes) if test "x$enable_chardet" = xyes; then AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] ) AC_CHECK_LIB(udet_c, detectCharset, [AC_DEFINE(HAVE_UDET, 1,[Define if the system has Mozilla universal character detector library]) CHARDET_LIBS=["$CHARDET_LIBS -ludet -ludet_c"]]) @@ -436,6 +436,7 @@ echo " Use one plugin dir: $enable_one_plugin_dir" echo " Allow user plugin dir: $enable_user_plugin_dir" echo +echo " Automatic character code detection: $enable_chardet" echo " Sample rate upconversion: $enable_samplerate" echo