diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-09 21:28:07 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-09 21:28:07 -0300 |
commit | 94a6ff3d7a2ff770e32a68ac76771639e5a22665 (patch) | |
tree | 4d6c3fdf78c1ac63382c8c5198e952931e6a2556 /platform/osx/detect.py | |
parent | d02261fc844b54ee5a1aa96ef675ee3b3c672744 (diff) | |
download | redot-engine-94a6ff3d7a2ff770e32a68ac76771639e5a22665.tar.gz |
-make freetype build for all platforms the same, default as builtin except on x11.
closes #5119
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r-- | platform/osx/detect.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index d1aa54b71d..1982beb10e 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -30,7 +30,6 @@ def get_flags(): return [ ('legacygl', 'yes'), ('builtin_zlib', 'no'), - ('freetype','builtin'), #use builtin freetype ('glew', 'yes'), ] @@ -56,12 +55,6 @@ def configure(env): env.Append(CCFLAGS=['-g3', '-Wall','-DDEBUG_ENABLED','-DDEBUG_MEMORY_ENABLED']) - if (env["freetype"]!="no"): - env.Append(CCFLAGS=['-DFREETYPE_ENABLED']) - env.Append(CPPPATH=['#drivers/freetype']) - env.Append(CPPPATH=['#drivers/freetype/freetype/include']) - - if (not os.environ.has_key("OSXCROSS_ROOT")): #regular native build |