diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-21 16:55:21 +0100 | 
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-02-23 20:34:56 +0100 | 
| commit | ca2293b3645452e58c9236ac0d8ab6e1be2fa2f0 (patch) | |
| tree | cf6166bcf003989128402b0b6ad7ea67a04cc24b /package/multimedia/mplayer | |
| parent | a3efb3a3bf0f7d1faa1117f572c11ffb1c96a3f4 (diff) | |
| download | buildroot-novena-ca2293b3645452e58c9236ac0d8ab6e1be2fa2f0.tar.gz buildroot-novena-ca2293b3645452e58c9236ac0d8ab6e1be2fa2f0.zip | |
mplayer: use UTF-8 charset to avoid iconv dependency
The mplayer configure script was failing with:
  Checking for iconv program ... no
  No working iconv program found, use
  --charset=UTF-8 to continue anyway.
  If you also have problems with iconv library functions use --charset=noconv.
  Messages in the GTK-2 interface will be broken then.
Therefore, we pass --charset=UTF-8 instead of --charset=US-ASCII.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/multimedia/mplayer')
| -rw-r--r-- | package/multimedia/mplayer/mplayer.mk | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/package/multimedia/mplayer/mplayer.mk b/package/multimedia/mplayer/mplayer.mk index 3d56ee007..538bac9ef 100644 --- a/package/multimedia/mplayer/mplayer.mk +++ b/package/multimedia/mplayer/mplayer.mk @@ -54,7 +54,7 @@ $(MPLAYER_DIR)/.configured: $(MPLAYER_DIR)/.unpacked  		--as=$(TARGET_CROSS)as \  		--with-extraincdir=$(STAGING_DIR)/usr/include \  		--with-extralibdir=$(STAGING_DIR)/lib \ -		--charset=US-ASCII \ +		--charset=UTF-8 \  		--enable-mad \  		--enable-fbdev \  		$(MPLAYER_ENDIAN) \ | 
