summaryrefslogtreecommitdiff
path: root/platform/haiku/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-04-25 12:22:22 +0200
committerGitHub <noreply@github.com>2019-04-25 12:22:22 +0200
commit24005bc03d4774afb5a3eb44db25711c3a9cedf1 (patch)
treefa4d2650672a63b0f4a214c1c6aaff7310eb580c /platform/haiku/detect.py
parent7dc7cbea0a576b65562988dee1c143dcc945d369 (diff)
parentc2a669a9f03e249fb4fca96a2adf63256eb8dfa2 (diff)
Merge pull request #28396 from akien-mga/scons-capture-the-flags
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS
Diffstat (limited to 'platform/haiku/detect.py')
-rw-r--r--platform/haiku/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/haiku/detect.py b/platform/haiku/detect.py
index ae8cc58a4a..874b1ab1fb 100644
--- a/platform/haiku/detect.py
+++ b/platform/haiku/detect.py
@@ -150,6 +150,6 @@ def configure(env):
env.Append(CPPPATH=['#platform/haiku'])
env.Append(CPPFLAGS=['-DUNIX_ENABLED', '-DOPENGL_ENABLED', '-DGLES_ENABLED'])
env.Append(CPPFLAGS=['-DMEDIA_KIT_ENABLED'])
- # env.Append(CCFLAGS=['-DFREETYPE_ENABLED'])
+ # env.Append(CPPFLAGS=['-DFREETYPE_ENABLED'])
env.Append(CPPFLAGS=['-DPTHREAD_NO_RENAME']) # TODO: enable when we have pthread_setname_np
env.Append(LIBS=['be', 'game', 'media', 'network', 'bnetapi', 'z', 'GL'])