[vlc-commits] include: fix out-of-tree plugins w/o complete meta infos

Rémi Denis-Courmont git at videolan.org
Tue Oct 6 16:57:03 CEST 2015


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Oct  6 17:56:23 2015 +0300| [b6eddb786197ba67a81d5ac26bcc7c371c0a63ab] | committer: Rémi Denis-Courmont

include: fix out-of-tree plugins w/o complete meta infos

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b6eddb786197ba67a81d5ac26bcc7c371c0a63ab
---

 include/vlc_plugin.h |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/vlc_plugin.h b/include/vlc_plugin.h
index 36e902b..b07b51a 100644
--- a/include/vlc_plugin.h
+++ b/include/vlc_plugin.h
@@ -533,9 +533,13 @@ VLC_METADATA_EXPORTS
 
 #ifdef VLC_MODULE_COPYRIGHT
 # define VLC_COPYRIGHT_EXPORT VLC_META_EXPORT(copyright, VLC_MODULE_COPYRIGHT)
+#else
+# define VLC_COPYRIGHT_EXPORT
 #endif
 #ifdef VLC_MODULE_LICENSE
 # define VLC_LICENSE_EXPORT VLC_META_EXPORT(license, VLC_MODULE_LICENSE)
+#else
+# define VLC_LICENSE_EXPORT
 #endif
 
 #define VLC_METADATA_EXPORTS \



More information about the vlc-commits mailing list