GNOME Bugzilla – Bug 681076
"gnet" optional dependancy? autogen.sh crashes
Last modified: 2012-08-03 07:18:06 UTC
I just cloned https://github.com/bdoin/GCompris to my local machine (gentoo linux) and wanted to compile. But "sh autogen.sh" tells me: ---------------------------- 8< ---------------------------- [...] checking for AUDIO... yes checking wether we build with GNET (if not, networking will be disabled)... yes checking for GNET... no configure: error: *** GNET not found! ---------------------------- >8 ---------------------------- and exits with "$? = 1". It is correct, I have not installed gnet. But I read "if not, networking will be disabled" as: "Having gnet not installed, you can compile GCompris, but networking will not work". That would be exactly what I want. But I can't compile, since autogen.sh terminates with an error. --------------------------------- As a workaround I simply will install gnet, but I think this might be a bug in autogen.sh.
This bug might be spare, if gnet will be removed completely. See bug #593656
You must use the command: sh configure --disable-gnet
Thanks for the reply! So I run the following? 1. sh configure --disable-gnet 2. sh autogen.sh 3. make Or does "configure" replace "autogen"?
I found the answer myself: Running "sh autogen.sh" prints: -------------------- 8< -------------------- **Warning**: I am going to run `configure' with no arguments. If you wish to pass any to it, please specify them on the `autogen.sh' command line. -------------------- >8 --------------------