After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 666071 - [autogen.sh]: error when the gst-plugins-bad from git
[autogen.sh]: error when the gst-plugins-bad from git
Status: VERIFIED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Windows
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2011-12-13 09:49 UTC by bcxa.sz
Modified: 2011-12-13 10:12 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description bcxa.sz 2011-12-13 09:49:24 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?
Comment 1 Sebastian Dröge (slomo) 2011-12-13 09:54:09 UTC
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.
Comment 2 bcxa.sz 2011-12-13 09:57:01 UTC
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?
Comment 3 Tim-Philipp Müller 2011-12-13 10:04:31 UTC
There's a .gitmodules file in the top-level directory, you can edit that.
Comment 4 bcxa.sz 2011-12-13 10:12:07 UTC
Fixed after I do:

git clone http://anongit.freedesktop.org/git/gstreamer/common.git
Comment 5 bcxa.sz 2011-12-13 10:12:27 UTC
(In reply to comment #3)
> There's a .gitmodules file in the top-level directory, you can edit that.

Thanks for your advice