diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2015-11-22 17:33:05 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2015-11-22 17:33:05 +0000 |
commit | ffb2f86e9fe7fe13debad8c687aa458ea22d21ec (patch) | |
tree | af02c67ff02bc8575cedab8ecdde32c99def032c /security/libgcrypt | |
parent | f0bbc7efadfd0050720c2e118dc28103bc5ea87e (diff) |
Notes
Diffstat (limited to 'security/libgcrypt')
-rw-r--r-- | security/libgcrypt/Makefile | 2 | ||||
-rw-r--r-- | security/libgcrypt/files/patch-cipher-Makefile.in | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile index 2dd61f851849..5d487587387f 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -2,7 +2,7 @@ PORTNAME= libgcrypt PORTVERSION= 1.6.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= GNUPG diff --git a/security/libgcrypt/files/patch-cipher-Makefile.in b/security/libgcrypt/files/patch-cipher-Makefile.in new file mode 100644 index 000000000000..2862e3746666 --- /dev/null +++ b/security/libgcrypt/files/patch-cipher-Makefile.in @@ -0,0 +1,23 @@ +--- cipher/Makefile.in.orig 2015-09-08 06:32:11 UTC ++++ cipher/Makefile.in +@@ -818,13 +818,19 @@ uninstall-am: + tags tags-am uninstall uninstall-am + + +-# We need to lower the optimization for this module. ++# We need to lower the optimization for these modules. + tiger.o: $(srcdir)/tiger.c + `echo $(COMPILE) -c $(srcdir)/tiger.c | $(o_flag_munging) ` + + tiger.lo: $(srcdir)/tiger.c + `echo $(LTCOMPILE) -c $(srcdir)/tiger.c | $(o_flag_munging) ` + ++salsa20.o: $(srcdir)/salsa20.c ++ `echo $(COMPILE) -c $(srcdir)/salsa20.c | $(o_flag_munging) ` ++ ++salsa20.lo: $(srcdir)/salsa20.c ++ `echo $(LTCOMPILE) -c $(srcdir)/salsa20.c | $(o_flag_munging) ` ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |