diff options
author | mef <mef@pkgsrc.org> | 2016-02-16 12:16:28 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2016-02-16 12:16:28 +0000 |
commit | eebca6d4b4ed630d5ae6885c32f3bc6c2c690892 (patch) | |
tree | a159dfd1ac9dd07ff379204d48d9c5eb89cdb581 /databases/lmdb/patches | |
parent | e5d8bae8ebce45ecb359b090201d96420a346cb9 (diff) | |
download | pkgsrc-eebca6d4b4ed630d5ae6885c32f3bc6c2c690892.tar.gz |
Update to 0.9.18
----------------
LMDB 0.9.18 Release (2016/02/05)
Fix robust mutex detection on glibc 2.10-11 (ITS#8330)
Fix page_search_root assert on FreeDB (ITS#8336)
Fix MDB_APPENDDUP vs. rewrite(single item) (ITS#8334)
Fix mdb_copy of large files on Windows
Fix subcursor move after delete (ITS#8355)
Fix mdb_midl_shirnk off-by-one (ITS#8363)
Check for utf8_to_utf16 failures (ITS#7992)
Catch strdup failure in mdb_dbi_open
Build
Additional makefile var tweaks (ITS#8169)
Documentation
Add Getting Started page
Update WRITEMAP description
Diffstat (limited to 'databases/lmdb/patches')
-rw-r--r-- | databases/lmdb/patches/patch-libraries_liblmdb_Makefile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/databases/lmdb/patches/patch-libraries_liblmdb_Makefile b/databases/lmdb/patches/patch-libraries_liblmdb_Makefile index 01bf8b9037a..24cad4ba992 100644 --- a/databases/lmdb/patches/patch-libraries_liblmdb_Makefile +++ b/databases/lmdb/patches/patch-libraries_liblmdb_Makefile @@ -1,17 +1,19 @@ -$NetBSD: patch-libraries_liblmdb_Makefile,v 1.1 2015/10/07 10:15:12 fhajny Exp $ +$NetBSD: patch-libraries_liblmdb_Makefile,v 1.2 2016/02/16 12:16:28 mef Exp $ Use proper install commands. ---- libraries/liblmdb/Makefile.orig 2015-08-14 00:00:38.000000000 +0000 -+++ libraries/liblmdb/Makefile -@@ -36,10 +36,10 @@ PROGS = $(IPROGS) mtest mtest2 mtest3 mt - all: $(ILIBS) $(PROGS) - - install: $(ILIBS) $(IPROGS) $(IHDRS) -- for f in $(IPROGS); do cp $$f $(DESTDIR)$(prefix)/bin; done -- for f in $(ILIBS); do cp $$f $(DESTDIR)$(prefix)/lib; done -- for f in $(IHDRS); do cp $$f $(DESTDIR)$(prefix)/include; done -- for f in $(IDOCS); do cp $$f $(DESTDIR)$(prefix)/man/man1; done + clean: + rm -rf $(PROGS) *.[ao] *.[ls]o *~ testdb +--- libraries/liblmdb/Makefile.orig 2016-02-06 06:22:15.000000000 +0900 ++++ libraries/liblmdb/Makefile 2016-02-16 21:08:37.000000000 +0900 +@@ -48,10 +48,10 @@ install: $(ILIBS) $(IPROGS) $(IHDRS) + mkdir -p $(DESTDIR)$(libdir) + mkdir -p $(DESTDIR)$(includedir) + mkdir -p $(DESTDIR)$(mandir)/man1 +- for f in $(IPROGS); do cp $$f $(DESTDIR)$(bindir); done +- for f in $(ILIBS); do cp $$f $(DESTDIR)$(libdir); done +- for f in $(IHDRS); do cp $$f $(DESTDIR)$(includedir); done +- for f in $(IDOCS); do cp $$f $(DESTDIR)$(mandir)/man1; done + for f in $(IPROGS); do $(BSD_INSTALL_PROGRAM) $$f $(DESTDIR)$(prefix)/bin; done + for f in $(ILIBS); do $(BSD_INSTALL_LIB) $$f $(DESTDIR)$(prefix)/lib; done + for f in $(IHDRS); do $(BSD_INSTALL_DATA) $$f $(DESTDIR)$(prefix)/include; done |