~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/univ.i

  • Committer: Brian Aker
  • Date: 2008-10-31 05:09:50 UTC
  • mfrom: (520.4.38 devel)
  • Revision ID: brian@tangent.org-20081031050950-0ujwuqizima69ltr
Merged Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
 
192
192
/* Linkage specifier for non-static InnoDB symbols (variables and functions)
193
193
that are only referenced from within InnoDB, not from MySQL */
194
 
#ifdef __WIN__
 
194
#if defined(HAVE_ATTR_HIDDEN)
 
195
# define UNIV_INTERN __attribute__((visibility ("hidden")))
 
196
#else
195
197
# define UNIV_INTERN
196
 
#else
197
 
# define UNIV_INTERN __attribute__((visibility ("hidden")))
198
198
#endif
199
199
 
200
200
#if (!defined(UNIV_DEBUG) && !defined(UNIV_MUST_NOT_INLINE))