Issue #26920: Fix not getting the locale's charset upon initializing the interpreter,
on platforms that do not have langinfo
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index 5b5cc2b..71f23dd 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -315,7 +315,7 @@
     initialized = 1;
     _Py_Finalizing = NULL;
 
-#if defined(HAVE_LANGINFO_H) && defined(HAVE_SETLOCALE)
+#ifdef HAVE_SETLOCALE
     /* Set up the LC_CTYPE locale, so we can obtain
        the locale's charset without having to switch
        locales. */