From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45789) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fFctF-0003Ht-0a for guix-patches@gnu.org; Mon, 07 May 2018 05:57:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fFctC-0006Wb-0C for guix-patches@gnu.org; Mon, 07 May 2018 05:57:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44100) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fFctB-0006WW-Sr for guix-patches@gnu.org; Mon, 07 May 2018 05:57:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fFctB-0000aY-IL for guix-patches@gnu.org; Mon, 07 May 2018 05:57:01 -0400 Subject: [bug#29819] gnu: virtuoso-ose: Enable fct, isparql, and ods plugins. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87efnmo1lc.fsf@gnu.org> Date: Mon, 07 May 2018 11:55:49 +0200 In-Reply-To: <87efnmo1lc.fsf@gnu.org> (Roel Janssen's message of "Fri, 22 Dec 2017 23:13:45 +0100") Message-ID: <87603zaixm.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: Roel Janssen Cc: 29819@debbugs.gnu.org Hi Roel, Roel Janssen skribis: >>>From ffab36dc96d7c17ab699b1e5fa641386ae87f681 Mon Sep 17 00:00:00 2001 > From: Roel Janssen > Date: Fri, 22 Dec 2017 23:03:36 +0100 > Subject: [PATCH] gnu: virtuoso-ose: Enable fct, isparql, and ods plugins. > > * gnu/packages/databases.scm (virtuoso-ose): Enable fct, isparql, and ods > plugins. Also compile with optimization level 2, and compile 64-bit on= ly. > --- > gnu/packages/databases.scm | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm > index a6a7c3178..d802a35c7 100644 > --- a/gnu/packages/databases.scm > +++ b/gnu/packages/databases.scm > @@ -1962,10 +1962,16 @@ implementation for Python.") > (base32 "12dqam1gc1v93l0bj0vlpvjqppki6y1hqrlznywxnw0rrz9pb002"))= )) > (build-system gnu-build-system) > (arguments > - `(#:tests? #f)) ; Tests require a network connection. > + `(#:tests? #f ; Tests require a network connection. > + #:configure-flags '("--with-readline" > + "--enable-fct-vad" > + "--enable-isparql-vad" > + "--enable-ods-vad" > + "CFLAGS=3D-O2 -m64"))) > (inputs > `(("openssl" ,openssl) > - ("net-tools" ,net-tools))) > + ("net-tools" ,net-tools) > + ("readline" ,readline))) This patch without the CFLAGS bit would be fine, if you still need it. Thoughts? Ludo=E2=80=99.