mirror of https://github.com/mpv-player/mpv
attribute_used macro
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12291 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b04d1313a8
commit
cf6a122e56
|
@ -6106,6 +6106,13 @@ $_def_dynamic_plugins
|
|||
/* "restrict" keyword */
|
||||
#define restrict $_def_restrict_keyword
|
||||
|
||||
/* attribute(used) as needed by some compilers */
|
||||
#if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)
|
||||
# define attribute_used __attribute__((used))
|
||||
#else
|
||||
# define attribute_used
|
||||
#endif
|
||||
|
||||
#define PREFIX "$_prefix"
|
||||
|
||||
#define USE_OSD 1
|
||||
|
|
Loading…
Reference in New Issue