forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request microsoft#6621 from NNemec/glibmm
[glibmm] fix microsoft#6550 by partially reverting microsoft#5937 (+minor correction in glibmmconfig.h)
- Loading branch information
Showing
4 changed files
with
59 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Source: glibmm | ||
Version: 2.52.1-8 | ||
Description: This is glibmm, a C++ API for parts of glib that are useful for C++. See http://www.gtkmm.org. | ||
Build-Depends: zlib, pcre, libffi, gettext, libiconv, glib, libsigcpp | ||
Source: glibmm | ||
Version: 2.52.1-9 | ||
Description: This is glibmm, a C++ API for parts of glib that are useful for C++. See http://www.gtkmm.org. | ||
Build-Depends: zlib, pcre, libffi, gettext, libiconv, glib, libsigcpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
diff --git a/MSVC_Net2013/glibmm/glibmmconfig.h b/MSVC_Net2013/glibmm/glibmmconfig.h | ||
index 61bb83e..7dbe809 100644 | ||
--- a/MSVC_Net2013/glibmm/glibmmconfig.h | ||
+++ b/MSVC_Net2013/glibmm/glibmmconfig.h | ||
@@ -7,12 +7,17 @@ | ||
# if defined(_MSC_VER) | ||
# define GLIBMM_MSC 1 | ||
# define GLIBMM_WIN32 1 | ||
-# define GLIBMM_DLL 1 | ||
+# if !defined(GLIBMM_STATIC_LIB) | ||
+# define GLIBMM_DLL 1 | ||
+# endif | ||
# elif defined(__CYGWIN__) | ||
# define GLIBMM_CONFIGURE 1 | ||
# elif defined(__MINGW32__) | ||
# define GLIBMM_WIN32 1 | ||
# define GLIBMM_CONFIGURE 1 | ||
+# if !defined(GLIBMM_STATIC_LIB) | ||
+# define GLIBMM_DLL 1 | ||
+# endif | ||
# else | ||
/* AIX clR compiler complains about this even though it doesn't get this far */ | ||
# error "Unknown architecture (send me gcc --dumpspecs or equiv)" | ||
@@ -108,6 +113,7 @@ | ||
# define GLIBMM_HAVE_WIDE_STREAM 1 | ||
# define GLIBMM_HAVE_DISAMBIGUOUS_CONST_TEMPLATE_SPECIALIZATIONS 1 | ||
# define GLIBMM_HAVE_C_STD_TIME_T_IS_NOT_INT32 1 | ||
+# define GLIBMM_HAVE_ALLOWS_STATIC_INLINE_NPOS 1 | ||
# define GLIBMM_CAN_USE_DYNAMIC_CAST_IN_UNUSED_TEMPLATE_WITHOUT_DEFINITION 1 | ||
# define GLIBMM_CAN_ASSIGN_NON_EXTERN_C_FUNCTIONS_TO_EXTERN_C_CALLBACKS 1 | ||
# define GLIBMM_CAN_USE_NAMESPACES_INSIDE_EXTERNC 1 | ||
@@ -140,11 +146,6 @@ | ||
* it to be defined. Remove after grace period. */ | ||
#define GLIBMM_USING_STD(Symbol) | ||
|
||
-/* Enable DLL-specific stuff only when not building a static library */ | ||
-#if !defined(__CYGWIN__) && defined(__MINGW32__) && !defined(GLIBMM_STATIC_LIB) | ||
-# define GLIBMM_DLL 1 | ||
-#endif | ||
- | ||
#ifdef GLIBMM_DLL | ||
# if defined(GLIBMM_BUILD) && defined(_WINDLL) | ||
/* Do not dllexport as it is handled by gendef on MSVC */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters