summaryrefslogtreecommitdiff
path: root/docs/random
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2012-09-28 20:38:20 +0100
committerTim-Philipp Müller <tim@centricular.net>2012-09-28 20:38:20 +0100
commitf02ba3b5727f1c4f5c63488df9560a4f66573970 (patch)
tree809358ad11e188920019422d913ee98eaa10bd29 /docs/random
parent91a20a90eb11166cbbcbe848f7c0000ac3ac63c8 (diff)
docs: purge all mention of liboil, update FAQ
https://bugzilla.gnome.org/show_bug.cgi?id=673285
Diffstat (limited to 'docs/random')
-rw-r--r--docs/random/autotools8
-rw-r--r--docs/random/moving-plugins2
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/random/autotools b/docs/random/autotools
index 585c49d08..08e04fae6 100644
--- a/docs/random/autotools
+++ b/docs/random/autotools
@@ -39,15 +39,15 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_DEP, true)
first column when running gst-inspect
- For the checks, in the simplest case, use something like:
- GST_PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.2)
+ GST_PKG_CHECK_MODULES(FOO, foo-0.3 >= 0.3.2)
This will:
- do the check
- show a decent message if it can't find it, without failing
- - set HAVE_LIBOIL to yes or no
- - set LIBOIL_CFLAGS and LBOIL_LIBS
+ - set HAVE_FOO to yes or no
+ - set FOO_CFLAGS and FOO_LIBS
- if you want to make sure configure fails when this dependency is missing,
use:
- GST_PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.2, yes)
+ GST_PKG_CHECK_MODULES(FOO, libfoo-0.3 >= 0.3.2, yes)
- if your library does not come with a .pc file, you have to roll your own
check
diff --git a/docs/random/moving-plugins b/docs/random/moving-plugins
index 43bea5f05..0d2d31ab0 100644
--- a/docs/random/moving-plugins
+++ b/docs/random/moving-plugins
@@ -84,7 +84,7 @@ CHECKLIST
sys/: plug-ins that include system headers/link to system libraries;
usually platform-dependent as well
name after whatever system "thing" they use (oss, v4l, ...)
- gst/: plug-ins with no external dependencies, only GLib/GStreamer/liboil
+ gst/: plug-ins with no external dependencies, only GLib/GStreamer/liborc
ext/: plug-ins with external dependencies
- The plug-in is documented: