diff options
Diffstat (limited to 'x11-terms/rxvt-unicode/files/rxvt-unicode-9.06-glibc-2.10.patch')
-rw-r--r-- | x11-terms/rxvt-unicode/files/rxvt-unicode-9.06-glibc-2.10.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-terms/rxvt-unicode/files/rxvt-unicode-9.06-glibc-2.10.patch b/x11-terms/rxvt-unicode/files/rxvt-unicode-9.06-glibc-2.10.patch new file mode 100644 index 000000000000..c4c25dbb30c6 --- /dev/null +++ b/x11-terms/rxvt-unicode/files/rxvt-unicode-9.06-glibc-2.10.patch @@ -0,0 +1,42 @@ +--- src/background.C.orig 2009-04-25 01:12:46.000000000 +0200 ++++ src/background.C 2009-04-25 01:19:21.000000000 +0200 +@@ -261,7 +261,7 @@ + unsigned int w = 0, h = 0; + unsigned int n; + unsigned long new_flags = (flags & (~geometryFlags)); +- char *p; ++ const char *p; + # define MAXLEN_GEOM 256 /* could be longer than regular geometry string */ + + if (geom == NULL) +@@ -677,7 +677,7 @@ + if (!target->asimman) + target->asimman = create_generic_imageman (target->rs[Rs_path]); + +- if (char *f = strchr (file, ';')) ++ if (char *f = (char *) strchr (file, ';')) + { + size_t len = f - file; + f = (char *)malloc (len + 1); +--- src/command.C.orig 2009-04-25 01:20:29.000000000 +0200 ++++ src/command.C 2009-04-25 01:21:20.000000000 +0200 +@@ -3336,7 +3336,7 @@ + } + else + { +- char *eq = strchr (str, '='); // constness lost, but verified to be ok ++ char *eq = (char *) strchr (str, '='); // constness lost, but verified to be ok + + if (eq) + { +--- src/misc.C.orig 2009-04-25 01:41:05.000000000 +0200 ++++ src/misc.C 2009-04-25 01:41:37.000000000 +0200 +@@ -170,7 +170,7 @@ + char * + rxvt_basename (const char *str) NOTHROW + { +- char *base = strrchr (str, '/'); ++ char *base = (char *) strrchr (str, '/'); + + return (char *) (base ? base + 1 : str); + } |