diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-11-25 15:10:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 15:10:32 +0100 |
commit | c5451468cf09cc7d3f9d3018072b41125d921db1 (patch) | |
tree | 787848c9d1d78fc47a9a6cffe1de148c329e84e4 /SConstruct | |
parent | 8c713fa9bf1084ddb9b48802b61f9818d57a622e (diff) | |
parent | d76806d322c4618f703347751f36feb35ef2d9f2 (diff) |
Merge pull request #43854 from akien-mga/ptrcall-always-on
Core: Always enable ptrcall, remove PTRCALL_ENABLED define
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct index f134dfddac..d82ceb514b 100644 --- a/SConstruct +++ b/SConstruct @@ -67,7 +67,6 @@ if "TERM" in os.environ: env_base.AppendENVPath("PATH", os.getenv("PATH")) env_base.AppendENVPath("PKG_CONFIG_PATH", os.getenv("PKG_CONFIG_PATH")) env_base.disabled_modules = [] -env_base.use_ptrcall = False env_base.module_version_string = "" env_base.msvc = False @@ -561,8 +560,6 @@ if selected_platform in platform_list: env["LIBSUFFIX"] = suffix + env["LIBSUFFIX"] env["SHLIBSUFFIX"] = suffix + env["SHLIBSUFFIX"] - if env.use_ptrcall: - env.Append(CPPDEFINES=["PTRCALL_ENABLED"]) if env["tools"]: env.Append(CPPDEFINES=["TOOLS_ENABLED"]) if env["disable_3d"]: |