2 // Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 // Free Software Foundation, Inc
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
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.
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
24 #include "gnashconfig.h"
27 #if defined(_MSC_VER) || defined(WIN32) || defined(_WIN32)
28 // #ifdef BUILDING_DLL
30 #define DSOEXPORT __declspec(dllexport)
32 // Temporarily commented because of VC++ compiler problems
33 #define DSOEXPORT // __declspec(dllimport)
37 #elif defined(__OS2__)
39 #define DSOEXPORT __declspec(dllexport)
41 // Temporarily commented because of VC++ compiler problems
42 #define DSOEXPORT // __declspec(dllimport)
48 #ifdef HAVE_GNUC_VISIBILITY
49 #define DSOEXPORT __attribute__ ((visibility("default")))
50 #define DSOLOCAL __attribute__ ((visibility("hidden")))
51 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550) /* Sun Studio >= 8 */
52 #define DSOEXPORT __global
53 #define DSOLOCAL __hidden
61 # define DSOTEXPORT DSOEXPORT