--- embedaddon/libiconv/woe32dll/export.h 2012/05/29 09:29:43 1.1.1.2 +++ embedaddon/libiconv/woe32dll/export.h 2021/03/17 13:38:46 1.1.1.3 @@ -1,5 +1,5 @@ /* Exporting symbols from Cygwin shared libraries. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006, 2011-2018 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software: you can redistribute it and/or modify @@ -13,7 +13,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see . */ + along with this program. If not, see . */ /* There are four ways to build shared libraries on Cygwin: @@ -87,14 +87,18 @@ Note: --export-all-symbols is the default when no other symbol is explicitly exported. This means, the use of an explicit export on the variables has the effect of no longer exporting the functions! - until the option - --export-all-symbols is used. */ + --export-all-symbols is used. + See for more details. */ + +#if defined __GNUC__ /* GCC compiler, GNU toolchain */ + /* IMP(x) is a symbol that contains the address of x. */ -#define IMP(x) _imp__##x +# define IMP(x) _imp__##x /* Ensure that the variable x is exported from the library, and that a pseudo-variable IMP(x) is available. */ -#define VARIABLE(x) \ +# define VARIABLE(x) \ /* Export x without redefining x. This code was found by compiling a \ snippet: \ extern __declspec(dllexport) int x; int x = 42; */ \ @@ -104,3 +108,9 @@ /* Allocate a pseudo-variable IMP(x). */ \ extern int x; \ void * IMP(x) = &x; + +#else /* non-GNU compiler, non-GNU toolchain */ + +# define VARIABLE(x) /* nothing */ + +#endif