comparison configure @ 12290:de133f53c88f

attribute_used macro
author alex
date Mon, 26 Apr 2004 09:44:06 +0000
parents 74fac990c16a
children 2ee88c8d13ed
comparison
equal deleted inserted replaced
12289:e197979a0883 12290:de133f53c88f
6104 $_def_dynamic_plugins 6104 $_def_dynamic_plugins
6105 6105
6106 /* "restrict" keyword */ 6106 /* "restrict" keyword */
6107 #define restrict $_def_restrict_keyword 6107 #define restrict $_def_restrict_keyword
6108 6108
6109 /* attribute(used) as needed by some compilers */
6110 #if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)
6111 # define attribute_used __attribute__((used))
6112 #else
6113 # define attribute_used
6114 #endif
6115
6109 #define PREFIX "$_prefix" 6116 #define PREFIX "$_prefix"
6110 6117
6111 #define USE_OSD 1 6118 #define USE_OSD 1
6112 #define USE_SUB 1 6119 #define USE_SUB 1
6113 6120