diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-12-31 12:09:59 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-12-31 12:09:59 (GMT) |
commit | 3625bf9f94aad738b6d44da4b8f70c60cd167647 (patch) | |
tree | 9b32044e0704904b1c88c8a11044ce6205ca6d9a /SConstruct | |
parent | 8aed9641dd20a3375f8a443189c7ca6243cf9fc6 (diff) | |
download | swift-3625bf9f94aad738b6d44da4b8f70c60cd167647.zip swift-3625bf9f94aad738b6d44da4b8f70c60cd167647.tar.bz2 |
Fix building on OS X using default Qt installation.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -184,8 +184,9 @@ if ARGUMENTS.get("force-configure", 0) : conf = Configure(conf_env) -conf.CheckCXX() -conf.CheckCC() +if not conf.CheckCXX() or not conf.CheckCC() : + print "Error: You need a working compiler" + Exit(1) if conf.CheckLib("z") : env.Append(LIBS = "z") |