comparison 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
comparison
equal deleted inserted replaced
43:3e9c308cea60 44:e27d735eaa21
131 if test "x$enable_ipv6" = xyes; then 131 if test "x$enable_ipv6" = xyes; then
132 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] ) 132 AC_DEFINE(USE_IPV6,, [Define if building with IPv6 support] )
133 fi 133 fi
134 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes) 134 AM_CONDITIONAL(USE_IPV6,test "x$enable_ipv6" = xyes)
135 AC_SUBST(USE_IPV6) 135 AC_SUBST(USE_IPV6)
136
137 dnl chardet support
138 dnl ========================
139 AC_ARG_ENABLE(chardet,
140 [ --enable-chardet enable character set detection support (default=no)],
141 enable_chardet=$enableval, enable_chardet=no)
142 if test "x$enable_chardet" = xyes; then
143 AC_DEFINE(USE_CHARDET, 1, [Define if character set detection enabled] )
144 fi
145 AM_CONDITIONAL(USE_CHARDET,test "x$enable_chardet" = xyes)
146 AC_SUBST(USE_CHARDET)
136 147
137 dnl plugin stuff 148 dnl plugin stuff
138 dnl ======================== 149 dnl ========================
139 150
140 dnl Ok, first we find out what flags we need to use. 151 dnl Ok, first we find out what flags we need to use.
1095 echo " -------------" 1106 echo " -------------"
1096 echo " Blur Scope: yes" 1107 echo " Blur Scope: yes"
1097 echo " Paranormal Visualization Library: $have_paranormal" 1108 echo " Paranormal Visualization Library: $have_paranormal"
1098 echo 1109 echo
1099 echo " Container" 1110 echo " Container"
1100 echo " -------------" 1111 echo " ---------"
1101 echo " Winamp PLS playlist format (pls): yes" 1112 echo " Winamp PLS playlist format (pls): yes"
1102 echo " M3U playlist format (m3u): yes" 1113 echo " M3U playlist format (m3u): yes"
1103 echo " XML Sharable Playlist Format (xspf): $have_xspf" 1114 echo " XML Sharable Playlist Format (xspf): $have_xspf"
1104 echo 1115 echo
1105 1116