[Pkg-mysql-commits] r967 - in branches/etch-5.0/debian: . patches
Christian Hammers
ch at alioth.debian.org
Tue Nov 6 20:51:21 UTC 2007
Author: ch
Date: 2007-11-06 20:51:20 +0000 (Tue, 06 Nov 2007)
New Revision: 967
Removed:
branches/etch-5.0/debian/patches/70_cpuid_on_i486.dpatch
Modified:
branches/etch-5.0/debian/changelog
branches/etch-5.0/debian/patches/00list
Log:
This upload never took place. I remove this patch as it has
no chance of getting accepted alongside the upcoming security update.
Maybe later into etch-proposed-updates.
Modified: branches/etch-5.0/debian/changelog
===================================================================
--- branches/etch-5.0/debian/changelog 2007-11-06 01:41:07 UTC (rev 966)
+++ branches/etch-5.0/debian/changelog 2007-11-06 20:51:20 UTC (rev 967)
@@ -21,13 +21,6 @@
-- sean finney <seanius at debian.org> Mon, 28 May 2007 19:34:34 +0200
-mysql-dfsg-5.0 (5.0.32-7etch2) testing-proposed-updates; urgency=high
-
- * Fixed segfault on i486 systems without cpuid instruction (thanks to
- Lennart Sorensen). Closes: #410474
-
- -- Christian Hammers <ch at debian.org> Thu, 5 Apr 2007 22:00:12 +0200
-
mysql-dfsg-5.0 (5.0.32-7etch1) testing-proposed-updates; urgency=high
* SECURITY:
Modified: branches/etch-5.0/debian/patches/00list
===================================================================
--- branches/etch-5.0/debian/patches/00list 2007-11-06 01:41:07 UTC (rev 966)
+++ branches/etch-5.0/debian/patches/00list 2007-11-06 20:51:20 UTC (rev 967)
@@ -14,7 +14,6 @@
44_scripts__mysql_config__libs.dpatch
45_warn-CLI-passwords.dpatch
46_CVE-2007-1420_subselect_dos.dpatch
-70_cpuid_on_i486.dpatch
86_PATH_MAX.dpatch
88_mctype_attrib.dpatch
89_ndb__staticlib.dpatch
Deleted: branches/etch-5.0/debian/patches/70_cpuid_on_i486.dpatch
===================================================================
--- branches/etch-5.0/debian/patches/70_cpuid_on_i486.dpatch 2007-11-06 01:41:07 UTC (rev 966)
+++ branches/etch-5.0/debian/patches/70_cpuid_on_i486.dpatch 2007-11-06 20:51:20 UTC (rev 967)
@@ -1,34 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 99-unnamed.dpatch by <ch at debian.org>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Fixes segfault on i486 cpus and clones that do not support the cpuid
-## DP: instruction. The original upstream solution did not work in
-## DP: multi-threaded applications. Closes: #410474
-
- at DPATCH@
-
---- old/extra/yassl/taocrypt/src/misc.cpp 2007-02-20 12:49:38.000000000 -0500
-+++ new/extra/yassl/taocrypt/src/misc.cpp 2007-04-05 12:29:34.000000000 -0400
-@@ -167,10 +167,10 @@
- #ifdef TAOCRYPT_X86ASM_AVAILABLE
-
- #ifndef _MSC_VER
-- static jmp_buf s_env;
-+ static sigjmp_buf s_env;
- static void SigIllHandler(int)
- {
-- longjmp(s_env, 1);
-+ siglongjmp(s_env, 1);
- }
- #endif
-
-@@ -199,7 +199,7 @@
- return false;
-
- bool result = true;
-- if (setjmp(s_env))
-+ if (sigsetjmp(s_env,1))
- result = false;
- else
- __asm__ __volatile
More information about the Pkg-mysql-commits
mailing list