summaryrefslogtreecommitdiffstats
path: root/Python/importdl.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-05 15:03:26 (GMT)
committerGuido van Rossum <guido@python.org>1997-05-05 15:03:26 (GMT)
commit9218b70bdc17db14f7a2d832088d8d0380b86ce3 (patch)
tree168a4b5f9d757a74c151b0a72b3dd96581f4e370 /Python/importdl.c
parent526749b6782cfb56f995b8a299a39195b23b77bf (diff)
downloadcpython-9218b70bdc17db14f7a2d832088d8d0380b86ce3.zip
cpython-9218b70bdc17db14f7a2d832088d8d0380b86ce3.tar.gz
cpython-9218b70bdc17db14f7a2d832088d8d0380b86ce3.tar.bz2
Remove 2 out of 3 __FreeBSD__ tests.
These are no longer needed as of FreeBSD 2.0.5, according to Thomas Gellekum <tg@ihf.rwth-aachen.de>.
Diffstat (limited to 'Python/importdl.c')
-rw-r--r--Python/importdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index 605d9a6..33c0e5d 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 <sys/types.h>
#include <sys/stat.h>
-#if defined(__NetBSD__) || defined(__FreeBSD__)
+#if defined(__NetBSD__)
#include <nlist.h>
#include <link.h>
#else