From 82228c69ff641a83838ba5f0d12dc3f6f4d60f28 Mon Sep 17 00:00:00 2001
From: Mark Harfouche <mark.harfouche@gmail.com>
Date: Sun, 11 Sep 2022 10:32:19 -0400
Subject: [PATCH 8/9] default dll import for windows

---
 absl/base/config.h | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/absl/base/config.h b/absl/base/config.h
index 8533aead..cc92658c 100644
--- a/absl/base/config.h
+++ b/absl/base/config.h
@@ -737,10 +737,9 @@ static_assert(ABSL_INTERNAL_INLINE_NAMESPACE_STR[0] != 'h' ||
 #if defined(_MSC_VER)
 #if defined(ABSL_BUILD_DLL)
 #define ABSL_DLL __declspec(dllexport)
-#elif defined(ABSL_CONSUME_DLL)
-#define ABSL_DLL __declspec(dllimport)
 #else
-#define ABSL_DLL
+// conda-forge addition: by default, users import the definitions defined here
+#define ABSL_DLL __declspec(dllimport)
 #endif
 #else
 #define ABSL_DLL
-- 
2.38.1.windows.1

