summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/Makefile3
-rwxr-xr-xmp3lib/mp3lib_objfix.sh14
2 files changed, 17 insertions, 0 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index f3230990bc..31dd14f231 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -42,6 +42,9 @@ endif
libMP3.a: $(OBJS)
$(AR) r libMP3.a $(OBJS)
+ifeq ($(TARGET_OS),CYGWIN)
+ ./mp3lib_objfix.sh
+endif
test1: libMP3.a test.c
$(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. -L. -lMP3 -lm
diff --git a/mp3lib/mp3lib_objfix.sh b/mp3lib/mp3lib_objfix.sh
new file mode 100755
index 0000000000..efc6f5f809
--- /dev/null
+++ b/mp3lib/mp3lib_objfix.sh
@@ -0,0 +1,14 @@
+#!/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
+