summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 23:29:41 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-04 23:29:41 +0000
commitadc876c7c04b5e35accd89559913b624d58312f5 (patch)
tree3271c725ccb3e684df17b28f0a2cae27c68aa1a8 /DOCS
parented8794eefa6ee1ac9c7a9ccfa99a0875f255b9c4 (diff)
downloadmpv-adc876c7c04b5e35accd89559913b624d58312f5.tar.bz2
mpv-adc876c7c04b5e35accd89559913b624d58312f5.tar.xz
a little (my first!) patch to add some info about MPlayer on Irix 6.5 to
documentation.html and some changes to the configure script + Makefile to support optional different "install" location and change ranlib to ar when Irix is detected. Steffen Boelaars <mplayer.development@graphicscave.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8354 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/documentation.html26
1 files changed, 24 insertions, 2 deletions
diff --git a/DOCS/documentation.html b/DOCS/documentation.html
index 610b70e648..c454cca363 100644
--- a/DOCS/documentation.html
+++ b/DOCS/documentation.html
@@ -1616,8 +1616,30 @@ end
<H2><A NAME="sgi">6.5 Silicon Graphics / IRIX</A></H2>
-<P>Reported working. You'll probably have to use the <I>SGI</I> ao driver.
- Anyone has closer info?</P>
+<P>You can either try to install the GNU install program, and (if you did not
+ put it in your global path) then point to the location with:</P>
+<PRE>
+ ./configure --install-path=PATH
+</PRE>
+<P>Or you can use the default install delivered with IRIX 6.5 in which case you
+ will have to edit the Makefile a littlebit by hand. Change the following two
+ lines:</P>
+<PRE>
+ $(INSTALL) -c -m 644 DOCS/mplayer.1 $(MANDIR)/man1/mplayer.1
+
+ $(INSTALL) -c -m 644 etc/codecs.conf $(CONFDIR)/codecs.conf
+</PRE>
+<P>to:</P>
+<PRE>
+ $(INSTALL) -m 644 mplayer.1 $(MANDIR)/man1/
+
+ $(INSTALL) -m 644 codecs.conf $(CONFDIR)/
+</PRE>
+<P>And then do (from within the MPlayer source dir):</P>
+<PRE>
+ cp DOCS/mplayer.1 . ; cp etc/codecs.conf .
+</PRE>
+<P>and then go on with building and installing.</P>
<H2><A NAME="qnx">6.6 QNX</A></H2>