summaryrefslogtreecommitdiff
path: root/security/gnome-keyring/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2009-07-09 17:59:25 +0000
committerdrochner <drochner@pkgsrc.org>2009-07-09 17:59:25 +0000
commit0542b86b86474782c469fb66266de6b912eef5ae (patch)
tree05043df7c5481cbcfddda25fb84047b0a6f8e790 /security/gnome-keyring/patches
parenta2662b1867ac9095834a89690617e4b14e0bd487 (diff)
downloadpkgsrc-0542b86b86474782c469fb66266de6b912eef5ae.tar.gz
update to 2.26.3
changes: -Build fixes -Fix problem with RSA key sizes that are not a multiple of 8. This affected use of SSH keys in particular -Fix crash related to secure memory
Diffstat (limited to 'security/gnome-keyring/patches')
-rw-r--r--security/gnome-keyring/patches/patch-aa67
1 files changed, 0 insertions, 67 deletions
diff --git a/security/gnome-keyring/patches/patch-aa b/security/gnome-keyring/patches/patch-aa
deleted file mode 100644
index bc707e2d57b..00000000000
--- a/security/gnome-keyring/patches/patch-aa
+++ /dev/null
@@ -1,67 +0,0 @@
-$NetBSD: patch-aa,v 1.10 2009/04/16 19:35:29 drochner Exp $
-
---- configure.orig 2009-04-12 16:12:49.000000000 +0200
-+++ configure
-@@ -19198,7 +19198,7 @@ fi
-
- { $as_echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5
- $as_echo_n "checking build test tools, unit tests, and -Werror... " >&6; }
--if test "$enable_tests" == "yes"; then
-+if test "$enable_tests" = "yes"; then
-
- cat >>confdefs.h <<_ACEOF
- #define WITH_TESTS 1
-@@ -19214,7 +19214,7 @@ $as_echo "no" >&6; }
- tests_status="no"
- fi
-
-- if test "$enable_tests" == "yes"; then
-+ if test "$enable_tests" = "yes"; then
- WITH_TESTS_TRUE=
- WITH_TESTS_FALSE='#'
- else
-@@ -19229,7 +19229,7 @@ if test "${enable_coverage+set}" = set;
- fi
-
-
--if test "$enable_coverage" == "yes"; then
-+if test "$enable_coverage" = "yes"; then
- CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
- LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage"
- fi
-@@ -19247,7 +19247,7 @@ fi
- $as_echo_n "checking valgrind... " >&6; }
- valgrind_status="yes"
-
-- if test "$enable_valgrind" == "run"; then
-+ if test "$enable_valgrind" = "run"; then
- WITH_VALGRIND_TRUE=
- WITH_VALGRIND_FALSE='#'
- else
-@@ -19257,7 +19257,7 @@ fi
-
-
- # Run gnome-keyring-daemon under valgrind as default
--if test "$enable_valgrind" == "run"; then
-+if test "$enable_valgrind" = "run"; then
- # Extract the first word of "valgrind", so it can be a program name with args.
- set dummy valgrind; ac_word=$2
- { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
-@@ -19328,7 +19328,7 @@ fi
-
-
- # Build valgrind support into code
--if test "$enable_valgrind" == "yes"; then
-+if test "$enable_valgrind" = "yes"; then
- if test "${ac_cv_header_valgrind_valgrind_h+set}" = set; then
- { $as_echo "$as_me:$LINENO: checking for valgrind/valgrind.h" >&5
- $as_echo_n "checking for valgrind/valgrind.h... " >&6; }
-@@ -19463,7 +19463,7 @@ else
- fi
-
-
-- if test "$have_valgrind" == "no"; then
-+ if test "$have_valgrind" = "no"; then
- { { $as_echo "$as_me:$LINENO: error: The valgrind headers are missing" >&5
- $as_echo "$as_me: error: The valgrind headers are missing" >&2;}
- { (exit 1); exit 1; }; }