summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2018-03-31 22:54:18 +0900
committerAkinori Hattori <hattya@gentoo.org>2018-03-31 22:54:18 +0900
commit3567cc0d71f9b867c7410eb8c368f28aebb90bf4 (patch)
tree32bf6ecc941372e5f222332209b6c84a18fb0365 /www-client/w3mmee/files/w3mmee-glibc-2.14.patch
parentx11-terms/kterm: drop unused x11-libs/libXp dependency (diff)
downloadgentoo-3567cc0d71f9b867c7410eb8c368f28aebb90bf4.tar.gz
gentoo-3567cc0d71f9b867c7410eb8c368f28aebb90bf4.tar.bz2
gentoo-3567cc0d71f9b867c7410eb8c368f28aebb90bf4.zip
www-client/w3mmee: update patches
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'www-client/w3mmee/files/w3mmee-glibc-2.14.patch')
-rw-r--r--www-client/w3mmee/files/w3mmee-glibc-2.14.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/www-client/w3mmee/files/w3mmee-glibc-2.14.patch b/www-client/w3mmee/files/w3mmee-glibc-2.14.patch
new file mode 100644
index 000000000000..7a2b0d9cb39e
--- /dev/null
+++ b/www-client/w3mmee/files/w3mmee-glibc-2.14.patch
@@ -0,0 +1,31 @@
+--- a/istream.c
++++ b/istream.c
+@@ -132,7 +132,7 @@ newFileStream(FILE *f, void (*closep)())
+ stream = New(struct input_stream);
+ init_base_stream(stream, STREAM_BUF_SIZE);
+ stream->type = IST_FILE;
+- stream->handle.file = New(struct file_handle);
++ stream->handle.file = New(struct afile_handle);
+ stream->handle.file->f = f;
+
+ if (closep)
+--- a/istream.h
++++ b/istream.h
+@@ -20,7 +20,7 @@ struct stream_buffer {
+
+ typedef struct stream_buffer *StreamBuffer;
+
+-struct file_handle {
++struct afile_handle {
+ FILE *f;
+ void (*close)(FILE *);
+ };
+@@ -121,7 +121,7 @@ struct tee_handle {
+ union input_handle {
+ void *gen;
+ int fd;
+- struct file_handle *file;
++ struct afile_handle *file;
+ struct delimited_handle *delimited;
+ Str str;
+ #ifdef USE_SSL