[vlc-commits] package/macosx: Add more functions to blacklist
    Marvin Scholz 
    git at videolan.org
       
    Fri Sep 13 14:01:54 CEST 2019
    
    
  
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Fri Sep 13 13:26:32 2019 +0200| [66d91e26e554650a6731d98a9db7a7209048fc49] | committer: Marvin Scholz
package/macosx: Add more functions to blacklist
The most relevant here is aligned_alloc, the others are added
for completeness.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=66d91e26e554650a6731d98a9db7a7209048fc49
---
 extras/package/macosx/env.build.sh | 12 ++++++++++++
 1 file changed, 12 insertions(+)
diff --git a/extras/package/macosx/env.build.sh b/extras/package/macosx/env.build.sh
index ee422eecb3..b640fd3e0d 100755
--- a/extras/package/macosx/env.build.sh
+++ b/extras/package/macosx/env.build.sh
@@ -71,6 +71,18 @@ vlcSetSymbolEnvironment() {
     export ac_cv_func_getentropy=no
     export ac_cv_func_mkostemp=no
     export ac_cv_func_mkostemps=no
+    export ac_cv_func_timingsafe_bcmp=no
+
+    # Added symbols in macOS 10.13 / iOS 11 / tvOS 11
+    export ac_cv_func_utimensat=no
+    export ac_cv_func_futimens=no
+
+    # Added symbol in macOS 10.14 / iOS 12 / tvOS 9
+    export ac_cv_func_thread_get_register_pointer_values=no
+
+    # Added symbols in macOS 10.15 / iOS 13 / tvOS 13
+    export ac_cv_func_aligned_alloc=no
+    export ac_cv_func_timespec_get=no
 }
 
 vlcSetContribEnvironment() {
    
    
More information about the vlc-commits
mailing list