From a21672c893b4bf6ea6c3a20cfe8d559211a141e4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 26 May 2015 16:25:22 -0400 Subject: [PATCH] Fix fallback define for DECLSPEC for non-Windows platforms. Looks like it was a copy/paste error? GCC doesn't support visibility attributes until gcc4, so just make it blank. Fixes Bugzilla #2720. --- include/begin_code.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/begin_code.h b/include/begin_code.h index 4b27976a0e278..c032400f72d48 100644 --- a/include/begin_code.h +++ b/include/begin_code.h @@ -64,8 +64,6 @@ # else # if defined(__GNUC__) && __GNUC__ >= 4 # define DECLSPEC __attribute__ ((visibility("default"))) -# elif defined(__GNUC__) && __GNUC__ >= 2 -# define DECLSPEC __declspec(dllexport) # else # define DECLSPEC # endif