Commit 408e72b8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove stupid broken error message in XSPF parser - refs #1293.

Someone should fix this properly instead.
parent 9c240458
......@@ -249,7 +249,7 @@ nodist_EXTRA_vlc_SOURCES = extras/zsh.cpp src/misc/darwin_specific.m
vlc_DEPENDENCIES = $(LIBVLC) $(DATA_win32_rc)
vlc_LDADD = $(DATA_win32_rc) $(LIBVLC) $(LTLIBINTL)
vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc`
vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc` -no-install
if !HAVE_PLUGINS
vlc_LDFLAGS += `$(VLC_CONFIG) --target plugin | sed -e 's/\_plugin /_plugin.la /g'`
endif
......
......@@ -769,8 +769,9 @@ static vlc_bool_t parse_extension_node COMPLEX_INTERFACE
if( !p_handler || !p_handler->name
|| strcmp( p_handler->name, psz_name ))
{
/* FIXME: see #1293
msg_Err( p_demux, "there's no open element left for <%s>",
psz_name );
psz_name );*/
FREE_ATT();
return VLC_FALSE;
}
......
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