vlc | branch: master | Felix Paul Kühne <[email protected]> | Sat Feb 4 11:20:38 2017 +0100| [81ff0a578a702d6a67ecb1e94429cde96728784e] | committer: Felix Paul Kühne
videotoolbox: set correct minimal version constants for iOS and tvOS > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=81ff0a578a702d6a67ecb1e94429cde96728784e --- modules/codec/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/codec/Makefile.am b/modules/codec/Makefile.am index 7c852e5..a08603c 100644 --- a/modules/codec/Makefile.am +++ b/modules/codec/Makefile.am @@ -321,6 +321,12 @@ libvideotoolbox_plugin_la_SOURCES = video_chroma/copy.c video_chroma/copy.h code if HAVE_OSX libvideotoolbox_plugin_la_OBJCFLAGS = $(AM_CFLAGS) -mmacosx-version-min=10.8 endif +if HAVE_IOS +libvideotoolbox_plugin_la_OBJCFLAGS = $(AM_CFLAGS) -miphoneos-version-min=8.0 +endif +if HAVE_TVOS +libvideotoolbox_plugin_la_OBJCFLAGS = $(AM_CFLAGS) -mtvos-version-min=10.2 +endif libvideotoolbox_plugin_la_LDFLAGS = $(AM_LDFLAGS) -rpath '$(codecdir)' -Wl,-framework,Foundation -Wl,-framework,VideoToolbox -Wl,-framework,CoreMedia -Wl,-framework,CoreVideo EXTRA_LTLIBRARIES += libvideotoolbox_plugin.la codec_LTLIBRARIES += $(LTLIBvideotoolbox) _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
