diff options
author | tg <tg@FreeBSD.org> | 1998-10-06 06:49:13 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1998-10-06 06:49:13 +0000 |
commit | 65f8a63d97b1ee024bcfd63b662f9de928ea97ba (patch) | |
tree | 4230dca542f49809bf31a6e744a081963bd6bb56 | |
parent | 5a25a2c136254a6291a763456af144e81769a95e (diff) | |
download | FreeBSD-ports-65f8a63d97b1ee024bcfd63b662f9de928ea97ba.zip FreeBSD-ports-65f8a63d97b1ee024bcfd63b662f9de928ea97ba.tar.gz |
Support dynamic loading of modules in an ELF world.
Submitted by: Vladimir Kushnir <kushn@mail.kar.net>
-rw-r--r-- | lang/python+ipv6/Makefile | 10 | ||||
-rw-r--r-- | lang/python+ipv6/files/patch-ab | 20 | ||||
-rw-r--r-- | lang/python-devel/Makefile | 10 | ||||
-rw-r--r-- | lang/python/Makefile | 10 | ||||
-rw-r--r-- | lang/python15/Makefile | 10 | ||||
-rw-r--r-- | lang/python15/files/patch-ab | 20 | ||||
-rw-r--r-- | lang/python20/Makefile | 10 | ||||
-rw-r--r-- | lang/python21/Makefile | 10 | ||||
-rw-r--r-- | lang/python22/Makefile | 10 | ||||
-rw-r--r-- | lang/python23/Makefile | 10 | ||||
-rw-r--r-- | lang/python24/Makefile | 10 | ||||
-rw-r--r-- | lang/python25/Makefile | 10 | ||||
-rw-r--r-- | lang/python26/Makefile | 10 | ||||
-rw-r--r-- | lang/python27/Makefile | 10 | ||||
-rw-r--r-- | lang/python30/Makefile | 10 | ||||
-rw-r--r-- | lang/python31/Makefile | 10 | ||||
-rw-r--r-- | lang/python32/Makefile | 10 |
17 files changed, 160 insertions, 30 deletions
diff --git a/lang/python+ipv6/Makefile b/lang/python+ipv6/Makefile index 468b678..491a1aa 100644 --- a/lang/python+ipv6/Makefile +++ b/lang/python+ipv6/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python+ipv6/files/patch-ab b/lang/python+ipv6/files/patch-ab new file mode 100644 index 0000000..9ed0803 --- /dev/null +++ b/lang/python+ipv6/files/patch-ab @@ -0,0 +1,20 @@ +*** Python/importdl.c.orig Tue Sep 29 12:17:52 1998 +--- Python/importdl.c Tue Sep 29 12:18:40 1998 +*************** +*** 211,217 **** + extern char *Py_GetProgramName(); + + #ifndef FUNCNAME_PATTERN +! #if defined(__hp9000s300) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__BORLANDC__) + #define FUNCNAME_PATTERN "_init%.200s" + #else + #define FUNCNAME_PATTERN "init%.200s" +--- 211,217 ---- + extern char *Py_GetProgramName(); + + #ifndef FUNCNAME_PATTERN +! #if defined(__hp9000s300) || defined(__NetBSD__) || (defined(__FreeBSD__) && !defined(__ELF__)) || defined(__OpenBSD__) || defined(__BORLANDC__) + #define FUNCNAME_PATTERN "_init%.200s" + #else + #define FUNCNAME_PATTERN "init%.200s" + diff --git a/lang/python-devel/Makefile b/lang/python-devel/Makefile index 468b678..491a1aa 100644 --- a/lang/python-devel/Makefile +++ b/lang/python-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python/Makefile b/lang/python/Makefile index 468b678..491a1aa 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python15/Makefile b/lang/python15/Makefile index 468b678..491a1aa 100644 --- a/lang/python15/Makefile +++ b/lang/python15/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python15/files/patch-ab b/lang/python15/files/patch-ab new file mode 100644 index 0000000..9ed0803 --- /dev/null +++ b/lang/python15/files/patch-ab @@ -0,0 +1,20 @@ +*** Python/importdl.c.orig Tue Sep 29 12:17:52 1998 +--- Python/importdl.c Tue Sep 29 12:18:40 1998 +*************** +*** 211,217 **** + extern char *Py_GetProgramName(); + + #ifndef FUNCNAME_PATTERN +! #if defined(__hp9000s300) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__BORLANDC__) + #define FUNCNAME_PATTERN "_init%.200s" + #else + #define FUNCNAME_PATTERN "init%.200s" +--- 211,217 ---- + extern char *Py_GetProgramName(); + + #ifndef FUNCNAME_PATTERN +! #if defined(__hp9000s300) || defined(__NetBSD__) || (defined(__FreeBSD__) && !defined(__ELF__)) || defined(__OpenBSD__) || defined(__BORLANDC__) + #define FUNCNAME_PATTERN "_init%.200s" + #else + #define FUNCNAME_PATTERN "init%.200s" + diff --git a/lang/python20/Makefile b/lang/python20/Makefile index 468b678..491a1aa 100644 --- a/lang/python20/Makefile +++ b/lang/python20/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python21/Makefile b/lang/python21/Makefile index 468b678..491a1aa 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python22/Makefile b/lang/python22/Makefile index 468b678..491a1aa 100644 --- a/lang/python22/Makefile +++ b/lang/python22/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python23/Makefile b/lang/python23/Makefile index 468b678..491a1aa 100644 --- a/lang/python23/Makefile +++ b/lang/python23/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python24/Makefile b/lang/python24/Makefile index 468b678..491a1aa 100644 --- a/lang/python24/Makefile +++ b/lang/python24/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python25/Makefile b/lang/python25/Makefile index 468b678..491a1aa 100644 --- a/lang/python25/Makefile +++ b/lang/python25/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python26/Makefile b/lang/python26/Makefile index 468b678..491a1aa 100644 --- a/lang/python26/Makefile +++ b/lang/python26/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python27/Makefile b/lang/python27/Makefile index 468b678..491a1aa 100644 --- a/lang/python27/Makefile +++ b/lang/python27/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python30/Makefile b/lang/python30/Makefile index 468b678..491a1aa 100644 --- a/lang/python30/Makefile +++ b/lang/python30/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python31/Makefile b/lang/python31/Makefile index 468b678..491a1aa 100644 --- a/lang/python31/Makefile +++ b/lang/python31/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif diff --git a/lang/python32/Makefile b/lang/python32/Makefile index 468b678..491a1aa 100644 --- a/lang/python32/Makefile +++ b/lang/python32/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.38 1998/08/07 23:56:28 asami Exp $ +# $Id: Makefile,v 1.39 1998/09/25 10:05:08 asami Exp $ # DISTNAME= pyth151 @@ -24,7 +24,7 @@ PATCHFILES= _tkinter.1.txt SocketServer.1.txt bltinmodule.1.txt \ string.1.txt stringobject.1.txt stropmodule.1.txt \ timemodule.1.txt urllib.1.txt urllib.2.txt zlibmodule.1.txt -MAINTAINER= tg@FreeBSD.org +MAINTAINER= tg@FreeBSD.ORG LIB_DEPENDS= ${TK_DEPENDS} @@ -98,3 +98,9 @@ post-install: strip ${PREFIX}/bin/python .include <bsd.port.mk> + +# need <bsd.port.mk> to get ${PORTOBJFORMAT} +.if ${PORTOBJFORMAT} == elf +LDFLAGS+= -rdynamic +CONFIGURE_ENV?= LDFLAGS="${LDFLAGS}" +.endif |