summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-29 21:42:36 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-29 21:42:36 +0000
commit9ab3c3b38cd1bec3177df1093b3de0fef36c0a8a (patch)
treee9570e683b8533da5269ff157f239206b1230c6a
parent167a917d9221cd00174e6eeee0f2f5c8cd84246e (diff)
downloadmpv-9ab3c3b38cd1bec3177df1093b3de0fef36c0a8a.tar.bz2
mpv-9ab3c3b38cd1bec3177df1093b3de0fef36c0a8a.tar.xz
OpenBSD patch - by Björn Sandell <biorn@dce.chalmers.se>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5910 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--DOCS/documentation.html7
-rw-r--r--mp3lib/Makefile4
2 files changed, 5 insertions, 6 deletions
diff --git a/DOCS/documentation.html b/DOCS/documentation.html
index d934765837..2bbbbf8acc 100644
--- a/DOCS/documentation.html
+++ b/DOCS/documentation.html
@@ -1614,20 +1614,17 @@ Anyone has closer info?</P>
/usr/ports/devel/gmake), native BSD make will not work, and a recent
binutils (including objcopy).</P>
-<P>Presently you must give the option '<CODE>--disable-mpdvdkit</CODE>' to
-configure, else it won't compile.</P>
-
<P>Due to limitations in different versions of gas (relocation vs mmx),
you'll need to compile in two steps: First make sure that the
non-native as is first in PATH and do a '<CODE>gmake -k</CODE>', then make sure
-that the native version i used an do '<CODE>gmake</CODE>'.</P>
+that the native version is used and do '<CODE>gmake</CODE>'.</P>
<P>To use Win32 DLLs with <B>MPlayer</B> you will need to re-compile the
kernel with "<CODE>option USER_LDT</CODE>".</P>
<P>If <B>MPlayer</B> complains about not finding '/dev/cdrom' or
'/dev/dvd' make a symbolic link, eg <CODE>ln -s
-/dev/(your_cdrom_device) /dev/cdrom</CODE></P>
+/dev/rcd0c /dev/dvd</CODE></P>
<P><B><A NAME=A>Appendix A - Authors</A></B></P>
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index 11c18b2497..64be72ec23 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -38,7 +38,9 @@ libMP3.a: $(OBJS)
ifeq ($(TARGET_OS),CYGWIN)
./mp3lib_objfix.sh
endif
-
+ifeq ($(TARGET_OS),OpenBSD)
+ ./mp3lib_objfix.sh
+endif
test1: libMP3.a test.c
$(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. -L. -lMP3 -lm