summaryrefslogtreecommitdiff
path: root/Python/importdl.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-05 15:03:26 +0000
committerGuido van Rossum <guido@python.org>1997-05-05 15:03:26 +0000
commit935b02c2ec30a1c026636eaaea9209ebe3baeb3a (patch)
tree42ceed3b08a547c646f82a253e7a5e01e606e47a /Python/importdl.c
parent14b2216d6599c2b4dd2816432ae60e1d8b08e23c (diff)
downloadcpython-935b02c2ec30a1c026636eaaea9209ebe3baeb3a.tar.gz
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 605d9a65a7..33c0e5df0c 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