~drizzle-trunk/drizzle/development

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
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2009 Sun Microsystems, Inc.
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
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
2119.4.1 by Monty Taylor
Turns on -fvisibility=hidden by default. Symbols intended to be used by
27
2234 by Brian Aker
Mass removal of ifdef/endif in favor of pragma once.
28
#pragma once
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
29
2252.1.13 by Olaf van der Spek
Common fwd
30
#include <drizzled/common_fwd.h>
31
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
32
/**
33
 *
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
34
 * DRIZZLED_API is used for the public API symbols. It either DLL imports or
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
35
 * DLL exports (or does nothing for static build).
36
 *
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
37
 * DRIZZLED_LOCAL is used for non-api symbols.
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
38
 */
39
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
40
#if defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY)
41
# if defined(__GNUC__)
42
#  define DRIZZLED_API __attribute__ ((visibility("default")))
43
#  define DRIZZLED_INTERNAL_API __attribute__ ((visibility("hidden")))
44
#  define DRIZZLED_API_DEPRECATED __attribute__ ((deprecated,visibility("default")))
45
#  define DRIZZLED_LOCAL  __attribute__ ((visibility("hidden")))
46
# elif (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)) || (defined(__SUNPRO_CC) && (__SUNPRO_CC >= 0x550))
47
#  define DRIZZLED_API __global
48
#  define DRIZZLED_INTERNAL_API __hidden
49
#  define DRIZZLED_API_DEPRECATED __global
50
#  define DRIZZLED_LOCAL __hidden
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
51
# elif defined(_MSC_VER)
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
52
#  define DRIZZLED_API extern __declspec(dllexport)
53
#  define DRIZZLED_INTERNAL_API extern __declspec(dllexport)
54
#  define DRIZZLED_DEPRECATED_API extern __declspec(dllexport)
55
#  define DRIZZLED_LOCAL
56
# endif
57
#else  /* defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY) */
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
58
# if defined(_MSC_VER)
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
59
#  define DRIZZLED_API extern __declspec(dllimport)
60
#  define DRIZZLED_INTERNAL_API extern __declspec(dllimport)
61
#  define DRIZZLED_API_DEPRECATED extern __declspec(dllimport)
62
#  define DRIZZLED_LOCAL
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
63
# else
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
64
#  define DRIZZLED_API
65
#  define DRIZZLED_INTERNAL_API
66
#  define DRIZZLED_API_DEPRECATED
67
#  define DRIZZLED_LOCAL
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
68
# endif /* defined(_MSC_VER) */
1625.1.1 by Monty Taylor
Fixed the visibility header to match the project name.
69
#endif  /* defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY) */
70
71
1241.9.4 by Monty Taylor
Beginnings of what we need to do to support -fvisibility=hidden.
72