GNOME Bugzilla – Bug 666071
[autogen.sh]: error when the gst-plugins-bad from git
Last modified: 2011-12-13 10:12:27 UTC
I want to exercise the teltextdec in gst-plugins-bad. But it is not in the latest official release. 1. get from the git with command: ======================================== git clone http://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad.git 2. running autogen.sh faced error: ======================================== [liud@fedora14 gst-plugins-bad-teltextdec-git-2]$ git config --get http.proxy http://liud:liud2222@lps3.amk.st.com:8080 [liud@fedora14 gst-plugins-bad-teltextdec-git-2]$ ./autogen.sh + Setting up common submodule Submodule 'common' (git://anongit.freedesktop.org/gstreamer/common) registered for path 'common' Cloning into common... fatal: Unable to look up anongit.freedesktop.org (port 9418) (Name or service not known) Clone of 'git://anongit.freedesktop.org/gstreamer/common' into submodule path 'common' failed There is something wrong with your source tree. You are missing common/gst-autogen.sh ======================================== With git config --get http.proxy, I can see the http proxy has been correctly set. What shall I do? Anything missing in my side?
fatal: Unable to look up anongit.freedesktop.org (port 9418) (Name or service not known) This is the real problem here, your network connection had some problems.
It can be blocked by the firewall. Do you think it is possible to change 'git://anongit.freedesktop.org/gstreamer/common' to http protocol? If yes, where I can change and how to change?
There's a .gitmodules file in the top-level directory, you can edit that.
Fixed after I do: git clone http://anongit.freedesktop.org/git/gstreamer/common.git
(In reply to comment #3) > There's a .gitmodules file in the top-level directory, you can edit that. Thanks for your advice