[vlc-commits] configure: fix compilation for tvOS
Felix Paul Kühne
git at videolan.org
Wed Jan 22 17:31:37 CET 2020
vlc | branch: master | Felix Paul Kühne <felix at feepk.net> | Wed Jan 22 15:01:28 2020 +0100| [ee0f8c6106ae8a3b2e50fc03c20df6c673a89af9] | committer: Felix Paul Kühne
configure: fix compilation for tvOS
Both daemon and fork are declared for tvOS but are not available for use, so we need to explicitly ignore them.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ee0f8c6106ae8a3b2e50fc03c20df6c673a89af9
---
configure.ac | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configure.ac b/configure.ac
index f69d719553..0d7af8a01e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -195,6 +195,8 @@ case "${host_os}" in
[HAVE_TVOS="1"
HAVE_IOS="0"
HAVE_OSX="0"
+ ac_cv_func_daemon=no
+ ac_cv_func_fork=no
],)
dnl
More information about the vlc-commits
mailing list