diff options
Diffstat (limited to 'Swiften/Base')
-rw-r--r-- | Swiften/Base/API.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/Base/API.h b/Swiften/Base/API.h index 8f19446..388ad0a 100644 --- a/Swiften/Base/API.h +++ b/Swiften/Base/API.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012 Remko Tronçon + * Copyright (c) 2012-2013 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ @@ -17,6 +17,8 @@ # else # define SWIFTEN_API __declspec(dllimport) # endif +# elif __GNUC__ >= 4 +# define SWIFTEN_API __attribute__((visibility("default"))) # else # define SWIFTEN_API # endif |