From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43444) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dYumI-00008M-0l for guix-patches@gnu.org; Sat, 22 Jul 2017 09:49:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dYumE-0002Hm-VV for guix-patches@gnu.org; Sat, 22 Jul 2017 09:49:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49347) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dYumE-0002Hb-K2 for guix-patches@gnu.org; Sat, 22 Jul 2017 09:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dYumE-0000iJ-3w for guix-patches@gnu.org; Sat, 22 Jul 2017 09:49:02 -0400 Subject: [bug#27774] [PATCH] gnu: add libgeotiff Resent-Message-ID: Message-Id: MIME-Version: 1.0 From: Arun Isaac Date: Sat, 22 Jul 2017 19:18:17 +0530 In-reply-to: <87379o63mn.fsf@fastmail.com> References: <20170720175018.49ec09ac@alma-ubu> <87379o63mn.fsf@fastmail.com> Content-Type: text/plain Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 27774@debbugs.gnu.org >> + (arguments >> + `(#:configure-flags >> + `( ,(string-append "--with-zlib") >> + ,(string-append "--with-jpeg") >> + ,(string-append "--with-libtiff=3D" >> + (assoc-ref %build-inputs "libtiff"))) I'm asking this out of ignorance more than anything else. Is this (assoc-ref %build-inputs "libtiff") call required for "--with-libtiff", when it is not required for "--with-zlib" and "--with-jpeg"? Also, can we build this package with libjpeg-turbo, instead of libjpeg? libjpeg-turbo claims to be faster, and many packages in Arch and Parabola are built using libjpeg-turbo. =