diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wxmac.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/wxmac.rb b/Library/Formula/wxmac.rb index 741929d6c..18e33fd9d 100644 --- a/Library/Formula/wxmac.rb +++ b/Library/Formula/wxmac.rb @@ -52,7 +52,10 @@ class Wxmac < Formula "--enable-clipboard", "--enable-webkit", "--enable-svg", - "--enable-mediactrl", + # On 64-bit, enabling mediactrl leads to wxconfig trying to pull + # in a non-existent 64 bit QuickTime framework. This is submitted + # upstream and will eventually be fixed, but for now... + MacOS.prefer_64_bit? ? "--disable-mediactrl" : "--enable-mediactrl", "--enable-graphics_ctx", "--enable-controls", "--enable-dataviewctrl", |
