From 0aa350306bae0bcfd745ca39fc514250cee21e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 16 Jan 2019 12:27:43 +0100 Subject: [PATCH] SCons: Drop unused MPC_FIXED_POINT define (cherry picked from commit eebca76be5c75a98ad150772cdcb7f11c10ce8ec) --- platform/android/detect.py | 2 +- platform/iphone/detect.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/android/detect.py b/platform/android/detect.py index 54cb5a6d814..72ae6b47c66 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -290,7 +290,7 @@ def configure(env): '/toolchains/' + target_subpath + '/prebuilt/' + host_subpath + '/' + abi_subpath + '/lib']) env.Append(CPPPATH=['#platform/android']) - env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL', '-DMPC_FIXED_POINT']) + env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL']) env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'android', 'log', 'z', 'dl']) # TODO: Move that to opus module's config diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index 99affd2647e..772ad91f195 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -168,7 +168,7 @@ def configure(env): env['ENV']['CODESIGN_ALLOCATE'] = '/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate' env.Append(CPPPATH=['#platform/iphone']) - env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DMPC_FIXED_POINT', '-DCOREAUDIO_ENABLED']) + env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DCOREAUDIO_ENABLED']) # TODO: Move that to opus module's config if 'module_opus_enabled' in env and env['module_opus_enabled']: