Mercurial > audlegacy-plugins
diff configure.ac @ 44:e27d735eaa21 trunk
[svn] - configure option for chardet was missing.
| author | yaz |
|---|---|
| date | Wed, 20 Sep 2006 22:20:52 -0700 |
| parents | f15e55bc0e60 |
| children | c8d93594e5f1 |
line wrap: on
line diff
--- 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"
