bitwriter: Fix inclusion of header in C++ code
[platform/upstream/gstreamer.git] / scripts / create-uninstalled-setup.sh
index 3a8244d..05aa7a1 100755 (executable)
@@ -6,6 +6,9 @@
 # Little shell script that creates a fresh GStreamer uninstalled setup in
 # your home directory.
 #
+# This is the legacy uninstalled setup for autotools. There is also the
+# gst-build module which provides the same using the meson build system.
+#
 # ----------------------------------------------------------------------------
 #
 # Copyright (C) 2011-2015 Tim-Philipp Müller <tim centricular net>
@@ -35,6 +38,9 @@ BRANCH="master"
 # set to "ssh" if you have a developer account and ssh access
 GIT_ACCESS="anongit"
 
+# extra clone options
+#CLONE_OPTS="--depth=1 --no-single-branch"
+
 # re-use and reference local master branch checkout if one already exists
 # (saves network bandwidth)
 REUSE_EXISTING_MASTER_CHECKOUT="true"
@@ -110,9 +116,9 @@ do
   fi
 
   if test "$GIT_ACCESS" = "ssh"; then
-    git clone $REF ssh://git.freedesktop.org/git/gstreamer/$m
+    git clone $CLONE_OPTS $REF git@gitlab.freedesktop.org:gstreamer/$m
   else
-    git clone $REF git://anongit.freedesktop.org/gstreamer/$m
+    git clone $CLONE_OPTS $REF https://gitlab.freedesktop.org/gstreamer/$m.git
   fi
 
   cd $m
@@ -157,8 +163,4 @@ echo "into --prefix=$UNINSTALLED_ROOT/$BRANCH/prefix and it should be picked up"
 echo "by autogen.sh/configure"
 echo
 echo "==========================================================================================="
-#echo
-#echo "Also see http://gstreamer.freedesktop.org/wiki/UninstalledSetup"
-#echo
-#echo "==========================================================================================="