From b8c2f9d564773349dbd4d3a97a3d698988cd497f Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Thu, 9 Mar 2017 21:14:21 +0300 Subject: [PATCH] ode:fix --- game/misc/ode/actions.py | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/game/misc/ode/actions.py b/game/misc/ode/actions.py index 36bc0fca29..44a919bcf2 100644 --- a/game/misc/ode/actions.py +++ b/game/misc/ode/actions.py @@ -6,20 +6,15 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools from pisi.actionsapi import get def setup(): - pisitools.flags.add("-fomit-frame-pointer", "-ffast-math") - - autotools.configure("--disable-static \ - --enable-shared \ - --enable-demos \ - --with-trimesh=opcode \ - --enable-new-trimesh \ - --with-drawstuff=X11 \ + #pisitools.flags.add("-fomit-frame-pointer", "-ffast-math") + shelltools.system("./bootstrap") + autotools.configure("--enable-shared \ --enable-libccd \ - --enable-double-precision \ - --disable-dependency-tracking") + --enable-double-precision") def build(): autotools.make()