summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2012-06-04 17:13:23 +0000
committerChristian Ruppert <idl0r@gentoo.org>2012-06-04 17:13:23 +0000
commit479cec1f3c64dbd7e1f43c6b36a02ee2f149fda1 (patch)
treeb4b895d64d6396ecad03164533a5caf501a5ab94 /net-dns
parentVersion bumps, CVE-2012-1667. Remove old versions (diff)
downloadgentoo-2-479cec1f3c64dbd7e1f43c6b36a02ee2f149fda1.tar.gz
gentoo-2-479cec1f3c64dbd7e1f43c6b36a02ee2f149fda1.tar.bz2
gentoo-2-479cec1f3c64dbd7e1f43c6b36a02ee2f149fda1.zip
Remove unused patch
(Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/bind-tools/ChangeLog6
-rw-r--r--net-dns/bind-tools/files/bind-tools-configure.patch41
2 files changed, 5 insertions, 42 deletions
diff --git a/net-dns/bind-tools/ChangeLog b/net-dns/bind-tools/ChangeLog
index 803a7830e92c..310793875517 100644
--- a/net-dns/bind-tools/ChangeLog
+++ b/net-dns/bind-tools/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dns/bind-tools
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.212 2012/06/04 17:12:03 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.213 2012/06/04 17:13:23 idl0r Exp $
+
+ 04 Jun 2012; Christian Ruppert <idl0r@gentoo.org>
+ -files/bind-tools-configure.patch:
+ Remove unused patch
*bind-tools-9.9.1_p1 (04 Jun 2012)
*bind-tools-9.8.3_p1 (04 Jun 2012)
diff --git a/net-dns/bind-tools/files/bind-tools-configure.patch b/net-dns/bind-tools/files/bind-tools-configure.patch
deleted file mode 100644
index 3ef76ef911c0..000000000000
--- a/net-dns/bind-tools/files/bind-tools-configure.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in
-option parsing, it may break.
-
-http://bugs.gentoo.org/103483
-
---- configure
-+++ configure
-@@ -54,6 +54,16 @@
- infodir='${prefix}/info'
- mandir='${prefix}/man'
-
-+# NLS nuisances.
-+# Only set these to C if already set. These must not be set unconditionally
-+# because not all systems understand e.g. LANG=C (notably SCO).
-+# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
-+# Non-C LC_CTYPE values break the ctype check.
-+if test "${LANG+set}" = set; then LANG=C; export LANG; fi
-+if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
-+if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
-+if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
-+
- # Initialize some other variables.
- subdirs=
- MFLAGS= MAKEFLAGS=
-@@ -452,16 +463,6 @@
- esac
- done
-
--# NLS nuisances.
--# Only set these to C if already set. These must not be set unconditionally
--# because not all systems understand e.g. LANG=C (notably SCO).
--# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
--# Non-C LC_CTYPE values break the ctype check.
--if test "${LANG+set}" = set; then LANG=C; export LANG; fi
--if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
--if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
--if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
--
- # confdefs.h avoids OS command line length limits that DEFS can exceed.
- rm -rf conftest* confdefs.h
- # AIX cpp loses on an empty file, so make sure it contains at least a newline.