From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Guix package for gnutls-guile Date: Fri, 17 Jun 2016 15:54:36 +0200 Message-ID: <87ziqjvs2r.fsf@gnu.org> References: <87a8in4x3t.fsf@gnu.org> <87wplrfnts.fsf@gnu.org> <874m8s7ovg.fsf@gnu.org> <45eb0ac6-e9b4-2c0c-36b5-f1af6596f3dc@tobias.gr> <87oa70xn68.fsf@gnu.org> <87k2honrnq.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41330) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDuEQ-0008JL-4L for help-guix@gnu.org; Fri, 17 Jun 2016 09:54:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bDuEM-000331-Rm for help-guix@gnu.org; Fri, 17 Jun 2016 09:54:46 -0400 In-Reply-To: <87k2honrnq.fsf@gnu.org> (Roel Janssen's message of "Fri, 17 Jun 2016 10:30:49 +0200") List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Roel Janssen Cc: help-guix@gnu.org Roel Janssen skribis: [...] >>>> I still get the following error output: >>>> ;;; Failed to autoload make-session in (gnutls): >>>> ;;; ERROR: missing interface for module (gnutls) >>>> ERROR: In procedure module-lookup: Unbound variable: make-session [...] > My Guile paths are fine: > > [rjanssen2@localhost ~]$ env | grep guile > GUILE_LOAD_PATH=3D"/home/rjanssen2/.guix-profile/share/guile/site/2.0" > GUILE_LOAD_COMPILED_PATH=3D"/home/rjanssen2/.guix-profile/lib/guile/2.0/c= cache:/home/rjanssen2/.guix-profile/share/guile/site/2.0" > > And I verified that: > /home/rjanssen2/.guix-profile/share/guile/site/2.0/gnutls.scm > exists. > > Is there anything else that can cause this error output? Can you try =E2=80=9Cguile -c '(use-modules (gnutls))'=E2=80=9D? The GnuTLS bindings are written in C, with guile-gnutls.so being dlopened when (gnutls) is loaded. Dlopening may fail if, for instance, guile-gnutls.so is linked against a different libc than guile. Thus, you have to use Guile and GnuTLS both from Guix, or both from your other distro; you cannot mix them. HTH! Ludo=E2=80=99.