summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2009-01-25 21:30:26 +0000
committerDaniel Black <dragonheart@gentoo.org>2009-01-25 21:30:26 +0000
commit2a66eff0c7c93c16305df83f2860b327de3ebff8 (patch)
tree1c6de9c40ccedeaba00eb32df8b30f76d4e158d8 /dev-libs/libgcrypt/files
parentAdd new patchset for 2.0 for fbsd7 (diff)
downloadgentoo-2-2a66eff0c7c93c16305df83f2860b327de3ebff8.tar.gz
gentoo-2-2a66eff0c7c93c16305df83f2860b327de3ebff8.tar.bz2
gentoo-2-2a66eff0c7c93c16305df83f2860b327de3ebff8.zip
version bump as per bug #256049 thanks Arfrever Frehtes Taifersar Arahesis. Dropped IDEA support in this release. removed old versions
(Portage version: 2.2_rc20/cvs/Linux 2.6.26-gentoo-r4 x86_64)
Diffstat (limited to 'dev-libs/libgcrypt/files')
-rw-r--r--dev-libs/libgcrypt/files/libgcrypt-1.2.3-strict-aliasing.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-libs/libgcrypt/files/libgcrypt-1.2.3-strict-aliasing.patch b/dev-libs/libgcrypt/files/libgcrypt-1.2.3-strict-aliasing.patch
deleted file mode 100644
index e9dc7a0476e0..000000000000
--- a/dev-libs/libgcrypt/files/libgcrypt-1.2.3-strict-aliasing.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -urNp libgcrypt-1.2.3.org/cipher/ac.c libgcrypt-1.2.3/cipher/ac.c
---- libgcrypt-1.2.3.org/cipher/ac.c 2005-07-29 16:45:48.000000000 +0300
-+++ libgcrypt-1.2.3/cipher/ac.c 2007-01-10 22:13:05.000000000 +0200
-@@ -137,9 +137,11 @@ gcry_ac_data_copy_internal (gcry_ac_data
- data_new->data_n = data->data_n;
-
- if (! err)
-- /* Allocate space for named MPIs. */
-- err = _gcry_malloc (sizeof (gcry_ac_mpi_t) * data->data_n, 0,
-- (void **) &data_new->data);
-+ {
-+ /* Allocate space for named MPIs. */
-+ err = _gcry_malloc (sizeof (gcry_ac_mpi_t) * data->data_n, 0, &p);
-+ data_new->data = (gcry_ac_mpi_t *)p;
-+ }
-
- if (! err)
- {
-Files libgcrypt-1.2.3.org/cipher/.ac.c.swp and libgcrypt-1.2.3/cipher/.ac.c.swp differ