diff options
author | schmonz <schmonz> | 2002-07-22 00:54:36 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2002-07-22 00:54:36 +0000 |
commit | f533fa1637a1372e0091605e677a34e521e6f8d1 (patch) | |
tree | fb68a49127479656ebc132722601c9ce6305fcdd /devel/dlcompat/patches | |
parent | f3689cdc9cb672e3933dd33f96c302276495380b (diff) | |
download | pkgsrc-f533fa1637a1372e0091605e677a34e521e6f8d1.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/patches')
-rw-r--r-- | devel/dlcompat/patches/patch-aa | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/devel/dlcompat/patches/patch-aa b/devel/dlcompat/patches/patch-aa index 687d2c41c65..8576ea9e889 100644 --- a/devel/dlcompat/patches/patch-aa +++ b/devel/dlcompat/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.2 2002/05/17 17:10:10 schmonz Exp $ +$NetBSD: patch-aa,v 1.3 2002/07/22 00:54:37 schmonz Exp $ --- Makefile.orig Sun May 12 22:36:53 2002 +++ Makefile @@ -11,16 +11,3 @@ $NetBSD: patch-aa,v 1.2 2002/05/17 17:10:10 schmonz Exp $ DEBUG=0 CC=cc -@@ -67,10 +67,10 @@ - $(RANLIB) libdl.a - - libdl.dylib: libdl.0.dylib -- ln -sf $+ $@ -+ ln -sf $> $@ - - libdl.0.dylib: $(OBJS) -- $(CC) -dynamiclib -o $@ $+ -install_name $(prefix)/lib/$@ -+ $(CC) -dynamiclib -o $@ $> -install_name $(prefix)/lib/$@ - - clean: - rm -f $(OBJS) libdl.* *~ *.o |