# HG changeset patch # User diego # Date 1224180786 0 # Node ID 8215fb6c542cf8606fac17910b4e82804c037e8b # Parent 38fbba4327fa093908e6f5341443563e5b95b459 Move attribute_used declaration from config.h to mangle.h where it is useful. config.h should only contain definitions, no logic. diff -r 38fbba4327fa -r 8215fb6c542c configure --- a/configure Thu Oct 16 18:08:18 2008 +0000 +++ b/configure Thu Oct 16 18:13:06 2008 +0000 @@ -8174,13 +8174,6 @@ #define unlikely(x) (x) #endif -/* attribute(used) as needed by some compilers */ -#if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300) -# define attribute_used __attribute__((used)) -#else -# define attribute_used -#endif - /* compiler support for named assembler arguments */ $_def_named_asm_args diff -r 38fbba4327fa -r 8215fb6c542c mangle.h --- a/mangle.h Thu Oct 16 18:08:18 2008 +0000 +++ b/mangle.h Thu Oct 16 18:13:06 2008 +0000 @@ -7,6 +7,12 @@ #ifndef MPLAYER_MANGLE_H #define MPLAYER_MANGLE_H +#if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300) +#define attribute_used __attribute__((used)) +#else +#define attribute_used +#endif + /* Feel free to add more to the list, eg. a.out IMO */ #if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__OS2__) || \ (defined(__OpenBSD__) && !defined(__ELF__)) || defined(__APPLE__)