forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes: -support for PKCS #5 PBKDF2, SHA3, GOST R 34.11-94 -bugfixes -minor improvements
- Loading branch information
drochner
committed
Mar 15, 2013
1 parent
f1b12c3
commit 47f2374
Showing
8 changed files
with
65 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
$NetBSD: distinfo,v 1.6 2011/09/08 20:22:13 wiz Exp $ | ||
$NetBSD: distinfo,v 1.7 2013/03/15 18:22:03 drochner Exp $ | ||
|
||
SHA1 (nettle-2.4.tar.gz) = 1df0cd013e83f73b78a5521411a67e331de3dfa6 | ||
RMD160 (nettle-2.4.tar.gz) = 8480e10ce718db1a280d57a808a78a4cfa940d1c | ||
Size (nettle-2.4.tar.gz) = 1075789 bytes | ||
SHA1 (patch-Makefile.in) = cf1f0fb4e23657f493f381c80b31e7c6294b67e7 | ||
SHA1 (nettle-2.6.tar.gz) = 401f982a0b365e04c8c38c4da42afdd7d2d51d80 | ||
RMD160 (nettle-2.6.tar.gz) = 898483350285468fe66b3fad4e7891583b08e15e | ||
Size (nettle-2.6.tar.gz) = 1385695 bytes | ||
SHA1 (patch-Makefile.in) = 39e4eba0a984cd2cd3037b1c46b65785deb3feb6 | ||
SHA1 (patch-aa) = 509b333e80d88c9fab75c0bc3e4edde862595d0d | ||
SHA1 (patch-config.make.in) = 0bf3d2729b97883b41374a1ea3d5286fd2554e98 | ||
SHA1 (patch-testsuite_Makefile.in) = f73c6af3fc2ae63174406df4ff89892f7b5634d7 | ||
SHA1 (patch-tools_Makefile.in) = 5eca9e6d806cea894493122f7e1c79d6a26f2c88 | ||
SHA1 (patch-x86_camellia-crypt-internal.asm) = 0dd04f76ccca63f0c3e7260269fa8f74d01ddda3 | ||
SHA1 (patch-testsuite_Makefile.in) = a1363d21af5371d36629797a413129850af9ee87 | ||
SHA1 (patch-tools_Makefile.in) = f074fc1bf0e2b7ded88fd65ec303e2be407f0217 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$NetBSD: patch-aa,v 1.1 2013/03/15 18:22:03 drochner Exp $ | ||
|
||
--- configure.orig 2013-01-14 21:44:12.000000000 +0000 | ||
+++ configure | ||
@@ -6886,7 +6886,7 @@ fi | ||
enable_documentation=yes | ||
|
||
else | ||
- if test "x$enable_documentation" == "xauto" ; then | ||
+ if test "x$enable_documentation" = "xauto" ; then | ||
enable_documentation=no | ||
else | ||
as_fn_error $? "Cannot find 'makeinfo', required for documentation." "$LINENO" 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
$NetBSD: patch-testsuite_Makefile.in,v 1.2 2011/08/22 15:09:21 wiz Exp $ | ||
$NetBSD: patch-testsuite_Makefile.in,v 1.3 2013/03/15 18:22:03 drochner Exp $ | ||
|
||
Use LIBTOOL. | ||
|
||
--- testsuite/Makefile.in.orig 2011-07-11 13:59:25.000000000 +0000 | ||
--- testsuite/Makefile.in.orig 2013-01-14 21:44:13.000000000 +0000 | ||
+++ testsuite/Makefile.in | ||
@@ -64,8 +64,8 @@ all: $(TARGETS) $(EXTRA_TARGETS) | ||
@@ -70,9 +70,9 @@ all: $(TARGETS) $(EXTRA_TARGETS) | ||
# to use suffix rules to build the test executables. So we use an | ||
# explicit rule for each and every executable. | ||
|
||
-LIB_HOGWEED = @IF_HOGWEED@ -lhogweed | ||
-TEST_OBJS = testutils.$(OBJEXT) $(LIB_HOGWEED) -lnettle $(LIBS) | ||
+LIB_HOGWEED = @IF_HOGWEED@ ../libhogweed.la | ||
+TEST_OBJS = testutils.$(OBJEXT) $(LIB_HOGWEED) ../libnettle.la $(LIBS) | ||
TEST_OBJS = testutils.$(OBJEXT) ../nettle-internal.$(OBJEXT) \ | ||
- $(LIB_HOGWEED) -lnettle $(LIBS) | ||
+ $(LIB_HOGWEED) ../libnettle.la $(LIBS) | ||
|
||
.PHONY: test-rules | ||
test-rules: | ||
@@ -83,7 +83,7 @@ test-rules: | ||
../nettle-internal.$(OBJEXT): | ||
( cd .. && $(MAKE) nettle-internal.$(OBJEXT) ) | ||
@@ -93,7 +93,7 @@ test-rules: | ||
include $(srcdir)/.test-rules.make | ||
|
||
$(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) \ | ||
$(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) ../nettle-internal.$(OBJEXT) \ | ||
- ../libnettle.a @IF_HOGWEED@ ../libhogweed.a | ||
+ ../libnettle.la @IF_HOGWEED@ ../libhogweed.la | ||
|
||
# The PATH update is for locating dlls on w*ndows. | ||
check: $(TS_ALL) $(srcdir)/run-tests | ||
# For use as, e.g., | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
security/nettle/patches/patch-x86_camellia-crypt-internal.asm
This file was deleted.
Oops, something went wrong.