diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-15 17:33:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-15 17:33:06 +0200 |
commit | 1efe7093bec9c0bfaa2ecedd9d5777b594d7283a (patch) | |
tree | 72607a5938fa106e90ef835784ee48df1e73732f /platform/osx | |
parent | 3f888966c0311a49541d6eb952b5a76d105f59d5 (diff) | |
parent | ae74e78909ae0bc476112fb43b9580e969879dcd (diff) |
Merge pull request #53833 from akien-mga/remove-webm-support
Diffstat (limited to 'platform/osx')
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 3f967781b2..36fff4e12a 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -94,7 +94,6 @@ def configure(env): env["AR"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar" env["RANLIB"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib" env["AS"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as" - env.Append(CPPDEFINES=["__MACPORTS__"]) # hack to fix libvpx MM256_BROADCASTSI128_SI256 define else: env["CC"] = "clang" env["CXX"] = "clang++" @@ -122,7 +121,6 @@ def configure(env): env["AR"] = basecmd + "ar" env["RANLIB"] = basecmd + "ranlib" env["AS"] = basecmd + "as" - env.Append(CPPDEFINES=["__MACPORTS__"]) # hack to fix libvpx MM256_BROADCASTSI128_SI256 define if env["use_ubsan"] or env["use_asan"] or env["use_tsan"]: env.extra_suffix += "s" |