diff options
author | Sergey Vojtovich <svoj@sun.com> | 2009-11-03 14:26:39 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2009-11-03 14:26:39 +0400 |
commit | b58b72f6aee79c1010ec0c7195ef44c284949ee8 (patch) | |
tree | 33932250d31a62be06af1fa1339df18380c8fb21 /storage | |
parent | 640f10091f67136bec926674f2a3fae2b84b74f8 (diff) | |
download | mariadb-git-b58b72f6aee79c1010ec0c7195ef44c284949ee8.tar.gz |
Applying InnoDB plugin snashot
Detailed revision comments:
r6112 | calvin | 2009-10-29 16:21:15 +0200 (Thu, 29 Oct 2009) | 4 lines
branches/zip: consideration for icc compilers
Proposed by MySQL, and approved by Marko.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innodb_plugin/include/univ.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/include/univ.i b/storage/innodb_plugin/include/univ.i index 0e14f7b1cba..5d0361658af 100644 --- a/storage/innodb_plugin/include/univ.i +++ b/storage/innodb_plugin/include/univ.i @@ -237,7 +237,7 @@ by one. */ /* Linkage specifier for non-static InnoDB symbols (variables and functions) that are only referenced from within InnoDB, not from MySQL */ -#if defined(__GNUC__) && (__GNUC__ >= 4) && !defined(UNIV_HOTBACKUP) +#if defined(__GNUC__) && (__GNUC__ >= 4) || defined(__INTEL_COMPILER) # define UNIV_INTERN __attribute__((visibility ("hidden"))) #else # define UNIV_INTERN |