diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-25 12:22:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 12:22:22 +0200 |
commit | 24005bc03d4774afb5a3eb44db25711c3a9cedf1 (patch) | |
tree | fa4d2650672a63b0f4a214c1c6aaff7310eb580c /platform/haiku/detect.py | |
parent | 7dc7cbea0a576b65562988dee1c143dcc945d369 (diff) | |
parent | c2a669a9f03e249fb4fca96a2adf63256eb8dfa2 (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.py | 2 |
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']) |