A "working" version of Mau's transcoder.
[xiph/unicode.git] / libshout / INSTALL
blob3c1cabeb2cace792841d8bffc3caaac2c1c9667b
1 Prerequisites
2 -------------
4 libvorbis
5 libogg
7 Both of these libraries must be installed before you can build
8 libshout. If they aren't available in your OS's package system, you
9 can find them at vorbis.com.
11 Building
12 --------
14 Normally, just ./configure; make
16 You may need to specify --with-ogg-prefix and/or --with-vorbis-prefix
17 if you have installed those libraries in a non-standard
18 location. The arguments to these will match the --prefix you used when
19 configuring ogg and vorbis, respectively.
21 You may also choose to build libshout without thread safety, with the
22 --disable-pthread argument to configure. Only do this if you know you
23 will never be using the library in a threaded application, or if you
24 intend to make all calls to libshout threadsafe by hand in your
25 calling application.
27 Installation
28 ------------
29 (as root) make install
31 This will install header files in $(prefix)/shout and library files in
32 $(prefix)/lib.
34 configure will have detected whether or not you have pkg-config
35 automatically. If you have, it will place a pkg-config data file in
36 $(prefix)/lib/pkgconfig, otherwise it will place a shout-config script
37 in $(prefix)/bin. You can force libshout to use shout-config instead
38 of pkgconfig with the configure option --disable-pkgconfig.
40 $Id: INSTALL,v 1.1 2003/06/13 23:04:23 brendan Exp $