[MPlayer-cvslog] r28939 - trunk/configure
    reimar 
    subversion at mplayerhq.hu
       
    Fri Mar 13 17:42:43 CET 2009
    
    
  
Author: reimar
Date: Fri Mar 13 17:42:42 2009
New Revision: 28939
Log:
Fix compilation with --charset=noconv
Modified:
   trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu Mar 12 12:55:26 2009	(r28938)
+++ trunk/configure	Fri Mar 13 17:42:42 2009	(r28939)
@@ -7768,13 +7768,11 @@ fi #if test "$_gui"
 # --------------- GUI specific tests end -------------------
 
 
-if test "$_charset" = "noconv" ; then
-  _charset=""
-fi
-if test "$_charset" ; then
+if test "$_charset" != "noconv" ; then
   def_charset="#define MSG_CHARSET \"$_charset\""
 else
   def_charset="#undef MSG_CHARSET"
+  _charset="UTF-8"
 fi
 
 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
    
    
More information about the MPlayer-cvslog
mailing list