From: Simon Marchi <simon.marchi@polymtl.ca>
To: Andreas Schwab <schwab@linux-m68k.org>
Cc: gdb-patches@sourceware.org, binutils@sourceware.org,
Nick Clifton <nickc@redhat.com>,
Alan Modra <amodra@gmail.com>,
Joseph Myers <joseph@codesourcery.com>,
Simon Marchi <simon.marchi@ericsson.com>
Subject: Re: [PATCH 3/4] zlib: Sync with GCC
Date: Sat, 16 Jun 2018 11:34:00 -0000 [thread overview]
Message-ID: <31f1ea31-17e7-0734-cbff-4b369b5201b5@polymtl.ca> (raw)
In-Reply-To: <m27emzgph5.fsf@linux-m68k.org>
On 2018-06-16 03:28 AM, Andreas Schwab wrote:
> On Jun 15 2018, Simon Marchi <simon.marchi@polymtl.ca> wrote:
>
>> diff --git a/zlib/configure.ac b/zlib/configure.ac
>> index 57d6fa56b69b..fb8d943905e2 100644
>> --- a/zlib/configure.ac
>> +++ b/zlib/configure.ac
>> @@ -4,9 +4,7 @@ AC_PREREQ(2.64)
>> AC_INIT
>> AC_CONFIG_SRCDIR([zlib.h])
>>
>> -if test -n "${with_target_subdir}"; then
>> - AM_ENABLE_MULTILIB(, ..)
>> -fi
>> +AM_ENABLE_MULTILIB(, ..)
>>
>> AC_CANONICAL_SYSTEM
>>
>
> Looks like commit 93df7317ee has never been copied to gcc.
Ah I see, so my patch is partly going in the wrong direction then.
Can somebody from gcc copy that change over there?
Here's the patch without that change.
From 4a80cd317a1453f303395787214cae5cf1a72474 Mon Sep 17 00:00:00 2001
From: Simon Marchi <simon.marchi@polymtl.ca>
Date: Sat, 16 Jun 2018 07:31:40 -0400
Subject: [PATCH] zlib: Sync with GCC
zlib/ChangeLog.bin-gdb:
Sync with FSF GCC sources.
---
zlib/ChangeLog.gcj | 7 +++++++
zlib/gzguts.h | 2 +-
zlib/win32/zlib.def | 1 -
zlib/zlib.h | 2 +-
4 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/zlib/ChangeLog.gcj b/zlib/ChangeLog.gcj
index 47928119dfd8..09bc9c26104c 100644
--- a/zlib/ChangeLog.gcj
+++ b/zlib/ChangeLog.gcj
@@ -1,3 +1,10 @@
+2017-03-15 Yaakov Selkowitz <yselkowitz@redhat.com>
+
+ PR bootstrap/79771
+ * gzguts.h (WIDECHAR): Do not define for __CYGWIN__.
+ * zlib.h (gzopen_w): Do not declare for __CYGWIN__.
+ * win32/zlib.def: Remove gzopen_w.
+
2017-01-22 Matthias Klose <doko@ubuntu.com>
* Import zlib 1.2.11.
diff --git a/zlib/gzguts.h b/zlib/gzguts.h
index 990a4d251493..6378d468a258 100644
--- a/zlib/gzguts.h
+++ b/zlib/gzguts.h
@@ -39,7 +39,7 @@
# include <io.h>
#endif
-#if defined(_WIN32) || defined(__CYGWIN__)
+#if defined(_WIN32)
# define WIDECHAR
#endif
diff --git a/zlib/win32/zlib.def b/zlib/win32/zlib.def
index 784b13869138..0cb3f5d48b9f 100644
--- a/zlib/win32/zlib.def
+++ b/zlib/win32/zlib.def
@@ -91,4 +91,3 @@ EXPORTS
inflateCodesUsed
inflateResetKeep
deflateResetKeep
- gzopen_w
diff --git a/zlib/zlib.h b/zlib/zlib.h
index f09cdaf1e054..49dfcece0e1f 100644
--- a/zlib/zlib.h
+++ b/zlib/zlib.h
@@ -1893,7 +1893,7 @@ ZEXTERN int ZEXPORT inflateValidate OF((z_streamp, int));
ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF ((z_streamp));
ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp));
ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp));
-#if (defined(_WIN32) || defined(__CYGWIN__)) && !defined(Z_SOLO)
+#if defined(_WIN32) && !defined(Z_SOLO)
ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
const char *mode));
#endif
--
2.17.1
next prev parent reply other threads:[~2018-06-16 11:34 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-16 3:08 [PATCH 0/4] Sync a few directories " Simon Marchi
2018-06-16 3:07 ` [PATCH 2/4] libiberty: Sync " Simon Marchi
2018-06-18 9:25 ` Nick Clifton
2018-06-16 3:08 ` [PATCH 4/4] libdecnumber: " Simon Marchi
2018-06-18 9:38 ` Nick Clifton
2018-06-16 3:08 ` [PATCH 3/4] zlib: " Simon Marchi
2018-06-16 7:28 ` Andreas Schwab
2018-06-16 11:34 ` Simon Marchi [this message]
2018-06-18 9:37 ` Nick Clifton
2018-06-16 3:27 ` [PATCH 1/4] config: " Simon Marchi
2018-06-18 9:23 ` Nick Clifton
2018-06-17 0:50 ` [PATCH 5/4] configure.ac: " Simon Marchi
2018-06-18 9:39 ` Nick Clifton
2018-06-18 13:40 ` [PATCH 0/4] Sync a few directories " Simon Marchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=31f1ea31-17e7-0734-cbff-4b369b5201b5@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=amodra@gmail.com \
--cc=binutils@sourceware.org \
--cc=gdb-patches@sourceware.org \
--cc=joseph@codesourcery.com \
--cc=nickc@redhat.com \
--cc=schwab@linux-m68k.org \
--cc=simon.marchi@ericsson.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox