26 lines
761 B
Diff
26 lines
761 B
Diff
From 008d706958c3a2b1d96d5609d362b177ea57dda3 Mon Sep 17 00:00:00 2001
|
|
From: Ariadne Conill <ariadne@dereferenced.org>
|
|
Date: Thu, 18 Mar 2021 06:03:32 -0600
|
|
Subject: [PATCH] libpkgconf: personality: default: set want_default_static and
|
|
want_default_pure to true on windows
|
|
|
|
---
|
|
libpkgconf/personality.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/libpkgconf/personality.c b/libpkgconf/personality.c
|
|
index 32798fa..a8bcb61 100644
|
|
--- a/libpkgconf/personality.c
|
|
+++ b/libpkgconf/personality.c
|
|
@@ -24,6 +24,10 @@
|
|
static bool default_personality_init = false;
|
|
static pkgconf_cross_personality_t default_personality = {
|
|
.name = "default",
|
|
+#ifdef _WIN32
|
|
+ .want_default_static = true,
|
|
+ .want_default_pure = true,
|
|
+#endif
|
|
};
|
|
|
|
static inline void
|