1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-03 12:47:49 +00:00

attribute_used macro

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12291 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2004-04-26 09:44:06 +00:00
parent b04d1313a8
commit cf6a122e56

7
configure vendored
View File

@ -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