12345678910111213141516171819202122232425262728 |
- From 6a8bd4b4021af5174a3fe1e9e1811e44e18e81e1 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= <fkuehne@videolan.org>
- Date: Fri, 11 Sep 2015 18:34:26 +0200
- Subject: [PATCH 09/15] libvlc: hack to disable daemon mode
- ---
- src/libvlc.c | 4 ++++
- 1 file changed, 4 insertions(+)
- diff --git a/src/libvlc.c b/src/libvlc.c
- index 3468e0e..2d870bd 100644
- --- a/src/libvlc.c
- +++ b/src/libvlc.c
- @@ -200,6 +200,10 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
- return VLC_ENOMOD;
- }
-
- +#ifdef __APPLE__
- +#undef HAVE_DAEMON
- +#endif
- +
- #ifdef HAVE_DAEMON
- /* Check for daemon mode */
- if( var_InheritBool( p_libvlc, "daemon" ) )
- --
- 2.7.4 (Apple Git-66)
|