90aaeb23dc
(contains already fixed issues, #11662 patch-b{a,b}, #8674,#7673 patch-bc) What's New in Python 2.5.6? =========================== *Release date: 26-May-2011* What's New in Python 2.5.6c1? ============================= *Release date: 17-Apr-2011* Library ------- - Issue #11442: Add a charset parameter to the Content-type in SimpleHTTPServer to avoid XSS attacks. - Issue #11662: Make urllib and urllib2 ignore redirections if the scheme is not HTTP, HTTPS or FTP (CVE-2011-1521). - Issue #8674: Fixed a number of incorrect or undefined-behaviour-inducing overflow checks in the audioop module (CVE-2010-1634). - Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module, ensure that the input string length is a multiple of the frame size.
21 lines
1.2 KiB
Text
21 lines
1.2 KiB
Text
$NetBSD: patch-ad,v 1.4 2011/06/04 05:08:20 obache Exp $
|
|
|
|
--- Modules/_ctypes/libffi/configure.orig 2007-09-04 23:47:16.000000000 +0000
|
|
+++ Modules/_ctypes/libffi/configure
|
|
@@ -3486,6 +3486,7 @@ i*86-*-beos*) TARGET=X86; TARGETDIR=x86;
|
|
i*86-*-freebsd* | i*86-*-kfreebsd*-gnu) TARGET=X86; TARGETDIR=x86;;
|
|
i*86-*-netbsdelf* | i*86-*-knetbsd*-gnu) TARGET=X86; TARGETDIR=x86;;
|
|
i*86-*-openbsd*) TARGET=X86; TARGETDIR=x86;;
|
|
+i*86-*-dragonfly*) TARGET=X86; TARGETDIR=x86;;
|
|
i*86-*-rtems*) TARGET=X86; TARGETDIR=x86;;
|
|
i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;;
|
|
i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
|
|
@@ -3516,7 +3517,7 @@ arm*-*-rtems*) TARGET=ARM; TARGETDIR=arm
|
|
cris-*-*) TARGET=LIBFFI_CRIS; TARGETDIR=cris;;
|
|
s390-*-linux-*) TARGET=S390; TARGETDIR=s390;;
|
|
s390x-*-linux-*) TARGET=S390; TARGETDIR=s390;;
|
|
-x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) TARGET=X86_64; TARGETDIR=x86;;
|
|
+x86_64-*-netbsd* | x86_64-*-linux* | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu | x86_64-*-dragonfly*) TARGET=X86_64; TARGETDIR=x86;;
|
|
sh-*-linux* | sh[34]*-*-linux*) TARGET=SH; TARGETDIR=sh;;
|
|
sh-*-rtems*) TARGET=SH; TARGETDIR=sh;;
|
|
sh64-*-linux* | sh5*-*-linux*) TARGET=SH64; TARGETDIR=sh64;;
|