diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-10-17 16:50:41 +0000 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-10-17 16:50:41 +0000 |
commit | 2baf54526b9a1c97e6af5328903363595aec4125 (patch) | |
tree | a2b4ad4267f305fefe9046e80b8daadc263e49c3 /platform/x11/detect.py | |
parent | 6e960c7d6bbf7481bae41ab0ebb39bc75619272a (diff) | |
download | redot-engine-2baf54526b9a1c97e6af5328903363595aec4125.tar.gz |
Fix BSD compile issues
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r-- | platform/x11/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 1f7f67fe10..8c68c9ffd1 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -239,6 +239,9 @@ def configure(env): if (platform.system() == "Linux"): env.Append(LIBS=['dl']) + if (platform.system().find("BSD") >= 0): + env.Append(LIBS=['execinfo']) + ## Cross-compilation if (is64 and env["bits"] == "32"): |