0008-libvlc-hack-to-disable-daemon-mode.patch 686 B

12345678910111213141516171819202122232425262728
  1. From e89650262ad199701c9b71ff7b3f2d5490e21377 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
  3. Date: Fri, 11 Sep 2015 18:34:26 +0200
  4. Subject: [PATCH 08/17] libvlc: hack to disable daemon mode
  5. ---
  6. src/libvlc.c | 4 ++++
  7. 1 file changed, 4 insertions(+)
  8. diff --git a/src/libvlc.c b/src/libvlc.c
  9. index 48c2b8c..3c9f879 100644
  10. --- a/src/libvlc.c
  11. +++ b/src/libvlc.c
  12. @@ -200,6 +200,10 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
  13. return VLC_ENOMOD;
  14. }
  15. +#ifdef __APPLE__
  16. +#undef HAVE_DAEMON
  17. +#endif
  18. +
  19. #ifdef HAVE_DAEMON
  20. /* Check for daemon mode */
  21. if( var_InheritBool( p_libvlc, "daemon" ) )
  22. --
  23. 2.8.4