diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-05-16 10:59:13 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-05-16 12:43:03 +0300 |
commit | 7822b5535cccc68e5b454d04a66a6b4f27675ec6 (patch) | |
tree | 00b0d6aa828a845484c0b3251a9cfd796d26a73f /avmedia/Module_avmedia.mk | |
parent | 97d50c425f83f05bb395956e1f855db00b979f27 (diff) |
Make the MacAVF code build also as 32-bit
When compiling 32-bit OS X code, the code will use the "legacy
Objective-C runtime", which means that instance variables of an
Objective-C class must be declared in the @interface block, not in the
@implementation.
CGRect and NSRect are not the same for 32-bit code.
Also, use boost::unordered_map.
Change-Id: Icc56ff298203565a7568714b0e9f42c7c6b89737
Diffstat (limited to 'avmedia/Module_avmedia.mk')
-rw-r--r-- | avmedia/Module_avmedia.mk | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/avmedia/Module_avmedia.mk b/avmedia/Module_avmedia.mk index 06bbef7a1bd1..bd0382d13770 100644 --- a/avmedia/Module_avmedia.mk +++ b/avmedia/Module_avmedia.mk @@ -44,15 +44,12 @@ endif endif ifeq ($(OS),MACOSX) -ifeq ($(CPUNAME),X86_64) -# The macavf code is a bit x86_64 dependent... ifneq (1060,$(MACOSX_SDK_VERSION)) $(eval $(call gb_Module_add_targets,avmedia,\ Library_avmediaMacAVF \ )) endif endif -endif ifneq ($(ENABLE_DIRECTX),) $(eval $(call gb_Module_add_targets,avmedia,\ |