From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Keith Wright Newsgroups: gmane.lisp.guile.user Subject: What libunistring does guile need? Date: Sun, 19 Nov 2023 22:01:35 -0500 Message-ID: <87msv91628.fsf@keithdiane.us> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="16521"; mail-complaints-to="usenet@ciao.gmane.io" To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Mon Nov 20 04:02:35 2023 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1r4uYV-0004C3-Hq for guile-user@m.gmane-mx.org; Mon, 20 Nov 2023 04:02:35 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r4uXa-0007lR-VE; Sun, 19 Nov 2023 22:01:38 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r4uXZ-0007lG-V6 for guile-user@gnu.org; Sun, 19 Nov 2023 22:01:37 -0500 Original-Received: from fcx1.keithdiane.us ([209.222.4.146]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1r4uXY-00050W-Im for guile-user@gnu.org; Sun, 19 Nov 2023 22:01:37 -0500 Original-Received: from fcs26 (035-149-240-156.res.spectrum.com [35.149.240.156]) by fcx1.localdomain (Postfix) with ESMTP id 703ED2C; Sun, 19 Nov 2023 22:01:35 -0500 (EST) Received-SPF: none client-ip=209.222.4.146; envelope-from=kwright@keithdiane.us; helo=fcx1.keithdiane.us X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:19310 Archived-At: I am trying to install guile from source tarball. Of course, I had to install a couple of other things (gmp,m4,etc.) but that's done. gmp from source, other things with apt-get. I'm stuck on libunistring. It seems libunistring is not in Debian but I have libunistring2 already installed: kwright@fcs26:~/.build/guile-3.0.9$ ./configure configure: error: GNU libunistring is required, please insstall it. root@fcs26:~# apt-get install libunistring E: Unable to locate package libunistring root@fcs26:~# apt-get install libunistring2 libunistring2 is already the newest version (1.0-2). What should I do? -- Keith