speling fix
[platform/upstream/libvorbis.git] / README
diff --git a/README b/README
index cde03cc..3ff8060 100644 (file)
--- a/README
+++ b/README
@@ -1,13 +1,12 @@
 ********************************************************************
 *                                                                  *
-* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
-* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
-* THE GNU LESSER/LIBRARY PUBLIC LICENSE 2, WHICH IS INCLUDED WITH  *
-* THIS SOURCE.  PLEASE READ THESE TERMS DISTRIBUTING.              *
+* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
+* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
+* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
+* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
 *                                                                  *
-* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
-* by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
-* http://www.xiph.org/                                             *
+* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
+* by the XIPHOPHORUS Company http://www.xiph.org/                  *
 *                                                                  *
 ********************************************************************
 
@@ -39,7 +38,7 @@ the Ogg Vorbis audio coding format.
 
 Directory:
 
-./lib                  The source for the libraries, an LGPLed inplementation of 
+./lib                  The source for the libraries, an LGPLed implementation of 
                the public domain Ogg Vorbis audio encoding
                format.
 
@@ -72,15 +71,15 @@ patent concerns.
 
 This package contains:
 
-.) libvorbis, an LGPLed software implementation of
+.) libvorbis, a BSD-license software implementation of
 the Vorbis specification by the Xiphophorus company
 (http://www.xiph.org/) 
 
-.) libvorbisfile, an LGPLed convenience library
+.) libvorbisfile, a BSD-license convenience library
 built on Vorbis designed to simplify common uses and a number of GPL
 example programs
 
-.) libvorbisenc, an LGPL library that provides a simple, programmatic
+.) libvorbisenc, a BSD-license library that provides a simple, programmatic
 encoding setup interface 
 
 .) example code making use of libogg, libvorbis, libvorbisfile and
@@ -93,14 +92,12 @@ Vorbis's homepage is located at 'http://www.xiph.org/ogg/vorbis/'.
 Up to date technical documents, contact information, source code and
 pre-built utilities may be found there.
 
-BUILD:
-
-A standard build should consist of nothing more than:
+BUILDING FROM CVS:
 
 ./autogen.sh
 make 
 
-and as root if desired :
+and as root if desired:
 
 make install
 
@@ -108,4 +105,39 @@ This will install the vorbis libraries (static and shared) into
 /usr/local/lib, includes into /usr/local/include and API manpages
 (once we write some) into /usr/local/man.
 
-$Id: README,v 1.6 2000/11/08 08:36:35 jack Exp $
+BUILDING FROM TARBALL DISTRIBUTIONS:
+
+./configure
+make
+
+and optionally (as root):
+make install
+
+BUILDING RPMS:
+
+after normal configuring:
+
+make dist
+rpm -ta libvorbis-<version>.tar.gz
+
+BUILDING ON MACOS 9:
+
+Vorbis on MacOS 9 is built using CodeWarrior 5.3.  To build it, first
+verify that the Ogg libraries are already built following the
+instructions in the Ogg module README.  Open vorbis/mac/libvorbis.mcp,
+switch to the "Targets" pane, select everything, and make the project.
+Do the same thing to build libvorbisenc.mcp, and libvorbisfile.mcp (in
+that order).  vorbis/mac/Output you will now have both debug and final
+versions of Vorbis shared libraries to link your projects against.
+
+To build a project using Ogg Vorbis, add access paths to your
+CodeWarrior project for the ogg/include, ogg/mac/Output,
+vorbis/include, and vorbis/mac/Output folders.  Be sure that
+"interpret DOS and Unix paths" is turned on in your project; it can
+be found in the "access paths" pane in your project settings.  Now
+simply add the shared libraries you need to your project (OggLib and
+VorbisLib at least) and #include "ogg/ogg.h" and "vorbis/codec.h"
+wherever you need to acces Ogg and Vorbis functionality.
+
+
+$Id: README,v 1.10 2001/03/22 01:16:22 segher Exp $