add OPENGL_CFLAGS to CPPFLAGS for OpenBSD
[gnash.git] / libbase / dsodefs.h
blob48c2ca24d45384b0cd3367dbe8b64607a4c192fc
1 // Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software
2 // Foundation, Inc
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef DSODEFS_H
20 #define DSODEFS_H
22 #ifdef HAVE_CONFIG_H
23 #include "gnashconfig.h"
24 #endif
26 #if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32)
27 // #ifdef BUILDING_DLL
28 #ifdef DLL_EXPORT
29 #define DSOEXPORT __declspec(dllexport)
30 #else
31 // Temporarily commented because of VC++ compiler problems
32 #define DSOEXPORT // __declspec(dllimport)
33 #endif
35 #define DSOLOCAL
36 #elif defined(__OS2__)
37 #ifdef BUILDING_DLL
38 #define DSOEXPORT __declspec(dllexport)
39 #else
40 // Temporarily commented because of VC++ compiler problems
41 #define DSOEXPORT // __declspec(dllimport)
42 #endif
44 #define DSOLOCAL
46 #else
47 #ifdef HAVE_GNUC_VISIBILITY
48 #define DSOEXPORT __attribute__ ((visibility("default")))
49 #define DSOLOCAL __attribute__ ((visibility("hidden")))
50 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550) /* Sun Studio >= 8 */
51 #define DSOEXPORT __global
52 #define DSOLOCAL __hidden
53 #else
54 #define DSOEXPORT
55 #define DSOLOCAL
56 #endif
57 #endif
59 #endif // DSODEFS_H