summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-03 21:52:35 +0000
committerkraymer <kraymer@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-03 21:52:35 +0000
commit630302ad63e98fcdd96509c91a3c92ed03af9cbb (patch)
tree0f6dd9a6701ab33bc70526fe46877355ae8edd2b /configure
parent157b4b952e1f2745986b8aaecfaf0969aca69c7c (diff)
downloadmpv-630302ad63e98fcdd96509c91a3c92ed03af9cbb.tar.bz2
mpv-630302ad63e98fcdd96509c91a3c92ed03af9cbb.tar.xz
remove charset files (all of them are in UTF-8 now anyway)
change build system accordingly git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20650 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 3 insertions, 5 deletions
diff --git a/configure b/configure
index c97c29f6e8..feec169dd2 100755
--- a/configure
+++ b/configure
@@ -7151,8 +7151,6 @@ if test "$_charset" = "noconv" ; then
_charset=""
elif test -z "$_charset" ; then
if test "$_gtk1" = yes ; then
- _charset=`cat ${_mp_help}.charset`
- else
_charset="UTF-8"
fi
fi
@@ -7162,18 +7160,18 @@ else
_def_charset="#undef MSG_CHARSET"
fi
-if test "$_charset" = `cat ${_mp_help}.charset` ; then
+if test "$_charset" = "UTF-8" ; then
# hack to disable conversion in the Makefile
_charset=""
fi
if test "$_charset" ; then
echocheck "iconv program"
-iconv -f `cat ${_mp_help}.charset` -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
+iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
if test "$?" -ne 0 ; then
echores "no"
echo "No working iconv program found, use "
- echo "--charset=`cat ${_mp_help}.charset` to continue anyway."
+ echo "--charset=UTF-8 to continue anyway."
echo "If you also have problems with iconv library functions use --charset=noconv."
echo "Messages in the GTK-2 interface will be broken then."
exit 1