summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Sluift/sluift.h2
-rw-r--r--Swiften/Base/API.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/Sluift/sluift.h b/Sluift/sluift.h
index 4e0f5ee..b82e1c4 100644
--- a/Sluift/sluift.h
+++ b/Sluift/sluift.h
@@ -8,6 +8,8 @@
#if defined(SLUIFT_BUILD_DLL)
#define SLUIFT_API __declspec(dllexport)
+#elif __GNUC__ >= 4
+#define SLUIFT_API __attribute__((visibility("default")))
#else
#define SLUIFT_API
#endif
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