summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@freedesktop.org>2015-04-02 16:44:16 -0700
committerJoe Rayhawk <jrayhawk@freedesktop.org>2015-04-02 16:44:16 -0700
commit5e4433e7d19cd384a7df333661f11ffe7af11c4d (patch)
treef101844b0852f1adaa3209003bb1c986c2c65225
parent93ffbd1aaaf5b41099f356616c7bbb981bcd5884 (diff)
moin2mdwn: convert page UninstalledSetup
-rw-r--r--UninstalledSetup.mdwn24
-rw-r--r--UninstalledSetup.moin23
2 files changed, 24 insertions, 23 deletions
diff --git a/UninstalledSetup.mdwn b/UninstalledSetup.mdwn
new file mode 100644
index 0000000..f248185
--- /dev/null
+++ b/UninstalledSetup.mdwn
@@ -0,0 +1,24 @@
+
+It is possible to hack on or develop against a so-called 'uninstalled' version of GStreamer.
+
+This means you can just checkout and build a copy of GStreamer somewhere in your home directory and test it without affecting your system installation.
+
+If needed, you can also install newer versions of libraries GStreamer requires into the uninstalled directory without those libraries affecting your system installation. This is particularly useful if you want to play with the latest GStreamer 0.11, but don't have a bleeding edge GLib version yet.
+
+All of this relies heavily on libtool, so how well this works depends a bit on how your distro patches libtool, but it should work fine at least with debian sid and most versions of ubuntu.
+
+(An alternative to using an uninstalled setup is jhbuild)
+
+There is a [[small script|http://cgit.freedesktop.org/gstreamer/gstreamer/tree/scripts/create-uninstalled-setup.sh]] to create a basic uninstalled setup and checkout for the master branch (=0.11/1.0) or 0.10 branch (without actually compiling the modules though), you can get it from here: [[http://cgit.freedesktop.org/gstreamer/gstreamer/tree/scripts/create-uninstalled-setup.sh|http://cgit.freedesktop.org/gstreamer/gstreamer/tree/scripts/create-uninstalled-setup.sh]] .
+
+**Important: you may need to install a fairly large number of packages in order to build a fully-featured GStreamer with plugins.** Check out the [[BuildDependenciesFedora|BuildDependenciesFedora]] page or the [[BuildDependenciesDebianUbuntu|BuildDependenciesDebianUbuntu]] page for some hints.
+
+By default git versions of GStreamer are compiled with `-Werror`, which means the build will abort with an error if anything causes a compiler warning.
+
+If this happens, for whatever reason, please file a bug with the details (warning message etc.). You can work around it either by doing:
+
+
+[[!format txt """
+make ERROR_CFLAGS='' ERROR_CXXFLAGS=''
+"""]]
+or by passing `--disable-fatal-warnings` to ./autogen.sh
diff --git a/UninstalledSetup.moin b/UninstalledSetup.moin
deleted file mode 100644
index 5957e93..0000000
--- a/UninstalledSetup.moin
+++ /dev/null
@@ -1,23 +0,0 @@
-It is possible to hack on or develop against a so-called 'uninstalled' version of GStreamer.
-
-This means you can just checkout and build a copy of GStreamer somewhere in your home directory and test it without affecting your system installation.
-
-If needed, you can also install newer versions of libraries GStreamer requires into the uninstalled directory without those libraries affecting your system installation. This is particularly useful if you want to play with the latest GStreamer 0.11, but don't have a bleeding edge GLib version yet.
-
-All of this relies heavily on libtool, so how well this works depends a bit on how your distro patches libtool, but it should work fine at least with debian sid and most versions of ubuntu.
-
-(An alternative to using an uninstalled setup is jhbuild)
-
-There is a [[http://cgit.freedesktop.org/gstreamer/gstreamer/tree/scripts/create-uninstalled-setup.sh|small script]] to create a basic uninstalled setup and checkout for the master branch (=0.11/1.0) or 0.10 branch (without actually compiling the modules though), you can get it from here: http://cgit.freedesktop.org/gstreamer/gstreamer/tree/scripts/create-uninstalled-setup.sh .
-
-'''Important: you may need to install a fairly large number of packages in order to build a fully-featured GStreamer with plugins.''' Check out the BuildDependenciesFedora page or the BuildDependenciesDebianUbuntu page for some hints.
-
-By default git versions of GStreamer are compiled with {{{-Werror}}}, which means the build will abort with an error if anything causes a compiler warning.
-
-If this happens, for whatever reason, please file a bug with the details (warning message etc.). You can work around it either by doing:
-
-{{{
-make ERROR_CFLAGS='' ERROR_CXXFLAGS=''
-}}}
-
-or by passing {{{--disable-fatal-warnings}}} to ./autogen.sh