summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Callen <abcd@gentoo.org>2009-11-16 21:55:15 -0500
committerJonathan Callen <abcd@gentoo.org>2009-11-16 21:55:15 -0500
commitc2235cbc61f522394cf08dd64e305384d0fab044 (patch)
treed92d5f53145cdf83d7d022449e92f221507ca8b8
parent59bd7ee1c983d631b22df0e4aaccf92742ca2641 (diff)
downloadkde-c2235cbc61f522394cf08dd64e305384d0fab044.tar.gz
kde-c2235cbc61f522394cf08dd64e305384d0fab044.tar.bz2
kde-c2235cbc61f522394cf08dd64e305384d0fab044.zip
[kde-base/kdelibs] Drop unused patch
-rw-r--r--kde-base/kdelibs/Manifest1
-rw-r--r--kde-base/kdelibs/files/kdelibs-4.3.74-glibc2.11.patch163
2 files changed, 0 insertions, 164 deletions
diff --git a/kde-base/kdelibs/Manifest b/kde-base/kdelibs/Manifest
index cd2b2433d19..2e94ffe40e4 100644
--- a/kde-base/kdelibs/Manifest
+++ b/kde-base/kdelibs/Manifest
@@ -1,7 +1,6 @@
AUX dist/01_gentoo_set_xdg_menu_prefix.patch 606 RMD160 37290ce06adf1cf43b0006c02804d7fe762ed609 SHA1 8e86e06a70438c12085a595fd66e2354141fb056 SHA256 9c64b093340d7d25ce6c28d298cd62f3f4da141b762c663df9cd9b5b7722f7d3
AUX dist/02_gentoo_append_xdg_config_dirs.patch 919 RMD160 1406b23f317710bf039aa6020f55781b6f2c2f6a SHA1 cc589b31277e5bb6322df0240389fa8423d8d942 SHA256 e0be8da02ea48eb6ad4dcb0d723bf2a619cc7ed57dd41f456018116fb05162f6
AUX dist/23_solid_no_double_build.patch 838 RMD160 24bea0cd76edd2709edcdc654b74ebf1566e7ef7 SHA1 534aef07069b9b89ff3ff80619eb35f0fd588b61 SHA256 1ef6f6e7fe4b31b79126fd0cefaadab03f0e6a4bd9194fc8f4bee4750620c4ad
-AUX kdelibs-4.3.74-glibc2.11.patch 2840 RMD160 65259da16778fa6e186f1ccdad395260a96913f8 SHA1 f776106822577fe75327b08cbeda34c8ae45cea6 SHA256 e41c182f629c0eed75401ea5f03f7c14d7f48ee71f493196b611870faf35c6a0
DIST kdelibs-4.3.75.tar.xz 10819092 RMD160 8a46e1607662522ce36fa7ddfbb3dc34c31d46ca SHA1 a800d007a15b03c4ee1eff49865906f36fb58fb8 SHA256 684a3f94cf9bc92d70925ed6d9013e80e1d7c55429d7eea1cbaff9ee04f6e764
EBUILD kdelibs-4.3.75.ebuild 6294 RMD160 318b662947ebb5baebc59b07b386da5112100747 SHA1 3fd7366e647e48fada8668b5e680f64e47e64ce4 SHA256 ebe5595ef6a7005d54002e13ac0c55bcfa952b65c855b2a019ee11963c180dfb
EBUILD kdelibs-4.3.9999.ebuild 6155 RMD160 286c3cec8a85f55b46ed6bf41a85093d9a0fc066 SHA1 d788c0ddfbb7628e25a6fb910b7dcf72c8a5376d SHA256 a226bae54e5ec3f0e4010efc8fcb534ef8b2374c8e2ee09d0a64590bb0e7f714
diff --git a/kde-base/kdelibs/files/kdelibs-4.3.74-glibc2.11.patch b/kde-base/kdelibs/files/kdelibs-4.3.74-glibc2.11.patch
deleted file mode 100644
index 280670bc947..00000000000
--- a/kde-base/kdelibs/files/kdelibs-4.3.74-glibc2.11.patch
+++ /dev/null
@@ -1,163 +0,0 @@
---- trunk/KDE/kdelibs/kdecore/fakes.c 2009/10/31 22:24:52 1043164
-+++ trunk/KDE/kdelibs/kdecore/fakes.c 2009/11/06 19:59:40 1045794
-@@ -31,7 +31,7 @@
-
-
- #define KDE_open open
--#define KDE_mkdir mkdir
-+#define KDE_mkdir mkdir
-
-
- #ifndef HAVE_SETENV
-@@ -39,10 +39,15 @@
- #ifdef HAVE_ALLOCA_H
- #include <alloca.h>
- #endif
--
-+#ifdef HAVE_STRING_H
- #include <string.h>
-+#endif
-+#ifdef HAVE_STDLIB_H
- #include <stdlib.h>
-+#endif
-+#ifdef HAVE_UNISTD_H
- #include <unistd.h>
-+#endif
-
- KDECORE_EXPORT int setenv(const char *name, const char *value, int overwrite) {
- int i;
-@@ -67,11 +72,18 @@
- #ifdef HAVE_ALLOCA_H
- #include <alloca.h>
- #endif
--
-+#ifdef HAVE_STRING_H
- #include <string.h>
-+#endif
-+#ifdef HAVE_STDLIB_H
- #include <stdlib.h>
-+#endif
-+#ifdef HAVE_ERRNO_H
- #include <errno.h>
-+#endif
-+#ifdef HAVE_UNISTD_H
- #include <unistd.h>
-+#endif
-
- #ifndef environ
- extern char ** environ;
-@@ -154,24 +166,32 @@
- {
- srand48(seed);
- }
--#endif
-+#endif /* !HAVE_RANDOM */
-
- #ifndef HAVE_SETEUID
- int seteuid(uid_t euid)
- {
- return setreuid(-1, euid); /* Well, if you have neither you are in trouble :) */
- }
--#endif
-+#endif /* !HAVE_SETEUID */
-
- #ifndef HAVE_MKSTEMPS
-+#ifdef HAVE_SYS_TYPES_H
- #include <sys/types.h>
-+#endif
- #ifdef HAVE_SYS_STAT_H
- #include <sys/stat.h>
- #endif
- #include <fcntl.h>
-+#ifdef HAVE_STRING_H
- #include <string.h>
-+#endif
-+#ifdef HAVE_STRINGS_H
- #include <strings.h>
-+#endif
-+#ifdef HAVE_STDLIB_H
- #include <stdlib.h>
-+#endif
-
- /* this is based on code taken from the GNU libc, distributed under the LGPL license */
-
-@@ -244,12 +264,14 @@
- {
- return mkstemps( _template, 0 );
- }
--#endif
-+#endif /* !HAVE_MKSTEMP */
-
- #ifndef HAVE_MKDTEMP
-
- #ifndef HAVE_MKSTEMPS
-+#ifdef HAVE_SYS_TYPES_H
- #include <sys/types.h>
-+#endif
- #ifdef HAVE_SYS_STAT_H
- #include <sys/stat.h>
- #endif
-@@ -306,13 +328,18 @@
- value += 7777;
-
- if (!KDE_mkdir(_template,0700))
-- return _template;
-+ return _template;
- }
- return 0;
- }
- #endif /* !HAVE_MKDTEMP */
-
- #ifndef HAVE_STRLCPY
-+
-+#ifdef HAVE_STRING_H
-+#include <string.h>
-+#endif
-+
- KDECORE_EXPORT unsigned long strlcpy(char* d, const char* s, unsigned long bufsize)
- {
- unsigned long len, ret = strlen(s);
-@@ -325,12 +352,17 @@
- }
- } else
- memcpy(d, s, ret + 1);
--
-+
- return ret;
- }
--#endif
-+#endif /* !HAVE_STRLCPY */
-
- #ifndef HAVE_STRLCAT
-+
-+#ifdef HAVE_STRING_H
-+#include <string.h>
-+#endif
-+
- KDECORE_EXPORT unsigned long strlcat(char* d, const char* s, unsigned long bufsize)
- {
- char *cp;
-@@ -350,7 +382,7 @@
-
- return ret;
- }
--#endif
-+#endif /* !HAVE_STRLCAT */
-
- #ifndef HAVE_STRCASESTR
- /*
-@@ -450,7 +482,7 @@
- ret0:
- return 0;
- }
--#endif
-+#endif /* !HAVE_STRCASESTR */
-
- #ifndef HAVE_TRUNC
-
-@@ -467,4 +499,4 @@
- {
- return x < 0 ? -floor(-x) : floor(x);
- }
--#endif
-+#endif /* !HAVE_TRUNC */