Received: by mail.netbsd.org (Postfix, from userid 605) id 5A1A485748; Fri, 7 Jul 2017 11:21:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DDD7784DB9 for ; Fri, 7 Jul 2017 11:21:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id EZ6J4ViYVD8s for ; Fri, 7 Jul 2017 11:21:12 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6E57284D04 for ; Fri, 7 Jul 2017 11:21:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6833AFAE8; Fri, 7 Jul 2017 11:21:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1499426472230100" MIME-Version: 1.0 Date: Fri, 7 Jul 2017 11:21:12 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/hiredis To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170707112112.6833AFAE8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1499426472230100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jul 7 11:21:12 UTC 2017 Modified Files: pkgsrc/databases/hiredis: distinfo pkgsrc/databases/hiredis/patches: patch-Makefile Log Message: Honor LDFLAGS. Fixes RELRO build. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/hiredis/distinfo cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/hiredis/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1499426472230100 Content-Disposition: inline Content-Length: 1726 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/hiredis/distinfo diff -u pkgsrc/databases/hiredis/distinfo:1.5 pkgsrc/databases/hiredis/distinfo:1.6 --- pkgsrc/databases/hiredis/distinfo:1.5 Sun Nov 29 18:35:37 2015 +++ pkgsrc/databases/hiredis/distinfo Fri Jul 7 11:21:12 2017 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2015/11/29 18:35:37 wiedi Exp $ +$NetBSD: distinfo,v 1.6 2017/07/07 11:21:12 wiz Exp $ SHA1 (hiredis-0.13.3.tar.gz) = be6f1c50fc4d649dd2924f0afecc0a1705dbe0d3 RMD160 (hiredis-0.13.3.tar.gz) = 0183a5bfffa09fa51bc89667081d89c619b85037 SHA512 (hiredis-0.13.3.tar.gz) = 0d8b71d5ee4105e8aaeeee308795afc2c1f60a04b0bfe8ae873d800a0c157882ec307efa04a8d0e63b538fd3fc3f88eedf4d46cb87c8937e2403927aeb7e434c Size (hiredis-0.13.3.tar.gz) = 58291 bytes -SHA1 (patch-Makefile) = f0c189ce10ed32d9a31a30b2067a03460e852fd1 +SHA1 (patch-Makefile) = 28334ea2818f494061c4d663c213a01e793d7126 Index: pkgsrc/databases/hiredis/patches/patch-Makefile diff -u pkgsrc/databases/hiredis/patches/patch-Makefile:1.3 pkgsrc/databases/hiredis/patches/patch-Makefile:1.4 --- pkgsrc/databases/hiredis/patches/patch-Makefile:1.3 Wed Sep 2 15:12:37 2015 +++ pkgsrc/databases/hiredis/patches/patch-Makefile Fri Jul 7 11:21:12 2017 @@ -1,4 +1,5 @@ -$NetBSD: patch-Makefile,v 1.3 2015/09/02 15:12:37 wiedi Exp $ +$NetBSD: patch-Makefile,v 1.4 2017/07/07 11:21:12 wiz Exp $ + use libtool --- Makefile.orig 2015-08-25 12:16:20.000000000 +0000 @@ -25,7 +26,7 @@ use libtool $(STLIB_MAKE_CMD) $(OBJ) +$(LANAME): $(OBJ) -+ $(LIBTOOL) --mode=link $(CC) -o $(LANAME) $(OBJ:.o=.lo) \ ++ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $(LANAME) $(OBJ:.o=.lo) \ + -rpath $(PREFIX)/lib \ + -version-number $(HIREDIS_MAJOR):$(HIREDIS_MINOR) + --_----------=_1499426472230100--