From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.user Subject: Re: ossaulib dbus error Date: Tue, 22 Jul 2014 17:23:55 +0100 Message-ID: <5258c9e150cf04263eea8f5572803729@ossau.homelinux.net> References: <53CE8AAD.1050902@campus.tu-berlin.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1406046292 6448 80.91.229.3 (22 Jul 2014 16:24:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 22 Jul 2014 16:24:52 +0000 (UTC) Cc: guile-user@gnu.org To: Max Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Tue Jul 22 18:24:44 2014 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1X9crp-0005AO-JR for guile-user@m.gmane.org; Tue, 22 Jul 2014 18:24:41 +0200 Original-Received: from localhost ([::1]:40203 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9crp-00043M-2E for guile-user@m.gmane.org; Tue, 22 Jul 2014 12:24:41 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46323) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9crY-000439-Fb for guile-user@gnu.org; Tue, 22 Jul 2014 12:24:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9crQ-0001Mv-UX for guile-user@gnu.org; Tue, 22 Jul 2014 12:24:24 -0400 Original-Received: from out1.ip05ir2.opaltelecom.net ([62.24.128.241]:22947) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9crQ-0001MA-Ol for guile-user@gnu.org; Tue, 22 Jul 2014 12:24:16 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhEKALCPzlNOkRDrPGdsb2JhbABZgw6DUFGEN8QWgxcBgRAXBAEBAQE4NoQEAQUjFR4jEAQEAxgCAiYCAiwNChQGG4g+qGKXJhcYgRSINIVrB4J4gU4FmyeXejw X-IPAS-Result: AhEKALCPzlNOkRDrPGdsb2JhbABZgw6DUFGEN8QWgxcBgRAXBAEBAQE4NoQEAQUjFR4jEAQEAxgCAiYCAiwNChQGG4g+qGKXJhcYgRSINIVrB4J4gU4FmyeXejw X-IronPort-AV: E=Sophos;i="5.01,710,1400022000"; d="scan'208";a="562437975" Original-Received: from host-78-145-16-235.as13285.net (HELO arudy) ([78.145.16.235]) by out1.ip05ir2.opaltelecom.net with ESMTP; 22 Jul 2014 17:23:57 +0100 Original-Received: by arudy (Postfix, from userid 33) id B92B03808F; Tue, 22 Jul 2014 17:23:55 +0100 (BST) X-PHP-Originating-Script: 0:rcmail.php In-Reply-To: <53CE8AAD.1050902@campus.tu-berlin.de> X-Sender: neil@ossau.homelinux.net User-Agent: Roundcube Webmail/0.9.5 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 62.24.128.241 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:11350 Archived-At: On 2014-07-22 17:00, Max wrote: > Hi. > > I'm trying to use dbus from ossaulib (as far as I recall it's the only > dbus library > for guile which is still alive) but got errors from the very beginning: > _____ > (set! %load-path (append %load-path '("/home/lol/source/ossaulib/"))) > > (use-modules (oop goops) (gnome gobject) (gnome glib) (gnome gtk) > (glib dbus) (os > process) (gnome gobject utils)) > _____ > > > guile-gnome-2 dbus-test.scm > > ;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0 > ;;; or pass the --no-auto-compile argument to disable. > ;;; compiling /home/god/source/lisp/dbus-test.scm > ;;; WARNING: compilation of /home/god/source/lisp/dbus-test.scm failed: > ;;; ERROR: no code for module (glib dbus) > > Any ideas why guile does not see it? > > I've checked ossaulib/ and glib/dbus.scm is right there. You're clearly also using guile-gnome. I wonder if there's also a (glib ...) hierarchy provided by guile-gnome, and if that might be conflicting with the (glib ...) modules in ossaulib? You could try renaming the "glib" directory in ossaulib to something else, and correspondingly replacing (glib ...) throughout the ossaulib source. If there is a conflict with guile-gnome, that should avoid it. Regards, Neil