When not testing for prerequisites let have_X depend on the platform.
This commit is contained in:
parent
c88e37bcfa
commit
f3962c61f0
1 changed files with 3 additions and 1 deletions
|
@ -219,7 +219,9 @@ if env["prereqs"]:
|
|||
env["python"] = (float(sys.version[:3]) >= 2.4) and conf.CheckPython() or Warning("Python >= 2.4 not found. Python extensions will be disabled.")
|
||||
else:
|
||||
have_client_prereqs = True
|
||||
have_X = True
|
||||
have_X = False
|
||||
if env["PLATFORM"] != "win32":
|
||||
have_X = True
|
||||
have_server_prereqs = True
|
||||
have_test_prereqs = True
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue