changeset 44:e27d735eaa21 trunk

[svn] - configure option for chardet was missing.
author yaz
date Wed, 20 Sep 2006 22:20:52 -0700
parents 3e9c308cea60
children c8d93594e5f1
files ChangeLog configure.ac
diffstat 2 files changed, 22 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Sep 20 08:25:46 2006 -0700
+++ b/ChangeLog	Wed Sep 20 22:20:52 2006 -0700
@@ -1,3 +1,13 @@
+2006-09-20 15:25:46 +0000  Jonathan Schleifer <js@h3c.de>
+  revision [86]
+  Added some missing targets for the .a files
+  
+
+  Changes:        Modified:
+  +3 -0           trunk/src/modplug/archive/Makefile  
+  +3 -0           trunk/src/modplug/gui/Makefile  
+
+
 2006-09-20 07:51:18 +0000  William Pitcock <nenolod@nenolod.net>
   revision [84]
   - cleanups
--- a/configure.ac	Wed Sep 20 08:25:46 2006 -0700
+++ b/configure.ac	Wed Sep 20 22:20:52 2006 -0700
@@ -134,6 +134,17 @@
 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes)
 AC_SUBST(USE_IPV6)
 
+dnl chardet support
+dnl ========================
+AC_ARG_ENABLE(chardet,
+	[  --enable-chardet	  enable character set detection support (default=no)],
+			enable_chardet=$enableval, enable_chardet=no)
+if test "x$enable_chardet" = xyes; then
+    AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] )
+fi
+AM_CONDITIONAL(USE_CHARDET,test "x$enable_chardet" = xyes)
+AC_SUBST(USE_CHARDET)
+
 dnl plugin stuff
 dnl ========================
 
@@ -1097,7 +1108,7 @@
 echo "  Paranormal Visualization Library:       $have_paranormal"
 echo
 echo "  Container"
-echo "  -------------"
+echo "  ---------"
 echo "  Winamp PLS playlist format (pls):       yes"
 echo "  M3U playlist format (m3u):              yes"
 echo "  XML Sharable Playlist Format (xspf):    $have_xspf"