From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55729) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1duQ1s-00089j-1n for guix-patches@gnu.org; Tue, 19 Sep 2017 17:26:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1duQ1r-0005g2-8H for guix-patches@gnu.org; Tue, 19 Sep 2017 17:26:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40046) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1duQ1r-0005fu-4B for guix-patches@gnu.org; Tue, 19 Sep 2017 17:26:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1duQ1q-0006x2-R5 for guix-patches@gnu.org; Tue, 19 Sep 2017 17:26:02 -0400 Subject: [bug#28347] Cadaver Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170904181113.36ybxr5hrn36ywly@abyayala> <87mv5qbpwj.fsf@gmail.com> Date: Tue, 19 Sep 2017 23:25:12 +0200 In-Reply-To: <87mv5qbpwj.fsf@gmail.com> (Alex Kost's message of "Tue, 19 Sep 2017 19:43:08 +0300") Message-ID: <87h8vyv0sn.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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: Alex Kost Cc: 28347@debbugs.gnu.org Alex Kost skribis: > Ouch, so 0.30.2 is not supported. This is the line from "configure.ac": > > NE_REQUIRE_VERSIONS([0], [27 28 29]) > > OK, I tried to build it with 0.30.2 anyway using the following phase: > > (add-after 'unpack 'fix-required-neon-version > (lambda _ > (substitute* "configure" > (("27 28 29") > ,(string-join > (cdr (string-split (package-version neon) #\.)) > "."))) > #t)) > > But I got: > > configure: incompatible neon library version 0.30.2: wanted 0.30.2 > configure: using bundled neon (0.29.1) In =E2=80=98configure=E2=80=99, I think you need to replace =E2=80=9C27 28 = 29=E2=80=9D with =E2=80=9C30=E2=80=9D, not =E2=80=9C30.2=E2=80=9D, because of the way NEON_CHECK_VERSION in m4/neon.m4= matches versions: for v in ne_require_minor; do case $ne_libver in ne_require_major.$v.*) ne_cv_lib_neonver=3Dyes ;; esac done I=E2=80=99m sure you=E2=80=99re almost there. :-) Thanks, Ludo=E2=80=99.