Commit 8134316d authored by Christophe Mutricy's avatar Christophe Mutricy

Fix building when VLM is disable

Closes #1718
parent c2f4049a
...@@ -795,7 +795,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -795,7 +795,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
} }
free( psz_modules ); free( psz_modules );
#ifdef ENABLE_SOUT #ifdef ENABLE_VLM
/* Initialize VLM if vlm-conf is specified */ /* Initialize VLM if vlm-conf is specified */
psz_parser = config_GetPsz( p_libvlc, "vlm-conf" ); psz_parser = config_GetPsz( p_libvlc, "vlm-conf" );
if( psz_parser && *psz_parser ) if( psz_parser && *psz_parser )
...@@ -989,7 +989,7 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc ) ...@@ -989,7 +989,7 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
vlc_object_release( p_intf ); /* for vlc_object_find() */ vlc_object_release( p_intf ); /* for vlc_object_find() */
} }
#ifdef ENABLE_SOUT #ifdef ENABLE_VLM
/* Destroy VLM if created in libvlc_InternalInit */ /* Destroy VLM if created in libvlc_InternalInit */
if( priv->p_vlm ) if( priv->p_vlm )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment