1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/lang/python15/files/patch-ab
1997-05-05 13:48:19 +00:00

21 lines
480 B
Plaintext

--- Python/importdl.c.orig Fri Oct 25 16:43:24 1996
+++ Python/importdl.c Mon May 5 15:43:38 1997
@@ -76,7 +76,7 @@
#define LONG_EXT "module.sl"
#endif
-#if defined(__NetBSD__) || defined(__FreeBSD__)
+#if defined(__NetBSD__)
#define DYNAMIC_LINK
#define USE_SHLIB
@@ -150,7 +150,7 @@
#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