~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/visibility.h

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
24
24
 * @brief Visibility Control Macros
25
25
 */
26
26
 
27
 
 
28
27
#ifndef DRIZZLED_VISIBILITY_H
29
28
#define DRIZZLED_VISIBILITY_H
30
29
 
31
30
/**
32
31
 *
33
 
 * DRIZZLED_API is used for the public API symbols. It either DLL imports or
 
32
 * DRIZZLE_API is used for the public API symbols. It either DLL imports or
34
33
 * DLL exports (or does nothing for static build).
35
34
 *
36
 
 * DRIZZLED_LOCAL is used for non-api symbols.
 
35
 * DRIZZLE_LOCAL is used for non-api symbols.
37
36
 */
38
37
 
39
 
#if defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY)
40
 
# if defined(__GNUC__)
41
 
#  define DRIZZLED_API __attribute__ ((visibility("default")))
42
 
#  define DRIZZLED_INTERNAL_API __attribute__ ((visibility("hidden")))
43
 
#  define DRIZZLED_API_DEPRECATED __attribute__ ((deprecated,visibility("default")))
44
 
#  define DRIZZLED_LOCAL  __attribute__ ((visibility("hidden")))
45
 
# elif (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)) || (defined(__SUNPRO_CC) && (__SUNPRO_CC >= 0x550))
46
 
#  define DRIZZLED_API __global
47
 
#  define DRIZZLED_INTERNAL_API __hidden
48
 
#  define DRIZZLED_API_DEPRECATED __global
49
 
#  define DRIZZLED_LOCAL __hidden
 
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
50
45
# elif defined(_MSC_VER)
51
 
#  define DRIZZLED_API extern __declspec(dllexport)
52
 
#  define DRIZZLED_INTERNAL_API extern __declspec(dllexport)
53
 
#  define DRIZZLED_DEPRECATED_API extern __declspec(dllexport)
54
 
#  define DRIZZLED_LOCAL
55
 
# endif
56
 
#else  /* defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY) */
 
46
#  define DRIZZLE_API extern __declspec(dllexport) 
 
47
#  define DRIZZLE_LOCAL
 
48
# endif /* defined(HAVE_VISIBILITY) */
 
49
#else  /* defined(BUILDING_DRIZZLE) */
57
50
# if defined(_MSC_VER)
58
 
#  define DRIZZLED_API extern __declspec(dllimport)
59
 
#  define DRIZZLED_INTERNAL_API extern __declspec(dllimport)
60
 
#  define DRIZZLED_API_DEPRECATED extern __declspec(dllimport)
61
 
#  define DRIZZLED_LOCAL
 
51
#  define DRIZZLE_API extern __declspec(dllimport) 
 
52
#  define DRIZZLE_LOCAL
62
53
# else
63
 
#  define DRIZZLED_API
64
 
#  define DRIZZLED_INTERNAL_API
65
 
#  define DRIZZLED_API_DEPRECATED
66
 
#  define DRIZZLED_LOCAL
 
54
#  define DRIZZLE_API
 
55
#  define DRIZZLE_LOCAL
67
56
# endif /* defined(_MSC_VER) */
68
 
#endif  /* defined(BUILDING_DRIZZLED) && defined(HAVE_VISIBILITY) */
69
 
 
70
 
 
 
57
#endif /* defined(BUILDING_DRIZZLE) */
71
58
 
72
59
#endif /* DRIZZLED_VISIBILITY_H */