From 1f3c0fc48ddf94ab85ecc191e32f436d4a75f2db Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 17 Jul 2014 16:01:04 +0200 Subject: [PATCH] root: disable OpenGL due to problems on Mac OS X --- scripts/root.build | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/root.build b/scripts/root.build index ee52096..2cd9666 100755 --- a/scripts/root.build +++ b/scripts/root.build @@ -14,9 +14,10 @@ esac function em.configure() { "${EM_SRCDIR}"/configure \ - --disable-python \ - --disable-mysql \ --disable-ldap \ + --disable-mysql \ + --disable-opengl \ + --disable-python \ --enable-fftw3 \ --with-cc=${CC} \ --with-cxx=${CXX} \ @@ -26,6 +27,10 @@ function em.configure() { || exit 1 } +function em.build() { + make -j 4 +} + function em.install() { make clean