diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-07-22 00:54:36 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-07-22 00:54:36 +0000 |
commit | f3eb65b2c20dd5e9d986b3362e43d112a2e00a97 (patch) | |
tree | fb68a49127479656ebc132722601c9ce6305fcdd /devel/dlcompat/Makefile | |
parent | a77b81c7cd9a75b759e35df1b6e6605cc285f543 (diff) | |
download | pkgsrc-f3eb65b2c20dd5e9d986b3362e43d112a2e00a97.tar.gz |
Update to dlcompat-20020606. Changes:
* dlfcn.c: I broke finks xemacs, now fixed.
* dlfcn.c: I really should read specs instead of making assumptions.
dlopen(NULL,x) opens the _global_ context, not the application context.
Fixed. Made dlsym_prepend_underscore work with stupidly long
symbol names.
* dlfcn.c: When opening a bundle for the second time, reuse the
dlstatus struct from the previously closed version. Removed some
debugging routines.
* README: Minor update
* dlfcn.c: Fixed my last "fix". Thanks to Darin Ohashi again.
* dlfcn.c: Fixed bug reported by Darin Ohashi. dlopen a bundle
close it, and dlopen same bundle again fails.
Changes to the package itself:
* USE_GMAKE is free on Darwin, so don't bother patching to avoid it.
Diffstat (limited to 'devel/dlcompat/Makefile')
-rw-r--r-- | devel/dlcompat/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/dlcompat/Makefile b/devel/dlcompat/Makefile index 682f6407837..0d079029c8d 100644 --- a/devel/dlcompat/Makefile +++ b/devel/dlcompat/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/05/17 16:56:02 schmonz Exp $ +# $NetBSD: Makefile,v 1.2 2002/07/22 00:54:36 schmonz Exp $ # -DISTNAME= dlcompat-20020508 +DISTNAME= dlcompat-20020606 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fink/} @@ -11,4 +11,6 @@ COMMENT= Library for dlopen() emulation on Darwin ONLY_FOR_PLATFORM= Darwin-*-* +USE_GMAKE= # defined + .include "../../mk/bsd.pkg.mk" |