File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ 2018-09-22 Bruno Haible <bruno@clisp.org>
2+
3+ Avoid some warnings in MSVC build.
4+ * include/export.h: Handle MSVC compiler as well.
5+
162018-09-22 Bruno Haible <bruno@clisp.org>
27
38 Update from gnulib. Move mapping tables into the code.
Original file line number Diff line number Diff line change 11
22#if @HAVE_VISIBILITY @ && BUILDING_LIBICONV
33#define LIBICONV_DLL_EXPORTED __attribute__((__visibility__("default")))
4+ #elif defined _MSC_VER && BUILDING_LIBICONV
5+ #define LIBICONV_DLL_EXPORTED __declspec(dllexport)
46#else
57#define LIBICONV_DLL_EXPORTED
68#endif
Original file line number Diff line number Diff line change 1+ 2018-09-22 Bruno Haible <bruno@clisp.org>
2+
3+ Avoid some warnings in MSVC build.
4+ * include/export.h: Handle MSVC compiler as well.
5+
162018-09-22 Bruno Haible <bruno@clisp.org>
27
38 Update from gnulib. Move mapping tables into the code.
Original file line number Diff line number Diff line change 11
22#if @HAVE_VISIBILITY @ && BUILDING_LIBCHARSET
33#define LIBCHARSET_DLL_EXPORTED __attribute__((__visibility__("default")))
4+ #elif defined _MSC_VER && BUILDING_LIBCHARSET
5+ #define LIBCHARSET_DLL_EXPORTED __declspec(dllexport)
46#else
57#define LIBCHARSET_DLL_EXPORTED
68#endif
You can’t perform that action at this time.
0 commit comments