diff options
| author | Fabio Alessandrelli | 2017-12-27 01:31:51 +0100 |
|---|---|---|
| committer | K. S. Ernest (iFire) Lee | 2018-02-15 07:34:11 -0800 |
| commit | 6784d743f72f66e0e07343bdb326fa42c9f0f43c (patch) | |
| tree | e7043786faac04dee67931003fdc319c16b179c2 /platform/server/detect.py | |
| parent | 72ef766dfa5fcf35283079ccb98d74f4dbb2d934 (diff) | |
| download | godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.tar.gz godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.tar.zst godot-6784d743f72f66e0e07343bdb326fa42c9f0f43c.zip | |
Diffstat (limited to 'platform/server/detect.py')
| -rw-r--r-- | platform/server/detect.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index bc615d3d0..c56625e83 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -12,9 +12,6 @@ def get_name(): def can_build(): - # Doesn't build against Godot 3.0 for now, disable to avoid confusing users - return False - if (os.name != "posix" or sys.platform == "darwin"): return False @@ -133,3 +130,4 @@ def configure(env): env.Append(CPPPATH=['#platform/server']) env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED']) env.Append(LIBS=['pthread']) + env.Append(LIBS=['dl']) |
