summaryrefslogtreecommitdiff
path: root/Include/internal/pycore_runtime_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/internal/pycore_runtime_init.h')
-rw-r--r--Include/internal/pycore_runtime_init.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/Include/internal/pycore_runtime_init.h b/Include/internal/pycore_runtime_init.h
index c6a27d076e..a8d5953ff9 100644
--- a/Include/internal/pycore_runtime_init.h
+++ b/Include/internal/pycore_runtime_init.h
@@ -97,23 +97,10 @@ extern "C" {
._main_interpreter = _PyInterpreterState_INIT, \
}
-#ifdef HAVE_DLOPEN
-# include <dlfcn.h>
-# if HAVE_DECL_RTLD_NOW
-# define _Py_DLOPEN_FLAGS RTLD_NOW
-# else
-# define _Py_DLOPEN_FLAGS RTLD_LAZY
-# endif
-# define DLOPENFLAGS_INIT .dlopenflags = _Py_DLOPEN_FLAGS,
-#else
-# define _Py_DLOPEN_FLAGS 0
-# define DLOPENFLAGS_INIT
-#endif
-
#define _PyInterpreterState_INIT \
{ \
.id_refcount = -1, \
- DLOPENFLAGS_INIT \
+ .imports = IMPORTS_INIT, \
.ceval = { \
.recursion_limit = Py_DEFAULT_RECURSION_LIMIT, \
}, \