From 9218b70bdc17db14f7a2d832088d8d0380b86ce3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 5 May 1997 15:03:26 +0000 Subject: [PATCH] Remove 2 out of 3 __FreeBSD__ tests. These are no longer needed as of FreeBSD 2.0.5, according to Thomas Gellekum . --- Python/importdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/importdl.c b/Python/importdl.c index 605d9a65a7c..33c0e5df0c7 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -76,7 +76,7 @@ typedef void (*dl_funcptr)(); #define LONG_EXT "module.sl" #endif -#if defined(__NetBSD__) || defined(__FreeBSD__) +#if defined(__NetBSD__) #define DYNAMIC_LINK #define USE_SHLIB @@ -142,7 +142,7 @@ static void aix_loaderror(char *); #ifdef USE_SHLIB #include #include -#if defined(__NetBSD__) || defined(__FreeBSD__) +#if defined(__NetBSD__) #include #include #else