aboutsummaryrefslogtreecommitdiffstats
path: root/testing/open-vm-tools/codeset-uclibc.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2011-02-14 09:40:24 +0000
committerCarlo Landmeter <clandmeter@gmail.com>2011-02-14 09:41:38 +0000
commit57b2d07c06af589eeeff448b4e20b08c9112c7b7 (patch)
treed2d98578abc886b15ef632279c0cbee13342118b /testing/open-vm-tools/codeset-uclibc.patch
parent9ab6240126746715f08ffbeb7472cf9f00673fdf (diff)
downloadaports-57b2d07c06af589eeeff448b4e20b08c9112c7b7.tar.bz2
aports-57b2d07c06af589eeeff448b4e20b08c9112c7b7.tar.xz
main/open-vm-tools: move from testing to main including grsec modules
Diffstat (limited to 'testing/open-vm-tools/codeset-uclibc.patch')
-rw-r--r--testing/open-vm-tools/codeset-uclibc.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/open-vm-tools/codeset-uclibc.patch b/testing/open-vm-tools/codeset-uclibc.patch
deleted file mode 100644
index b26df16611..0000000000
--- a/testing/open-vm-tools/codeset-uclibc.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./lib/misc/codesetOld.c.orig
-+++ ./lib/misc/codesetOld.c
-@@ -723,7 +723,7 @@
- {
- char *codeset;
-
--#if defined(__linux__)
-+#if defined(__linux__) && !defined(__UCLIBC__)
-
- locale_t new = newlocale(LC_CTYPE_MASK, "", NULL);
- if (!new) {
-@@ -739,7 +739,7 @@
- codeset = Util_SafeStrdup(nl_langinfo_l(CODESET, new));
- freelocale(new);
-
--#elif defined(sun)
-+#elif defined(sun) || defined(__UCLIBC__)
-
- char *locale = setlocale(LC_CTYPE, NULL);
- if (!setlocale(LC_CTYPE, "")) {