From 3e7db60d56d5c25d7aa3fded4b90f36ca341159c Mon Sep 17 00:00:00 2001 From: PouleyKetchoupp Date: Mon, 27 Apr 2020 10:15:23 +0200 Subject: Update to bullet master (2.90) --- platform/linuxbsd/detect.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'platform/linuxbsd') diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 5d8b4fba48..07fa06bc06 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -217,15 +217,17 @@ def configure(env): env.ParseConfig("pkg-config libpng16 --cflags --libs") if not env["builtin_bullet"]: - # We need at least version 2.89 + # We need at least version 2.90 + min_bullet_version = "2.90" + import subprocess bullet_version = subprocess.check_output(["pkg-config", "bullet", "--modversion"]).strip() - if str(bullet_version) < "2.89": + if str(bullet_version) < min_bullet_version: # Abort as system bullet was requested but too old print( "Bullet: System version {0} does not match minimal requirements ({1}). Aborting.".format( - bullet_version, "2.89" + bullet_version, min_bullet_version ) ) sys.exit(255) -- cgit v1.2.3