summaryrefslogtreecommitdiff
path: root/docs/manual
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-04-04 13:13:52 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-04-04 14:28:55 +0200
commitb0d89da6b66021bc8677b9785998b12b6a00676a (patch)
tree5e4ce2dffca4125e05d96bf47b1fb17b61cd1217 /docs/manual
parent6a0e594ebcadbe8d9e32819579072920ef422274 (diff)
gst: Change versioning
Remove GST_MAJORMINOR and replace it by GST_API_VERSION Also set GST_VERSION_{MAJOR,MINOR,MICRO,NANO} explicitely now. All versions are at 1.0.0 now for the release soon but API/ABI can still change until the 1.0.0 release. Next release versions until 1.0.0 will be 0.10.9X and these will be release candidates. GST_VERSION_* will nonetheless stay at 1.0.0.0.
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/basics-helloworld.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/basics-helloworld.xml b/docs/manual/basics-helloworld.xml
index 55399fbb6..46360ddaf 100644
--- a/docs/manual/basics-helloworld.xml
+++ b/docs/manual/basics-helloworld.xml
@@ -223,7 +223,7 @@ main (int argc,
<para>
To compile the helloworld example, use: <command>gcc -Wall
helloworld.c -o helloworld
- $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;)</command>.
+ $(pkg-config --cflags --libs gstreamer-&GST_API_VERSION;)</command>.
&GStreamer; makes use of <command>pkg-config</command> to get compiler
and linker flags needed to compile this application.
</para>
@@ -238,7 +238,7 @@ main (int argc,
setup (ie. gst-uninstalled), you will need to use libtool to build the
hello world program, like this: <command>libtool --mode=link gcc -Wall
helloworld.c -o helloworld
- $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;)</command>.
+ $(pkg-config --cflags --libs gstreamer-&GST_API_VERSION;)</command>.
</para>
<para>
You can run this example application with <command>./helloworld