Mercurial > mplayer.hg
annotate mp3lib/mp3lib_objfix.sh @ 4274:f5759bbdd7be
-alang/-slang fixed
author | arpi |
---|---|
date | Sun, 20 Jan 2002 00:39:54 +0000 |
parents | f1efe9e55647 |
children | d3b889d54a7a |
rev | line source |
---|---|
4244 | 1 #!/bin/sh |
2 # This script fixes up symbol mangling in GNU as code of mp3lib. | |
3 # (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A | |
4 # This file is licensed under the GPL, more info at http://www.fsf.org/ | |
5 for i in \ | |
6 "CpuDetect" \ | |
7 "ipentium" \ | |
8 "a3dnow" \ | |
9 "isse" | |
10 do | |
11 echo "fixing: $i=_$i" | |
12 objcopy --redefine-sym "$i=_$i" libMP3.a | |
13 done | |
14 |