From 502f72a4dc8d352de0e915de60f1801325983d45 Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Tue, 15 Jul 2014 15:44:21 +0200 Subject: [PATCH] Enable OQGRAPH engine --- mariadb.spec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mariadb.spec b/mariadb.spec index 60fc71a..1152c13 100644 --- a/mariadb.spec +++ b/mariadb.spec @@ -5,9 +5,14 @@ # variable tokudb allows to build with TokuDB storage engine %bcond_with tokudb +# The Open Query GRAPH engine (OQGRAPH) is a computation engine allowing +# hierarchies and more complex graph structures to be handled in a relational +# fashion; enabled by default +%bcond_without oqgraph + Name: mariadb Version: 10.0.12 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: A community developed branch of MySQL @@ -81,6 +86,8 @@ BuildRequires: systemd, systemtap-sdt-devel BuildRequires: time procps # auth_pam.so plugin will be build if pam-devel is installed BuildRequires: pam-devel +# boost and Judy required for oograph +%{?with_oqgraph:BuildRequires: boost-devel, Judy-devel} # perl modules needed to run regression tests BuildRequires: perl(Socket), perl(Time::HiRes) BuildRequires: perl(Data::Dumper), perl(Test::More), perl(Env) @@ -719,6 +726,7 @@ fi %config(noreplace) %{_sysconfdir}/my.cnf.d/server.cnf %{?with_tokudb:%config(noreplace) %{_sysconfdir}/my.cnf.d/tokudb.cnf} +%{?with_oqgraph:%config(noreplace) %{_sysconfdir}/my.cnf.d/oqgraph.cnf} %{_libexecdir}/mysqld @@ -817,6 +825,9 @@ fi %{_mandir}/man1/mysql_client_test.1* %changelog +* Tue Jul 15 2014 Honza Horak - 1:10.0.12-3 +- Enable OQGRAPH engine + * Wed Jun 18 2014 Mikko Tiihonen - 1:10.0.12-2 - Use -fno-delete-null-pointer-checks to avoid segfaults with gcc 4.9