1241.9.4
by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden. |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2009 Sun Microsystems
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; version 2 of the License.
|
|
9 |
*
|
|
10 |
* This program is distributed in the hope that it will be useful,
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
* GNU General Public License for more details.
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License
|
|
16 |
* along with this program; if not, write to the Free Software
|
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
*
|
|
19 |
* Implementation drawn from visibility.texi in gnulib.
|
|
20 |
*/
|
|
21 |
||
22 |
/**
|
|
23 |
* @file
|
|
24 |
* @brief Visibility Control Macros
|
|
25 |
*/
|
|
26 |
||
27 |
#ifndef DRIZZLED_VISIBILITY_H
|
|
28 |
#define DRIZZLED_VISIBILITY_H
|
|
29 |
||
30 |
/**
|
|
31 |
*
|
|
32 |
* DRIZZLE_API is used for the public API symbols. It either DLL imports or
|
|
33 |
* DLL exports (or does nothing for static build).
|
|
34 |
*
|
|
35 |
* DRIZZLE_LOCAL is used for non-api symbols.
|
|
36 |
*/
|
|
37 |
||
38 |
#if defined(BUILDING_DRIZZLE)
|
|
39 |
# if defined(HAVE_VISIBILITY)
|
|
40 |
# define DRIZZLE_API __attribute__ ((visibility("default")))
|
|
41 |
# define DRIZZLE_LOCAL __attribute__ ((visibility("hidden")))
|
|
42 |
# elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550)
|
|
43 |
# define DRIZZLE_API __global
|
|
44 |
# define DRIZZLE_API __hidden
|
|
45 |
# elif defined(_MSC_VER)
|
|
46 |
# define DRIZZLE_API extern __declspec(dllexport)
|
|
47 |
# define DRIZZLE_LOCAL
|
|
48 |
# endif /* defined(HAVE_VISIBILITY) */ |
|
49 |
#else /* defined(BUILDING_DRIZZLE) */ |
|
50 |
# if defined(_MSC_VER)
|
|
51 |
# define DRIZZLE_API extern __declspec(dllimport)
|
|
52 |
# define DRIZZLE_LOCAL
|
|
53 |
# else
|
|
54 |
# define DRIZZLE_API
|
|
55 |
# define DRIZZLE_LOCAL
|
|
56 |
# endif /* defined(_MSC_VER) */ |
|
57 |
#endif /* defined(BUILDING_DRIZZLE) */ |
|
58 |
||
59 |
#endif /* DRIZZLED_VISIBILITY_H */ |