summaryrefslogtreecommitdiff
path: root/libxerces-c/xercesc/util/Xerces_autoconf_config.hpp
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2023-09-12 08:58:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2023-10-05 09:46:02 +0200
commit7683a8b7a9e8f4be61a5dee67667db54646d80d3 (patch)
tree39fcc139d34e56be03f2045b21a05e2d6d290c5b /libxerces-c/xercesc/util/Xerces_autoconf_config.hpp
parent7a9ad23a9ec80a37308ab75c23c67da57287dd80 (diff)
Release version 3.2.4+2v3.2.4+2
- Don't insist on LIBXERCES_C_{SHARED,STATIC} for non-Windows platforms. - Don't link winsock if network support is disabled. - Add binary distribution package build configurations.
Diffstat (limited to 'libxerces-c/xercesc/util/Xerces_autoconf_config.hpp')
-rw-r--r--libxerces-c/xercesc/util/Xerces_autoconf_config.hpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/libxerces-c/xercesc/util/Xerces_autoconf_config.hpp b/libxerces-c/xercesc/util/Xerces_autoconf_config.hpp
index 2b088cf..e88b063 100644
--- a/libxerces-c/xercesc/util/Xerces_autoconf_config.hpp
+++ b/libxerces-c/xercesc/util/Xerces_autoconf_config.hpp
@@ -135,10 +135,15 @@
* type. Note that falling back to defining the XERCES_PLATFORM_IMPORT macro
* as empty would work for both the static and shared libraries (being
* sub-optimal for the later) but only for functions. Xerces-C++, however,
- * also exports data symbols, which cannot be imported this way. Thus we,
- * just issue an error.
+ * also exports data symbols, which cannot be imported this way. Thus,
+ * where matters (Windows), we just issue an error.
*/
-# error define LIBXERCES_C_STATIC or LIBXERCES_C_SHARED preprocessor macro to signal Xerces-C++ library type being linked
+# ifdef _WIN32
+# error define LIBXERCES_C_STATIC or LIBXERCES_C_SHARED preprocessor macro to signal Xerces-C++ library type being linked
+# else
+# define XERCES_PLATFORM_IMPORT
+# define XERCES_PLATFORM_DECEXPORT
+# endif
#endif
#ifdef XERCES_DLL_EXPORT