diff options
author | schmonz <schmonz> | 2002-11-19 07:19:13 +0000 |
---|---|---|
committer | schmonz <schmonz> | 2002-11-19 07:19:13 +0000 |
commit | 391a374a32c39aac829dd0967e22df3326d87bc0 (patch) | |
tree | e7e9018ea55a80d301e785a67fe6aba5f6c4c096 /devel | |
parent | 5066ba26f8fcdb0e58fca7a9e943b4c03bbda70f (diff) | |
download | pkgsrc-391a374a32c39aac829dd0967e22df3326d87bc0.tar.gz |
Update to Nov. 17 release. From the changelog:
* dlfcn.c: Patch from Max Horn applied. Fixes some path issues,
and code cleanup.
* dlfcn.c: Lookup the NSAddImage etc stuff that was added in OS
10.1, so that the binary can be used on 10.0. It may or may not
work, don't have a 10.0 system to try it.
* dlfcn.c: Moving things around.
* dlfcn.c: bugfixes
* Makefile, README: Removed any and all finkisms.
* dlfcn.c, Makefile: Prepend the underscore by default for dlsym.
* Makefile: Made Makefile bsdmake compatible.
* dlfcn.c dlfcn.h: First attempt at adding dladdr
Not in the changelog:
* added configure script
* added manual pages
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dlcompat/Makefile | 6 | ||||
-rw-r--r-- | devel/dlcompat/PLIST | 8 | ||||
-rw-r--r-- | devel/dlcompat/distinfo | 7 | ||||
-rw-r--r-- | devel/dlcompat/patches/patch-aa | 13 |
4 files changed, 12 insertions, 22 deletions
diff --git a/devel/dlcompat/Makefile b/devel/dlcompat/Makefile index e26a1fb3cd1..2208d0fb2ca 100644 --- a/devel/dlcompat/Makefile +++ b/devel/dlcompat/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2002/08/25 19:22:26 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2002/11/19 07:19:13 schmonz Exp $ # -DISTNAME= dlcompat-20020606 +DISTNAME= dlcompat-20021117 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fink/} @@ -11,6 +11,6 @@ COMMENT= Library for dlopen() emulation on Darwin ONLY_FOR_PLATFORM= Darwin-*-* -USE_GMAKE= # defined +GNU_CONFIGURE= # defined .include "../../mk/bsd.pkg.mk" diff --git a/devel/dlcompat/PLIST b/devel/dlcompat/PLIST index 86f36b1f29f..5df168b3009 100644 --- a/devel/dlcompat/PLIST +++ b/devel/dlcompat/PLIST @@ -1,5 +1,9 @@ -@comment $NetBSD: PLIST,v 1.2 2002/08/25 19:22:26 jlam Exp $ +@comment $NetBSD: PLIST,v 1.3 2002/11/19 07:19:13 schmonz Exp $ include/dlfcn.h -lib/libdl.0.dylib +lib/libdl.1.dylib lib/libdl.a lib/libdl.dylib +man/man3/dlclose.3 +man/man3/dlerror.3 +man/man3/dlopen.3 +man/man3/dlsym.3 diff --git a/devel/dlcompat/distinfo b/devel/dlcompat/distinfo index 36d17ed82a5..2e6f6172b1b 100644 --- a/devel/dlcompat/distinfo +++ b/devel/dlcompat/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.5 2002/08/25 19:22:26 jlam Exp $ +$NetBSD: distinfo,v 1.6 2002/11/19 07:19:14 schmonz Exp $ -SHA1 (dlcompat-20020606.tar.gz) = 4ac0bb67d1693bb6af7d4ebf095f7ccc4feb59e2 -Size (dlcompat-20020606.tar.gz) = 8131 bytes -SHA1 (patch-aa) = 2fbfa064dbf270f0d297efa07a0413b9e3979bd6 +SHA1 (dlcompat-20021117.tar.gz) = e4d1e077ee8f6bab1523bd172e0354337bf89ce9 +Size (dlcompat-20021117.tar.gz) = 30666 bytes diff --git a/devel/dlcompat/patches/patch-aa b/devel/dlcompat/patches/patch-aa deleted file mode 100644 index f394b7252ce..00000000000 --- a/devel/dlcompat/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2002/08/25 19:22:27 jlam Exp $ - ---- Makefile.orig Sun May 12 22:36:53 2002 -+++ Makefile -@@ -19,7 +19,7 @@ - # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - --prefix=/usr -+prefix=${PREFIX} - DEBUG=0 - - CC=cc |