Commit 3e43a6a6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Repair libvlc_get_changeset()

parent abfc96fa
......@@ -185,6 +185,7 @@ libvlc_win32_rc.$(OBJEXT): $(top_builddir)/share/libvlc_win32_rc.rc
$(WINDRES) --include-dir $(top_srcdir)/share -i $< -o $@
libvlc_la_SOURCES = $(SOURCES_libvlc_control)
nodist_libvlc_la_SOURCES = revision.c
libvlc_la_LIBADD = `$(VLC_CONFIG) -libs libvlc` \
libvlccore.la ../compat/libcompat.la
libvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc`
......
......@@ -213,7 +213,8 @@ const char * libvlc_get_compiler(void)
const char * libvlc_get_changeset(void)
{
return "exported";
extern const char psz_vlc_changeset[];
return psz_vlc_changeset;
}
/* export internal libvlc_instance for ugly hacks with libvlccore */
......
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