From: omnic Date: Wed, 28 Jun 2000 10:55:03 +0000 (+0000) Subject: Added README.debian to explain shared library situation (pending) X-Git-Tag: v1.3.3~1193 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ee3a12e46aa157f779eb7336764c4e142d43cff;p=platform%2Fupstream%2Flibvorbis.git Added README.debian to explain shared library situation (pending) Modified control to move the -dev package to the devel section Modified README.examples to explain various bits and pieces about compiling the examples. Michael svn path=/trunk/vorbis/; revision=509 --- diff --git a/debian/README.debian b/debian/README.debian new file mode 100644 index 0000000..aa3db80 --- /dev/null +++ b/debian/README.debian @@ -0,0 +1,14 @@ +Ogg Vorbis for Debian +--------------------- + +Ogg Vorbis currently does not have a shared library. it is a goal for the +future, but presently, any compiling using the codec should be done as +follows: + + gcc [flags] -c X.c + gcc [flags] /usr/lib/vorbisfile.a /usr/lib/libvorbis.a \ + X.o -o X + +Of course, only include the .a's that are required for your program. + + -- Michael Beattie , Mon, 26 Jun 2000 18:59:56 +1200 diff --git a/debian/README.examples b/debian/README.examples index 8ad70b8..a759886 100644 --- a/debian/README.examples +++ b/debian/README.examples @@ -1,7 +1,11 @@ Example tools using vorbis. The examples/ directory contains some example source files to build tools -using the vorbis codec. the makefile is only included to show how they are -compiled. it will *not* work. +using the vorbis codec. The Makefile is only included to show how they are +compiled. It contains relative references to the libraries in the source +tree, so it will *not* work without being edited first. + +The misc.h included in chaining_example and seeking_test just allows the +use of a debugging malloc. (defined in misc.c) It is safe to comment out. -- Michael Beattie , Mon, 26 Jun 2000 18:59:56 +1200 diff --git a/debian/control b/debian/control index 9b27829..b989faa 100644 --- a/debian/control +++ b/debian/control @@ -5,6 +5,7 @@ Maintainer: Michael Beattie Standards-Version: 3.0.1 Package: libvorbis-dev +Section: devel Architecture: any Description: The OGG Vorbis lossy audio compression codec. This Package contains the development library's and header files for