Mercurial > mplayer.hg
view mp3lib/mp3lib_objfix.sh @ 4600:bcaeff069237
"Here is the correct patch again, some changes for the old ones and a patch for
the german cd-dvd.html. Video-docs (and gcc-docs) needs still work. The rest
should be up-to-date."
- Jonas Jermann
author | gabucino |
---|---|
date | Sat, 09 Feb 2002 09:28:23 +0000 |
parents | f1efe9e55647 |
children | d3b889d54a7a |
line wrap: on
line source
#!/bin/sh # This script fixes up symbol mangling in GNU as code of mp3lib. # (c)2001-2002 by Felix Buenemann <atmosfear at users.sourceforge.net>A # This file is licensed under the GPL, more info at http://www.fsf.org/ for i in \ "CpuDetect" \ "ipentium" \ "a3dnow" \ "isse" do echo "fixing: $i=_$i" objcopy --redefine-sym "$i=_$i" libMP3.a done