summaryrefslogtreecommitdiff
path: root/dev-lang/tcl/files/tcl-configure-LANG.patch
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2016-08-08 09:49:52 +0200
committerLars Wendler <polynomial-c@gentoo.org>2016-08-08 09:50:17 +0200
commit84a4dd39c464fd840832e9d41a529bb0bab13683 (patch)
tree098df64c00930d575c0931cabd5887304b5293a6 /dev-lang/tcl/files/tcl-configure-LANG.patch
parent69a481c16e3741a33e679609fd6245e49a32e6e9 (diff)
downloadgentoo-84a4dd39c464fd840832e9d41a529bb0bab13683.tar.gz
gentoo-84a4dd39c464fd840832e9d41a529bb0bab13683.tar.bz2
gentoo-84a4dd39c464fd840832e9d41a529bb0bab13683.zip
dev-lang/tcl: Removed old.
Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-lang/tcl/files/tcl-configure-LANG.patch')
-rw-r--r--dev-lang/tcl/files/tcl-configure-LANG.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-lang/tcl/files/tcl-configure-LANG.patch b/dev-lang/tcl/files/tcl-configure-LANG.patch
deleted file mode 100644
index 3ef76ef911c0..000000000000
--- a/dev-lang/tcl/files/tcl-configure-LANG.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.