pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/libtomcrypt
Module Name: pkgsrc
Committed By: wiz
Date: Sat Jul 15 17:23:04 UTC 2017
Modified Files:
pkgsrc/security/libtomcrypt: distinfo
pkgsrc/security/libtomcrypt/patches: patch-ab patch-ac
Log Message:
Honor LDFLAGS. Fixes RELRO build.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/libtomcrypt/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/libtomcrypt/patches/patch-ab
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/libtomcrypt/patches/patch-ac
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/libtomcrypt/distinfo
diff -u pkgsrc/security/libtomcrypt/distinfo:1.6 pkgsrc/security/libtomcrypt/distinfo:1.7
--- pkgsrc/security/libtomcrypt/distinfo:1.6 Tue May 16 21:55:50 2017
+++ pkgsrc/security/libtomcrypt/distinfo Sat Jul 15 17:23:03 2017
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.6 2017/05/16 21:55:50 snj Exp $
+$NetBSD: distinfo,v 1.7 2017/07/15 17:23:03 wiz Exp $
SHA1 (crypt-1.17.tar.bz2) = 9c746822c84e4276e432b64964f94d1d5ddd13ad
RMD160 (crypt-1.17.tar.bz2) = 742d72d82fea2e6a9865d8c682c10cbaba69ea2f
SHA512 (crypt-1.17.tar.bz2) = 9335df5ae0a2c8e33e8f03ced0cfb0a8d1ac4bccd007b74818228c3b8b232446b4425356f304a08320b75542a537a46b305b92c3011dee76dfd636497bf57af2
Size (crypt-1.17.tar.bz2) = 1599215 bytes
SHA1 (patch-aa) = a2385cf0543a19b1555d4370a10c012c5141b48a
-SHA1 (patch-ab) = c0eb1522dd02c2811deebfa353433e81e71a8928
-SHA1 (patch-ac) = 871a713512b20199b502876d2523e8bf619c5e85
+SHA1 (patch-ab) = 9ccfd1f43607c4b781f31f2ddd53500db5c94efd
+SHA1 (patch-ac) = f3beb2d6ffc2db483891b61d1fe53db38434fe38
SHA1 (patch-src_headers_tomcrypt__macros.h) = 4aa1e0773a11c32fca83e7de82e12d44fdbb8202
SHA1 (patch-src_pk_rsa_rsa__verify__hash.c) = 0bc2467fa3fc0a372baafbfea4c7b328422f8adb
Index: pkgsrc/security/libtomcrypt/patches/patch-ab
diff -u pkgsrc/security/libtomcrypt/patches/patch-ab:1.2 pkgsrc/security/libtomcrypt/patches/patch-ab:1.3
--- pkgsrc/security/libtomcrypt/patches/patch-ab:1.2 Thu Jan 16 13:32:10 2014
+++ pkgsrc/security/libtomcrypt/patches/patch-ab Sat Jul 15 17:23:04 2017
@@ -1,4 +1,4 @@
-$NetBSD: patch-ab,v 1.2 2014/01/16 13:32:10 drochner Exp $
+$NetBSD: patch-ab,v 1.3 2017/07/15 17:23:04 wiz Exp $
--- makefile.shared.orig 2007-05-12 14:46:25.000000000 +0000
+++ makefile.shared
@@ -73,7 +73,7 @@ $NetBSD: patch-ab,v 1.2 2014/01/16 13:32
-$(LIBNAME): $(OBJECTS) testprof/$(LIBTEST)
- libtool --silent --mode=link gcc $(CFLAGS) `find . -type f | grep "[.]lo" | grep "src/" | xargs` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
+$(LIBNAME): $(OBJECTS:.o=.lo) testprof/$(LIBTEST)
-+ libtool --silent --mode=link ${CC} $(CFLAGS) `find . -type f | grep "[.]lo" | grep "src/" | xargs` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
++ libtool --silent --mode=link ${CC} $(CFLAGS) $(LDFLAGS) `find . -type f | grep "[.]lo" | grep "src/" | xargs` $(EXTRALIBS) -o $(LIBNAME) -rpath $(LIBPATH) -version-info $(VERSION)
install: $(LIBNAME)
- install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)
Index: pkgsrc/security/libtomcrypt/patches/patch-ac
diff -u pkgsrc/security/libtomcrypt/patches/patch-ac:1.1 pkgsrc/security/libtomcrypt/patches/patch-ac:1.2
--- pkgsrc/security/libtomcrypt/patches/patch-ac:1.1 Thu Mar 10 10:02:34 2011
+++ pkgsrc/security/libtomcrypt/patches/patch-ac Sat Jul 15 17:23:04 2017
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.1 2011/03/10 10:02:34 drochner Exp $
+$NetBSD: patch-ac,v 1.2 2017/07/15 17:23:04 wiz Exp $
--- testprof/makefile.shared.orig 2007-05-12 14:46:25.000000000 +0000
+++ testprof/makefile.shared
@@ -19,7 +19,7 @@ $NetBSD: patch-ac,v 1.1 2011/03/10 10:02
+ ${LIBTOOL} --mode=compile ${CC} -c ${CFLAGS} $< -o $@
+
+$(LIBTEST): $(OBJECTS:.o=.lo)
-+ libtool --silent --mode=link ${CC} $(CFLAGS) `find . -type f | grep "[.]lo" | xargs` -o $@ -rpath $(LIBPATH) -version-info $(VERSION)
++ libtool --silent --mode=link ${CC} $(CFLAGS) $(LDFLAGS) `find . -type f | grep "[.]lo" | xargs` -o $@ -rpath $(LIBPATH) -version-info $(VERSION)
install: $(LIBTEST)
libtool --silent --mode=install install -c $(LIBTEST) $(DESTDIR)$(LIBPATH)/$(LIBTEST)
Home |
Main Index |
Thread Index |
Old Index