diff options
author | jlam <jlam@pkgsrc.org> | 2001-05-24 02:58:15 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-05-24 02:58:15 +0000 |
commit | 18fc23567b080026a9fe0aed328c1e70025802b2 (patch) | |
tree | 495393ace765a7734b3aaeaf29ee8f22ac6f3075 /lang/tcl/Makefile | |
parent | 5a8f2e47e0123e36da4c8a09b771eff66585e8a9 (diff) | |
download | pkgsrc-18fc23567b080026a9fe0aed328c1e70025802b2.tar.gz |
Fix the installed tclConfig.sh so it's possible to use its values to generate
a shared library that depends on libtcl83.so. The TCL_SHLIB_LD command was
set to the incorrect value for ELF platforms, relying on "ld" which doesn't
understand the -Wl,... options it receives via ${TCL_LIB_SPEC}. Patch the
configure script to set TCL_SHLIB_LD to the proper value on NetBSD systems
depending on whether they are ELF or a.out, and also modify TCL_LIB_SPEC
to include -Wl,-rpath,... or -R... accordingly.
Bump version number to 8.3.2nb2.
Diffstat (limited to 'lang/tcl/Makefile')
-rw-r--r-- | lang/tcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tcl/Makefile b/lang/tcl/Makefile index 7772f700901..93f8e30e6f4 100644 --- a/lang/tcl/Makefile +++ b/lang/tcl/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2001/02/25 04:17:56 hubertf Exp $ +# $NetBSD: Makefile,v 1.8 2001/05/24 02:58:15 jlam Exp $ # DISTNAME= tcl8.3.2 -PKGNAME= tcl-8.3.2nb1 +PKGNAME= tcl-8.3.2nb2 CATEGORIES= lang MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_3/ \ ftp://gd.tuwien.ac.at/languages/tcl/scriptics/tcl8_3/ \ |