summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-16 18:13:06 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-10-16 18:13:06 +0000
commit2b9e1bf0facd5291e2b7f2b3af9167f1bdf85dc0 (patch)
treebd1519216ee5f4c174956567db6f6057426ebf60
parent2093097cfbf6b9a1d36d23c94f68df0a80f57003 (diff)
downloadmpv-2b9e1bf0facd5291e2b7f2b3af9167f1bdf85dc0.tar.bz2
mpv-2b9e1bf0facd5291e2b7f2b3af9167f1bdf85dc0.tar.xz
Move attribute_used declaration from config.h to mangle.h where it is useful.
config.h should only contain definitions, no logic. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27781 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure7
-rw-r--r--mangle.h6
2 files changed, 6 insertions, 7 deletions
diff --git a/configure b/configure
index 356a3b0449..a82c271fd2 100755
--- a/configure
+++ b/configure
@@ -8174,13 +8174,6 @@ $_def_builtin_expect
#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 --git a/mangle.h b/mangle.h
index 687ca4f4ac..d8e2089a5f 100644
--- a/mangle.h
+++ b/mangle.h
@@ -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__)