From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: bug#29186: building guile-emacs fails: required libaries not found: libjpeg Date: Tue, 07 Nov 2017 00:53:24 -0500 Message-ID: <874lq6hbxn.fsf@netris.org> References: <87po8vm4iv.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eBwpp-0004Y7-RJ for bug-guix@gnu.org; Tue, 07 Nov 2017 00:54:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eBwpm-0005Fb-P5 for bug-guix@gnu.org; Tue, 07 Nov 2017 00:54:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:46391) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eBwpm-0005FV-LQ for bug-guix@gnu.org; Tue, 07 Nov 2017 00:54:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eBwpm-0004h8-7d for bug-guix@gnu.org; Tue, 07 Nov 2017 00:54:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87po8vm4iv.fsf@gnu.org> (Jan Nieuwenhuizen's message of "Mon, 06 Nov 2017 23:22:16 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Jan Nieuwenhuizen Cc: 29186@debbugs.gnu.org Jan Nieuwenhuizen writes: > guix build guile-emacs fails with > > checking jerror.h usability... yes > checking jerror.h presence... yes > checking for jerror.h... yes > checking for jpeg_destroy_compress in -ljpeg... yes > configure: WARNING: libjpeg found, but not version 6b or later > checking for library containing inflateEnd... -lz > checking for png... yes > checking whether png_longjmp is declared... yes > checking tiffio.h usability... yes > checking tiffio.h presence... yes > checking for tiffio.h... yes > checking for TIFFGetVersion in -ltiff... yes > checking gif_lib.h usability... yes > checking gif_lib.h presence... yes > checking for gif_lib.h... yes > checking for GifMakeMapObject in -lgif... yes > configure: error: The following required libraries were not found: > libjpeg > Maybe some development libraries/packages are missing? > If you don't want to link with them give > --with-jpeg=no > as options to configure > phase `configure' failed after 10.5 seconds > > Obviously that's fu, because libjpeg-8 is available. I tried several > things, previous versions of libjpeg; not sure what's going on here. Can you try building it with --keep-failed, and then look at the config.log file in the failed build directory? It should show details of what went wrong. Typically these tests try compiling small test programs, and likely there was some other error that lead it to the erroneous conclusion. config.log will contain the test program and error messages. Mark