From 2fcc4227a63b4cf513df2e42468c233793e8a9c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Wed, 5 Sep 2001 14:24:43 +0000 Subject: Patch #455231: Support ELF properly on OpenBSD. --- Python/dynload_shlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/dynload_shlib.c') diff --git a/Python/dynload_shlib.c b/Python/dynload_shlib.c index 7de3b7d43e..78a9956858 100644 --- a/Python/dynload_shlib.c +++ b/Python/dynload_shlib.c @@ -16,7 +16,7 @@ #endif #endif -#ifdef __OpenBSD__ +#if defined(__OpenBSD__) && !defined(__ELF__) #define LEAD_UNDERSCORE "_" #else #define LEAD_UNDERSCORE "" -- cgit v1.2.1