diff options
author | henry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-05-04 09:17:31 +0000 |
---|---|---|
committer | henry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-05-04 09:17:31 +0000 |
commit | c42387410410ca0d7cab2298cffba7f58573c21d (patch) | |
tree | 3719de62733278d0df67f766d9a1bb43170f8d03 | |
parent | 0cadc124e72f9c9b89bb348f7491754a003b49f3 (diff) |
force C locale to assure consistent behavior of toupper()
Signed off by Ismail Donmez - ismail at kde org tr
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15339 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6899,7 +6899,7 @@ FAAC_LIB=$_ld_faac AMR_NB=$_amr_nb AMR_NB_FIXED=$_amr_nb_fixed AMR_WB=$_amr_wb -`echo $_libavcodecs | awk '{$0=toupper($0)}1' | sed 'y/& /&\n/;s/\([-_a-zA-Z0-9]*\)/CONFIG_\1=yes/g'` +`echo $_libavcodecs | LC_ALL=C awk '{$0=toupper($0)}1' | sed 'y/& /&\n/;s/\([-_a-zA-Z0-9]*\)/CONFIG_\1=yes/g'` # --- Some stuff for autoconfigure ---- $_target_arch @@ -7229,7 +7229,7 @@ $_def_amr_nb_fixed $_def_amr_wb /* Use specific codecs from libavcodec */ -`echo $_libavcodecs | awk '{$0=toupper($0)}1' | sed 'y/& /&\n/;s/\([-_a-zA-Z0-9]*\)/#define CONFIG_\1 1/g'` +`echo $_libavcodecs | LC_ALL=C awk '{$0=toupper($0)}1' | sed 'y/& /&\n/;s/\([-_a-zA-Z0-9]*\)/#define CONFIG_\1 1/g'` /* Use codec libs included in mplayer CVS / source dist: */ $_def_mp3lib |