X-Authentication-Warning: delorie.com: mail set sender to geda-help-bounces using -f X-Recipient: geda-help AT delorie DOT com Message-ID: <20140427164308.18539.qmail@stuge.se> Date: Sun, 27 Apr 2014 18:43:08 +0200 From: Peter Stuge To: geda-help AT delorie DOT com Subject: Re: [geda-help] Which Debina-Package do I have to install? make geda-gaf git version 1.9.1-20140308-80-g62aede2 under Debian Wheezy fails due to missing glib. Mail-Followup-To: geda-help AT delorie DOT com References: <535A1445 DOT 4060108 AT philippklostermann DOT de> <20140425093528 DOT 24599 DOT qmail AT stuge DOT se> <4ec21d206984a3bc291bb9baefc33eb8 AT net2air DOT co> <20140425094534 DOT 25362 DOT qmail AT stuge DOT se> <423b9c44d06df6dd5da8d70cf885a813 AT net2air DOT co> <535CEB5C DOT 8050304 AT philippklostermann DOT de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <535CEB5C.8050304@philippklostermann.de> Reply-To: geda-help AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-help AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Philipp Klostermann wrote: > I can't find anything else, that has to do with gio .. > I guess I have to install glib from the source-package No not neccessarily. That's only the very last resort. > www.gtk.org, but how does this work with the glib that already is on my > box? I guess can't simply unistall beforehand, because many other > packages depend on it. > Does anyone have a hint for me, before I start messing up my box? If you do end up needing to install glib from source then install it into a different prefix than where the system glib is installed. But please run this command on your system first: pkg-config --cflags --libs gio-2.0 The output of this command on my system looks like this: -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -lgio-2.0 -lgobject-2.0 -lglib-2.0 You should get a similar output from the command. The problem is that geda-gaf's configure.ac doesn't depend on gio in the geda-gaf code that you're trying to build. Peter Brett has fixed this issue in commit 1b785642 on 2014-03-13. Update your code to current git://git.geda-project.org/geda-gaf master, then run autogen.sh, then re-run configure and make. If your pkg-config output is sane it should build. //Peter