diff options
author | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-12-06 00:11:38 +0100 |
---|---|---|
committer | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-12-06 00:14:01 +0100 |
commit | f89bd7c5c2b5cc2850c52ad35c50f1e7fd5bf4ac (patch) | |
tree | df31742fe116998510405a408723760976fc6426 | |
parent | 9839bb08dffbce34712ed6d6e41d536973fb8c47 (diff) | |
download | mpv-f89bd7c5c2b5cc2850c52ad35c50f1e7fd5bf4ac.tar.bz2 mpv-f89bd7c5c2b5cc2850c52ad35c50f1e7fd5bf4ac.tar.xz |
build: link ARC to get subscripting implementation
This is needed on OS X 10.7 to handle Objective-C subscripting correctly. It
was present in the old configure, but I forgot it in the wscript.
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -472,7 +472,8 @@ video_output_features = [ 'func': check_cc( fragment=load_fragment('cocoa.m'), compile_filename='test.m', - framework_name=['Cocoa', 'IOKit', 'OpenGL']) + framework_name=['Cocoa', 'IOKit', 'OpenGL'], + linkflags='-fobjc-arc') } , { 'name': 'gdi', 'desc': 'GDI', |