Projects
openEuler:Mainline
gzip
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 2
View file
_service:tar_scm:gzip.spec
Changed
@@ -1,24 +1,15 @@ Name: gzip -Version: 1.11 -Release: 4 +Version: 1.12 +Release: 1 Summary: A data compression utility License: GPLv3 URL: https://www.gnu.org/software/gzip Source0: https://ftp.gnu.org/gnu/gzip/gzip-%{version}.tar.xz -Patch6000: gzip-l-now-outputs-accurate-size.patch -Patch6001: doc-document-gzip-l-change.patch -Patch6002: zdiff-fix-arg-handling-bug.patch -Patch6003: zdiff-fix-another-arg-handling-bug.patch - Patch9000: fix-verbose-disable.patch Patch9001: performance-neoncrc32-and-prfm.patch -Patch6004: backport-0001-CVE-2022-1271.patch -Patch6005: backport-0002-CVE-2022-1271.patch -Patch6006: backport-0003-CVE-2022-1271.patch - BuildRequires: gcc texinfo less autoconf automake Requires: coreutils Conflicts: filesystem < 3 @@ -67,6 +58,9 @@ %{_mandir}/man1/* %changelog +* Sat Jun 11 2022 YukariChiba <i@0x7f.cc> - 1.12-1 +- Upgrade version. + * Tue May 24 2022 loong_C <loong_c@yeah.net> - 1.11-4 - fix changelog date
View file
_service:tar_scm:backport-0001-CVE-2022-1271.patch
Deleted
@@ -1,43 +0,0 @@ -From dc9740df61e575e8c3148b7bd3c147a81ea00c7c Mon Sep 17 00:00:00 2001 -From: Lasse Collin <lasse.collin@tukaani.org> -Date: Mon, 4 Apr 2022 23:52:49 -0700 -Subject: zgrep: avoid exploit via multi-newline file names - -* zgrep.in: The issue with the old code is that with multiple -newlines, the N-command will read the second line of input, -then the s-commands will be skipped because it's not the end -of the file yet, then a new sed cycle starts and the pattern -space is printed and emptied. So only the last line or two get -escaped. This patch makes sed read all lines into the pattern -space and then do the escaping. - -This vulnerability was discovered by: -cleemy desu wayo working with Trend Micro Zero Day Initiative ---- - zgrep.in | 10 +++++++--- - 1 file changed, 7 insertions(+), 3 deletions(-) - -diff --git a/zgrep.in b/zgrep.in -index 345dae3..bdf7da2 100644 ---- a/zgrep.in -+++ b/zgrep.in -@@ -222,9 +222,13 @@ do - '* | *'&'* | *'\'* | *'|'*) - i=$(printf '%s\n' "$i" | - sed ' -- $!N -- $s/&\|/\\&/g -- $s/\n/\\n/g -+ :start -+ $!{ -+ N -+ b start -+ } -+ s/&\|/\\&/g -+ s/\n/\\n/g - ');; - esac - sed_script="s|^|$i:|" --- -1.8.3.1 -
View file
_service:tar_scm:backport-0002-CVE-2022-1271.patch
Deleted
@@ -1,77 +0,0 @@ -From d74a30d45c6834c8e9f87115197370fe86656d81 Mon Sep 17 00:00:00 2001 -From: Jim Meyering <meyering@fb.com> -Date: Mon, 4 Apr 2022 23:52:49 -0700 -Subject: zgrep: add NEWS and tests for this exploitable bug - -* tests/zgrep-abuse: New file, based on PoC by cleemy desu wayo. -* tests/Makefile.am (TESTS): Add it. -* NEWS: Mention the exploit. -The bug appears to have been present since the beginning. ---- - tests/Makefile.am | 1 + - tests/zgrep-abuse | 41 +++++++++++++++++++++++++++++++++++++++++ - 2 files changed, 42 insertions(+) - create mode 100755 tests/zgrep-abuse - -diff --git a/tests/Makefile.am b/tests/Makefile.am -index 18e7c8a..28a1828 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -36,6 +36,7 @@ TESTS = \ - z-suffix \ - zdiff \ - zgrep-f \ -+ zgrep-abuse \ - zgrep-context \ - zgrep-signal \ - znew-k -diff --git a/tests/zgrep-abuse b/tests/zgrep-abuse -new file mode 100755 -index 0000000..3e8a8f9 ---- /dev/null -+++ b/tests/zgrep-abuse -@@ -0,0 +1,41 @@ -+#!/bin/sh -+# Show how zgrep applied to a crafted file name may overwrite -+# a selected file with chosen content. Fixed in gzip-1.12. -+ -+# Copyright (C) 2022 Free Software Foundation, Inc. -+ -+# This program is free software: you can redistribute it and/or modify -+# it under the terms of the GNU General Public License as published by -+# the Free Software Foundation, either version 3 of the License, or -+# (at your option) any later version. -+ -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+ -+# You should have received a copy of the GNU General Public License -+# along with this program. If not, see <https://www.gnu.org/licenses/>. -+# limit so don't run it by default. -+ -+. "${srcdir=.}/init.sh"; path_prepend_ .. -+ -+: > z || framework_failure_ -+echo test |gzip > 'z| -+p -+1s|.*|chosen-content| -+1w hacked -+etouch .\x2fhacked2 -+d -+# -+#' || framework_failure_ -+ -+fail=0 -+ -+zgrep test z* > /dev/null -+ -+# Before the fix, each of these would be created. -+test -f hacked && fail=1 -+test -f hacked2 && fail=1 -+ -+Exit $fail --- -1.8.3.1 -
View file
_service:tar_scm:backport-0003-CVE-2022-1271.patch
Deleted
@@ -1,46 +0,0 @@ -From c99f320d5c0fd98fe88d9cea5407eb7ad9d50e8a Mon Sep 17 00:00:00 2001 -From: Paul Eggert <eggert@cs.ucla.edu> -Date: Mon, 4 Apr 2022 23:52:49 -0700 -Subject: zgrep: port to POSIX sed -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -* zgrep.in (res): When escaping the file name do not rely on GNU -sed’s extension to POSIX with respect to s/.../\n/. Instead, use -features that should also work with AIX and/or Solaris sed. This is -simpler anyway, and would have prevented the recently-fixed bug. ---- - zgrep.in | 15 ++++----------- - 1 file changed, 4 insertions(+), 11 deletions(-) - -diff --git a/zgrep.in b/zgrep.in -index bdf7da2..6a16dd1 100644 ---- a/zgrep.in -+++ b/zgrep.in -@@ -220,18 +220,11 @@ do - case $i in - (*' - '* | *'&'* | *'\'* | *'|'*) -- i=$(printf '%s\n' "$i" | -- sed ' -- :start -- $!{ -- N -- b start -- } -- s/&\|/\\&/g -- s/\n/\\n/g -- ');; -+ icolon=$(printf '%s\n' "$i:" | -+ sed -e 's/&\|/\\&/g' -e '$!s/$/\\/');; -+ (*) icolon="$i:";; - esac -- sed_script="s|^|$i:|" -+ sed_script="s|^|$icolon|" - - # Fail if grep or sed fails. - r=$( --- -1.8.3.1 -
View file
_service:tar_scm:doc-document-gzip-l-change.patch
Deleted
@@ -1,73 +0,0 @@ -From 5ec23f714e98407a6de25f6f40f125cc87b12908 Mon Sep 17 00:00:00 2001 -From: Paul Eggert <eggert@cs.ucla.edu> -Date: Wed, 15 Dec 2021 15:04:27 -0800 -Subject: PATCH doc: document gzip -l change - -* NEWS, doc/gzip.texi (Invoking gzip), gzip.1 (gunzip): -Document recent change. ---- - doc/gzip.texi | 18 ------------------ - gzip.1 | 11 ----------- - 2 files changed, 29 deletions(-) - -diff --git a/doc/gzip.texi b/doc/gzip.texi -index abceb58..48b3485 100644 ---- a/doc/gzip.texi -+++ b/doc/gzip.texi -@@ -300,14 +300,6 @@ ratio: compression ratio (0.0% if unknown) - uncompressed_name: name of the uncompressed file - @end example - --The uncompressed size is given as @minus{}1 for files not in @command{gzip} --format, such as compressed @samp{.Z} files. To get the uncompressed size for --such a file, you can use: -- --@example --zcat file.Z | wc -c --@end example -- - In combination with the @option{--verbose} option, the following fields are also - displayed: - -@@ -323,16 +315,6 @@ With @option{--verbose}, the size totals and compression ratio for all files - is also displayed, unless some sizes are unknown. With @option{--quiet}, - the title and totals lines are not displayed. - --The @command{gzip} format represents the input size modulo --@math{2^32}, so the uncompressed size and compression ratio are listed --incorrectly for uncompressed files 4 GiB and larger. To work around --this problem, you can use the following command to discover a large --uncompressed file's true size: -- --@example --zcat file.gz | wc -c --@end example -- - @item --license - @itemx -L - Display the @command{gzip} license then quit. -diff --git a/gzip.1 b/gzip.1 -index 0ae9765..65dea22 100644 ---- a/gzip.1 -+++ b/gzip.1 -@@ -492,17 +492,6 @@ detects that there is extra trailing garbage after the compressed data - and emits a warning by default. You can use the --quiet option to - suppress the warning. - .SH BUGS --The gzip format represents the input size modulo 2^32, so the ----list option reports incorrect uncompressed sizes and compression --ratios for uncompressed files 4 GB and larger. To work around this --problem, you can use the following command to discover a large --uncompressed file's true size: -- -- zcat file.gz | wc -c -- --The --list option reports sizes as -1 and crc as ffffffff if the --compressed file is on a non seekable media. -- - In some rare cases, the --best option gives worse compression than - the default compression level (-6). On some highly redundant files, - .B compress --- -2.27.0 -
View file
_service:tar_scm:fix-verbose-disable.patch
Changed
@@ -14,15 +14,15 @@ index 067f508..3633398 100644 --- a/zdiff.in +++ b/zdiff.in -@@ -57,7 +57,7 @@ for arg +@@ -57,7 +57,7 @@ do case $filesonly$needop$arg in --h*) printf '%s\n' "$usage" || exit 2; exit;; - --v*) printf '%s\n' "$version" || exit 2; exit;; + --version) printf '%s\n' "$version" || exit 2; exit;; --) filesonly=t;; - -*\'*) cmp="$cmp '"`printf '%sX\n' "$arg" | sed "$escape"`;; + -*\'*) cmp="$cmp '"`printf '%sX\n' "$arg" | LC_ALL=C sed "$escape"`;; -CDFISUWXx) needop="'$arg'";; --- +-- 2.27.0
View file
_service:tar_scm:gzip-l-now-outputs-accurate-size.patch
Deleted
@@ -1,415 +0,0 @@ -From cf26200380585019e927fe3cf5c0ecb7c8b3ef14 Mon Sep 17 00:00:00 2001 -From: Paul Eggert <eggert@cs.ucla.edu> -Date: Wed, 1 Dec 2021 15:38:02 -0800 -Subject: PATCH gzip: gzip -l now outputs accurate size -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -gzip -l now decompresses to see how long the uncompressed file was. -This fixes what is by far the most common bug report for gzip. -It has a significant performance cost, but it’s worth it nowadays. -* gzip.c (main): -l now sets 'test' too. All uses of -'test' changed. -(treat_stdin, treat_file): Call do_list after decompressing, -so that the length is known. -(do_list): Omit arg IFD, since it is no longer needed. -All callers changed. Get the CRC and uncompressed size -from input_crc and bytes_out instead of using lseek. -* tests/list-big: New test. -* unzip.c (unzip): Set unzip_crc before returning. -* util.c (write_buf): If 'test', output nothing. -Update bytes_out with output byte count, regardless of 'test'. -All callers changed. ---- - gzip.c | 66 ++++++++++++++++++----------------------------- - gzip.h | 1 + - tests/Makefile.am | 1 + - tests/list-big | 31 ++++++++++++++++++++++ - unlzh.c | 5 ++-- - unlzw.c | 17 ++++-------- - unzip.c | 3 +++ - util.c | 18 ++++++------- - 8 files changed, 76 insertions(+), 66 deletions(-) - create mode 100755 tests/list-big - -diff --git a/gzip.c b/gzip.c -index 735ee0a..ecb19da 100644 ---- a/gzip.c -+++ b/gzip.c -@@ -319,7 +319,7 @@ local void discard_input_bytes (size_t nbytes, unsigned int flags); - local int make_ofname (void); - local void shorten_name (char *name); - local int get_method (int in); --local void do_list (int ifd, int method); -+local void do_list (int method); - local int check_ofname (void); - local void copy_stat (struct stat *ifstat); - local void install_signal_handlers (void); -@@ -535,7 +535,7 @@ int main (int argc, char **argv) - case 'k': - keep = 1; break; - case 'l': -- list = decompress = to_stdout = 1; break; -+ list = decompress = test = to_stdout = 1; break; - case 'L': - license (); finish_out (); break; - case 'm': /* undocumented, may change later */ -@@ -655,7 +655,7 @@ int main (int argc, char **argv) - - /* And get to work */ - if (file_count != 0) { -- if (to_stdout && !test && !list && (!decompress || !ascii)) { -+ if (to_stdout && !test && (!decompress || !ascii)) { - SET_BINARY_MODE (STDOUT_FILENO); - } - while (optind < argc) { -@@ -673,7 +673,7 @@ int main (int argc, char **argv) - { - /* Output any totals, and check for output errors. */ - if (!quiet && 1 < file_count) -- do_list (-1, -1); -+ do_list (-1); - if (fflush (stdout) != 0) - write_error (); - } -@@ -759,7 +759,7 @@ local void treat_stdin() - if (decompress || !ascii) { - SET_BINARY_MODE (STDIN_FILENO); - } -- if (!test && !list && (!decompress || !ascii)) { -+ if (!test && (!decompress || !ascii)) { - SET_BINARY_MODE (STDOUT_FILENO); - } - strcpy(ifname, "stdin"); -@@ -786,10 +786,6 @@ local void treat_stdin() - do_exit(exit_code); /* error message already emitted */ - } - } -- if (list) { -- do_list(ifd, method); -- return; -- } - - /* Actually do the compression/decompression. Loop over zipped members. - */ -@@ -805,6 +801,12 @@ local void treat_stdin() - bytes_out = 0; /* required for length check */ - } - -+ if (list) -+ { -+ do_list (method); -+ return; -+ } -+ - if (verbose) { - if (test) { - fprintf(stderr, " OK\n"); -@@ -949,7 +951,7 @@ local void treat_file(iname) - /* Generate output file name. For -r and (-t or -l), skip files - * without a valid gzip suffix (check done in make_ofname). - */ -- if (to_stdout && !list && !test) { -+ if (to_stdout && !test) { - strcpy(ofname, "stdout"); - - } else if (make_ofname() != OK) { -@@ -967,12 +969,6 @@ local void treat_file(iname) - return; /* error message already emitted */ - } - } -- if (list) { -- do_list(ifd, method); -- if (close (ifd) != 0) -- read_error (); -- return; -- } - - /* If compressing to a file, check if ofname is not ambiguous - * because the operating system truncates names. Otherwise, generate -@@ -992,7 +988,7 @@ local void treat_file(iname) - /* Keep the name even if not truncated except with --no-name: */ - if (!save_orig_name) save_orig_name = !no_name; - -- if (verbose) { -+ if (verbose && !list) { - fprintf(stderr, "%s:\t", ifname); - } - -@@ -1015,6 +1011,12 @@ local void treat_file(iname) - if (close (ifd) != 0) - read_error (); - -+ if (list) -+ { -+ do_list (method); -+ return; -+ } -+ - if (!to_stdout) - { - copy_stat (&istat); -@@ -1066,7 +1068,7 @@ local void treat_file(iname) - } else { - display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr); - } -- if (!test && !to_stdout) -+ if (!test) - fprintf(stderr, " -- %s %s", keep ? "created" : "replaced with", - ofname); - fprintf(stderr, "\n"); -@@ -1395,7 +1397,8 @@ local int make_ofname() - /* With -t or -l, try all files (even without .gz suffix) - * except with -r (behave as with just -dr). - */ -- if (!recursive && (list || test)) return OK; -+ if (!recursive && test) -+ return OK; - - /* Avoid annoying messages with -r */ - if (verbose || (!recursive && !quiet)) { -@@ -1688,7 +1691,6 @@ local int get_method(in) - last_member = 1; - if (imagic0 != EOF) { - write_buf (STDOUT_FILENO, magic, 1); -- bytes_out++; - } - } - if (method >= 0) return method; -@@ -1724,9 +1726,8 @@ local int get_method(in) - * If the given method is < 0, display the accumulated totals. - * IN assertions: time_stamp, header_bytes and ifile_size are initialized. - */ --local void do_list(ifd, method) -- int ifd; /* input file descriptor */ -- int method; /* compression method */ -+static void -+do_list (int method) - { - ulg crc; /* original crc */ - static int first_time = 1; -@@ -1768,26 +1769,9 @@ local void do_list(ifd, method) - return; - } - crc = (ulg)~0; /* unknown */ -- bytes_out = -1L; -- bytes_in = ifile_size; - - if (method == DEFLATED && !last_member) { -- /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files. -- * If the lseek fails, we could use read() to get to the end, but -- * --list is used to get quick results. -- * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if -- * you are not concerned about speed. -- */ -- bytes_in = lseek(ifd, (off_t)(-8), SEEK_END); -- if (bytes_in != -1L) { -- uch buf8; -- bytes_in += 8L; -- if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) { -- read_error(); -- } -- crc = LG(buf); -- bytes_out = LG(buf+4); -- } -+ crc = unzip_crc; - } - - if (verbose) -diff --git a/gzip.h b/gzip.h -index db0305f..ebe3213 100644 ---- a/gzip.h -+++ b/gzip.h -@@ -262,6 +262,7 @@ extern int zip (int in, int out); - extern int file_read (char *buf, unsigned size); - - /* in unzip.c */ -+extern ulg unzip_crc; - extern int unzip (int in, int out); - extern int check_zipfile (int in); - -diff --git a/tests/Makefile.am b/tests/Makefile.am -index 256bbf7..18e7c8a 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -21,6 +21,7 @@ TESTS = \ - hufts \ - keep \ - list \ -+ list-big \ - memcpy-abuse \ - mixed \ - null-suffix-clobber \ -diff --git a/tests/list-big b/tests/list-big -new file mode 100755 -index 0000000..afa3310 ---- /dev/null -+++ b/tests/list-big -@@ -0,0 +1,31 @@ -+#!/bin/sh -+# Exercise the --list option with a big file. -+ -+# Copyright 2021 Free Software Foundation, Inc. -+ -+# This program is free software: you can redistribute it and/or modify -+# it under the terms of the GNU General Public License as published by -+# the Free Software Foundation, either version 3 of the License, or -+# (at your option) any later version. -+ -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+ -+# You should have received a copy of the GNU General Public License -+# along with this program. If not, see <https://www.gnu.org/licenses/>. -+# limit so don't run it by default. -+ -+. "${srcdir=.}/init.sh"; path_prepend_ .. -+ -+truncate --size 4G big || framework_failure_ -+ -+gzip -1 big || fail=1 -+gzip -l big.gz >out || fail=1 -+case $(cat out) in -+ *' 4294967296 '*' big') ;; -+ *) cat out; fail=1;; -+esac -+ -+Exit $fail -diff --git a/unlzh.c b/unlzh.c -index 37084fe..f018922 100644 ---- a/unlzh.c -+++ b/unlzh.c -@@ -390,9 +390,8 @@ int unlzh(in, out) - decode_start(); - while (!done) { - n = decode((unsigned) DICSIZ, window); -- if (!test && n > 0) { -- write_buf(out, (char*)window, n); -- } -+ if (n > 0) -+ write_buf (out, window, n); - } - return OK; - } -diff --git a/unlzw.c b/unlzw.c -index d7714b5..ba824e4 100644 ---- a/unlzw.c -+++ b/unlzw.c -@@ -225,10 +225,8 @@ int unlzw(in, out) - "posbits:%ld inbuf:%02X %02X %02X %02X %02X\n", - posbits, p-1,p0,p1,p2,p3); - #endif -- if (!test && outpos > 0) { -- write_buf(out, (char*)outbuf, outpos); -- bytes_out += (off_t)outpos; -- } -+ if (outpos > 0) -+ write_buf (out, outbuf, outpos); - gzip_error (to_stdout - ? "corrupt input." - : "corrupt input. Use zcat to recover some data."); -@@ -257,10 +255,7 @@ int unlzw(in, out) - outpos += i; - } - if (outpos >= OUTBUFSIZ) { -- if (!test) { -- write_buf(out, (char*)outbuf, outpos); -- bytes_out += (off_t)outpos; -- } -+ write_buf (out, outbuf, outpos); - outpos = 0; - } - stackp+= i; -@@ -281,9 +276,7 @@ int unlzw(in, out) - } - } while (rsize != 0); - -- if (!test && outpos > 0) { -- write_buf(out, (char*)outbuf, outpos); -- bytes_out += (off_t)outpos; -- } -+ if (outpos > 0) -+ write_buf (out, outbuf, outpos); - return OK; - } -diff --git a/unzip.c b/unzip.c -index dacfbaf..b52811e 100644 ---- a/unzip.c -+++ b/unzip.c -@@ -51,6 +51,8 @@ - - /* Globals */ - -+ulg unzip_crc; /* CRC found by 'unzip'. */ -+ - static int decrypt; /* flag to turn on decryption */ - static int pkzip = 0; /* set for a pkzip file */ - static int ext_header = 0; /* set if extended local header */ -@@ -210,6 +212,7 @@ int unzip(in, out) - } - } - ext_header = pkzip = 0; /* for next file */ -+ unzip_crc = orig_crc; - if (err == OK) return OK; - exit_code = ERROR; - if (!test) abort_gzip(); -diff --git a/util.c b/util.c -index 4e73036..cd43886 100644 ---- a/util.c -+++ b/util.c -@@ -112,7 +112,6 @@ int copy(in, out) - errno = 0; - while (insize > inptr) { - write_buf(out, (char*)inbuf + inptr, insize - inptr); -- bytes_out += insize - inptr; - got = read_buffer (in, (char *) inbuf, INBUFSIZ); - if (got == -1) - read_error(); -@@ -255,9 +254,7 @@ void flush_outbuf() - { - if (outcnt == 0) return; - -- if (!test) -- write_buf (ofd, outbuf, outcnt); -- bytes_out += (off_t)outcnt; -+ write_buf (ofd, outbuf, outcnt); - outcnt = 0; - } - -@@ -270,16 +267,13 @@ void flush_window() - if (outcnt == 0) return; - updcrc(window, outcnt); - -- if (!test) { -- write_buf(ofd, (char *)window, outcnt); -- } -- bytes_out += (off_t)outcnt; -+ write_buf (ofd, window, outcnt); - outcnt = 0; - } - - /* =========================================================================== -- * Does the same as write(), but also handles partial pipe writes and checks -- * for error return. -+ * Update the count of output bytes. If testing, do not do any -+ * output. Otherwise, write the buffer, checking for errors. - */ - void write_buf(fd, buf, cnt) - int fd; -@@ -288,6 +282,10 @@ void write_buf(fd, buf, cnt) - { - unsigned n; - -+ bytes_out += cnt; -+ if (test) -+ return; -+ - while ((n = write_buffer (fd, buf, cnt)) != cnt) { - if (n == (unsigned)(-1)) { - write_error(); --- -2.27.0 -
View file
_service:tar_scm:zdiff-fix-another-arg-handling-bug.patch
Deleted
@@ -1,200 +0,0 @@ -From 78b29bdde523b72748049f3cf05698b9dabf52ae Mon Sep 17 00:00:00 2001 -From: Paul Eggert <eggert@cs.ucla.edu> -Date: Tue, 8 Mar 2022 13:02:37 -0800 -Subject: PATCH 2/2 zdiff: fix another arg-handling bug - -Also allow args after file names. -Problem reported by Lv Ying <https://bugs.gnu.org/54290#12>. ---- - zdiff.in | 127 ++++++++++++++++++++++++++++++++----------------------- - 1 file changed, 75 insertions(+), 52 deletions(-) - -diff --git a/zdiff.in b/zdiff.in -index d982d9f..593cb6e 100644 ---- a/zdiff.in -+++ b/zdiff.in -@@ -48,60 +48,85 @@ escape=' - $s/X$/'\''/ - ' - --while :; do -- argdone=: -- case $1 in -+filesonly= -+file1= -+file2= -+needop= -+ -+for arg -+do -+ case $filesonly$needop$arg in - --h*) printf '%s\n' "$usage" || exit 2; exit;; - --v*) printf '%s\n' "$version" || exit 2; exit;; -- --) shift; break;; -- -*\'*) argdone=false arg=$1;; -- -CDFISUWXx) -- cmp="$cmp $1" -- case ${2?} in -- -*\'*) argdone=false arg=$2;; -- *) cmp="$cmp '$2'";; -- esac -- shift;; -- -?*) cmp="$cmp '$1'";; -- *) break;; -+ --) filesonly=t;; -+ -*\'*) cmp="$cmp '"`printf '%sX\n' "$arg" | sed "$escape"`;; -+ -CDFISUWXx) needop="'$arg'";; -+ -?*) cmp="$cmp '$arg'";; -+ *) case $needop in -+ '') case $arg in -+ '') printf >&2 '%s\n' "$0: empty file name"; exit 2;; -+ esac -+ case $file1 in -+ '') file1=$arg;; -+ *) case $file2 in -+ '') file2=$arg;; -+ *) printf >&2 '%s\n' "$0: extra operand '$arg'"; exit 2;; -+ esac;; -+ esac;; -+ *) cmp="$cmp $needop '$arg'" -+ needop=;; -+ esac;; - esac -- $argdone || cmp="$cmp '"`printf '%sX\n' "$arg" | sed "$escape"` -- shift - done -+case $needop in -+'') ;; -+*) printf >&2 '%s\n' "$0: $prevarg: option requires an argument -- $needop" -+ exit 2;; -+esac -+ - cmp="$cmp --" - --for file --do -- test "X$file" = X- || <"$file" || exit 2 --done -+case $file1 in -+'') printf >&2 '%s\n' "$0: missing operand"; exit 2;; -+-) ;; -+*) <"$file1" || exit 2;; -+esac -+case $file2 in -+''|-) ;; -+*) <"$file2" || exit 2;; -+esac - - gzip_status=0 - exec 3>&1 - --if test $# -eq 1; then -- case $1 in -+case $file2 in -+'') -+ case $file1 in - *-.gz* | *-.zZ | *.tgaz) -- FILE=`expr "X$1" : 'X\(.*\)-.zZtga*$'` -+ FILE=`expr "X$file1" : 'X\(.*\)-.zZtga*$'` - gzip_status=$( - exec 4>&1 -- (gzip -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3 -+ (gzip -cd -- "$file1" 4>&-; echo $? >&4) 3>&- | -+ eval "$cmp" - '"$FILE"' >&3 - );; - *) -- printf >&2 '%s\n' "$0: $1: unknown compressed file extension" -+ printf >&2 '%s\n' "$0: $file1: unknown compressed file extension" - exit 2;; -- esac --elif test $# -eq 2; then -- case "$1" in -+ esac;; -+*) -+ case $file1,$file2 in -+ -,-) -+ gzip_status=$( -+ exec 4>&1 -+ (gzip -cdfq - 4>&-; echo $? >&4) 3>&- | -+ eval "$cmp" - - >&3 -+ );; -+ *) -+ case $file1 in - *-.gz* | *-.zZ | *.tgaz | -) -- case "$2" in -+ case $file2 in - *-.gz* | *-.zZ | *.tgaz | -) -- if test "$1$2" = --; then -- gzip_status=$( -- exec 4>&1 -- (gzip -cdfq - 4>&-; echo $? >&4) 3>&- | -- eval "$cmp" - - >&3 -- ) -- elif -+ if - # Reject Solaris 8's buggy /bin/bash 2.03. - echo X | - (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) \ -@@ -109,8 +134,9 @@ elif test $# -eq 2; then - then - gzip_status=$( - exec 4>&1 -- (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | -- ( (gzip -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- </dev/null | -+ (gzip -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | -+ ((gzip -cdfq -- "$file2" 4>&- -+ echo $? >&4) 3>&- 5<&- </dev/null | - eval "$cmp" /dev/fd/5 - >&3) 5<&0 - ) - cmp_status=$? -@@ -137,10 +163,10 @@ elif test $# -eq 2; then - set -C - tmp=${TMPDIR}zdiff$$ - fi -- gzip -cdfq -- "$2" > "$tmp" || exit 2 -+ gzip -cdfq -- "$file2" > "$tmp" || exit 2 - gzip_status=$( - exec 4>&1 -- (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | -+ (gzip -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | - eval "$cmp" - '"$tmp"' >&3 - ) - cmp_status=$? -@@ -151,25 +177,22 @@ elif test $# -eq 2; then - *) - gzip_status=$( - exec 4>&1 -- (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | -- eval "$cmp" - '"$2"' >&3 -+ (gzip -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | -+ eval "$cmp" - '"$file2"' >&3 - );; - esac;; -- *) case "$2" in -+ *) case $file2 in - *-.gz* | *-.zZ | *.tgaz | -) - gzip_status=$( - exec 4>&1 -- (gzip -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- | -- eval "$cmp" '"$1"' - >&3 -+ (gzip -cdfq -- "$file2" 4>&-; echo $? >&4) 3>&- | -+ eval "$cmp" '"$file1"' - >&3 - );; -- *) eval "$cmp" '"$1"' '"$2"';; -+ *) eval "$cmp" '"$file1"' '"$file2"';; - esac;; -- esac --else -- printf >&2 '%s\n' \ -- "$0: invalid number of operands; try \`$0 --help' for help" -- exit 2 --fi -+ esac;; -+ esac;; -+esac - - cmp_status=$? - test "$gzip_status" -eq 0 || exit 2 --- -2.27.0 -
View file
_service:tar_scm:zdiff-fix-arg-handling-bug.patch
Deleted
@@ -1,43 +0,0 @@ -From 9cd9a789c186bfe6594c0aed8ba34c9e3d9d9292 Mon Sep 17 00:00:00 2001 -From: Paul Eggert <eggert@cs.ucla.edu> -Date: Mon, 7 Mar 2022 09:38:08 -0800 -Subject: PATCH zdiff: fix arg handling bug - -Problem reported by Lv Ying (Bug#54291). -* zdiff.in (escape): Handle args like '-C 5'. ---- - zdiff.in | 11 ++++++++++- - 1 file changed, 10 insertions(+), 1 deletion(-) - -diff --git a/zdiff.in b/zdiff.in -index a1325f2..a72d08d 100644 ---- a/zdiff.in -+++ b/zdiff.in -@@ -49,14 +49,23 @@ escape=' - ' - - while :; do -+ argdone=: - case $1 in - --h*) printf '%s\n' "$usage" || exit 2; exit;; - --v*) printf '%s\n' "$version" || exit 2; exit;; - --) shift; break;; -- -*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;; -+ -*\'*) argdone=false arg=$1;; -+ -CDFISUWXx) -+ cmp="$cmp $1" -+ case ${2?} in -+ -*\'*) argdone=false arg=$2;; -+ *) cmp="$cmp '$2'";; -+ esac -+ shift;; - -?*) cmp="$cmp '$1'";; - *) break;; - esac -+ $argdone || cmp="$cmp '"`printf '%sX\n' "$arg" | sed "$escape"` - shift - done - cmp="$cmp --" --- -2.27.0 -
View file
_service
Changed
@@ -2,7 +2,7 @@ <service name="tar_scm"> <param name="scm">git</param> <param name="url">git@gitee.com:src-openeuler/gzip.git</param> - <param name="revision">5cc368934afa0fc8534d25d9ceede50f88717833</param> + <param name="revision">ef1297429ca000062ef274cb5ae58df58d3051fc</param> <param name="exclude">*</param> <param name="extract">*</param> </service>
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fstatat.c
Deleted
@@ -1,148 +0,0 @@ -/* Work around an fstatat bug on Solaris 9. - - Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <https://www.gnu.org/licenses/>. */ - -/* Written by Paul Eggert and Jim Meyering. */ - -/* If the user's config.h happens to include <sys/stat.h>, let it include only - the system's <sys/stat.h> here, so that orig_fstatat doesn't recurse to - rpl_fstatat. */ -#define __need_system_sys_stat_h -#include <config.h> - -/* Get the original definition of fstatat. It might be defined as a macro. */ -#include <sys/types.h> -#include <sys/stat.h> -#undef __need_system_sys_stat_h - -#if HAVE_FSTATAT && HAVE_WORKING_FSTATAT_ZERO_FLAG -static int -orig_fstatat (int fd, char const *filename, struct stat *buf, int flags) -{ - return fstatat (fd, filename, buf, flags); -} -#endif - -#ifdef __osf__ -/* Write "sys/stat.h" here, not <sys/stat.h>, otherwise OSF/1 5.1 DTK cc - eliminates this include because of the preliminary #include <sys/stat.h> - above. */ -# include "sys/stat.h" -#else -# include <sys/stat.h> -#endif - -#include "stat-time.h" - -#include <errno.h> -#include <fcntl.h> -#include <stdlib.h> -#include <string.h> - -#if HAVE_FSTATAT && HAVE_WORKING_FSTATAT_ZERO_FLAG - -# ifndef LSTAT_FOLLOWS_SLASHED_SYMLINK -# define LSTAT_FOLLOWS_SLASHED_SYMLINK 0 -# endif - -static int -normal_fstatat (int fd, char const *file, struct stat *st, int flag) -{ - return stat_time_normalize (orig_fstatat (fd, file, st, flag), st); -} - -/* fstatat should always follow symbolic links that end in /, but on - Solaris 9 it doesn't if AT_SYMLINK_NOFOLLOW is specified. - Likewise, trailing slash on a non-directory should be an error. - These are the same problems that lstat.c and stat.c address, so - solve it in a similar way. - - AIX 7.1 fstatat (AT_FDCWD, ..., 0) always fails, which is a bug. - Work around this bug if FSTATAT_AT_FDCWD_0_BROKEN is nonzero. */ - -int -rpl_fstatat (int fd, char const *file, struct stat *st, int flag) -{ - int result = normal_fstatat (fd, file, st, flag); - size_t len; - - if (LSTAT_FOLLOWS_SLASHED_SYMLINK || result != 0) - return result; - len = strlen (file); - if (flag & AT_SYMLINK_NOFOLLOW) - { - /* Fix lstat behavior. */ - if (filelen - 1 != '/' || S_ISDIR (st->st_mode)) - return 0; - if (!S_ISLNK (st->st_mode)) - { - errno = ENOTDIR; - return -1; - } - result = normal_fstatat (fd, file, st, flag & ~AT_SYMLINK_NOFOLLOW); - } - /* Fix stat behavior. */ - if (result == 0 && !S_ISDIR (st->st_mode) && filelen - 1 == '/') - { - errno = ENOTDIR; - return -1; - } - return result; -} - -#else /* ! (HAVE_FSTATAT && HAVE_WORKING_FSTATAT_ZERO_FLAG) */ - -/* On mingw, the gnulib <sys/stat.h> defines 'stat' as a function-like - macro; but using it in AT_FUNC_F2 causes compilation failure - because the preprocessor sees a use of a macro that requires two - arguments but is only given one. Hence, we need an inline - forwarder to get past the preprocessor. */ -static int -stat_func (char const *name, struct stat *st) -{ - return stat (name, st); -} - -/* Likewise, if there is no native 'lstat', then the gnulib - <sys/stat.h> defined it as stat, which also needs adjustment. */ -# if !HAVE_LSTAT -# undef lstat -# define lstat stat_func -# endif - -/* Replacement for Solaris' function by the same name. - <https://www.google.com/search?q=fstatat+site:docs.oracle.com> - First, try to simulate it via l?stat ("/proc/self/fd/FD/FILE"). - Failing that, simulate it via save_cwd/fchdir/(stat|lstat)/restore_cwd. - If either the save_cwd or the restore_cwd fails (relatively unlikely), - then give a diagnostic and exit nonzero. - Otherwise, this function works just like Solaris' fstatat. */ - -# define AT_FUNC_NAME fstatat -# define AT_FUNC_F1 lstat -# define AT_FUNC_F2 stat_func -# define AT_FUNC_USE_F1_COND AT_SYMLINK_NOFOLLOW -# define AT_FUNC_POST_FILE_PARAM_DECLS , struct stat *st, int flag -# define AT_FUNC_POST_FILE_ARGS , st -# include "at-func.c" -# undef AT_FUNC_NAME -# undef AT_FUNC_F1 -# undef AT_FUNC_F2 -# undef AT_FUNC_USE_F1_COND -# undef AT_FUNC_POST_FILE_PARAM_DECLS -# undef AT_FUNC_POST_FILE_ARGS - -#endif /* !HAVE_FSTATAT */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/statat.c
Deleted
@@ -1,21 +0,0 @@ -/* Return info about a file at a directory. - - Copyright (C) 2012-2021 Free Software Foundation, Inc. - - This file is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 3 of the License, - or (at your option) any later version. - - This file is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <https://www.gnu.org/licenses/>. */ - -#include <config.h> - -#define STATAT_INLINE _GL_EXTERN_INLINE -#include "openat.h"
View file
_service:tar_scm:gzip-1.11.tar.xz/lzw.c
Deleted
@@ -1,23 +0,0 @@ -/* lzw.c -- compress files in LZW format. - * This is a dummy version avoiding patent problems. - */ - -#include <config.h> -#include "tailor.h" -#include "gzip.h" -#include "lzw.h" - -static int msg_done = 0; - -/* Compress in to out with lzw method. */ -int lzw(in, out) - int in, out; -{ - if (msg_done) return ERROR; - msg_done = 1; - fprintf(stderr,"output in compress .Z format not supported\n"); - if (in != out) { /* avoid warnings on unused variables */ - exit_code = ERROR; - } - return ERROR; -}
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fstatat.m4
Deleted
@@ -1,65 +0,0 @@ -# fstatat.m4 serial 4 -dnl Copyright (C) 2004-2021 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -# Written by Jim Meyering. - -# If we have the fstatat function, and it has the bug (in AIX 7.1) -# that it does not fill in st_size correctly, use the replacement function. -AC_DEFUN(gl_FUNC_FSTATAT, - - AC_REQUIRE(gl_SYS_STAT_H_DEFAULTS) - AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) - AC_REQUIRE(gl_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK) - AC_REQUIRE(AC_CANONICAL_HOST) - AC_CHECK_FUNCS_ONCE(fstatat) - - if test $ac_cv_func_fstatat = no; then - HAVE_FSTATAT=0 - else - dnl Test for an AIX 7.1 bug; see - dnl <https://lists.gnu.org/r/bug-tar/2011-09/msg00015.html>. - AC_CACHE_CHECK(whether fstatat (..., 0) works, - gl_cv_func_fstatat_zero_flag, - AC_RUN_IFELSE( - AC_LANG_SOURCE( - - #include <fcntl.h> - #include <sys/stat.h> - int - main (void) - { - struct stat a; - return fstatat (AT_FDCWD, ".", &a, 0) != 0; - } - ), - gl_cv_func_fstatat_zero_flag=yes, - gl_cv_func_fstatat_zero_flag=no, - case "$host_os" in - aix*) gl_cv_func_fstatat_zero_flag="guessing no";; - *) gl_cv_func_fstatat_zero_flag="guessing yes";; - esac - ) - ) - - case $gl_cv_func_fstatat_zero_flag+$gl_cv_func_lstat_dereferences_slashed_symlink in - *yes+*yes) ;; - *) REPLACE_FSTATAT=1 ;; - esac - - case $host_os in - solaris*) - REPLACE_FSTATAT=1 ;; - esac - - case $REPLACE_FSTATAT,$gl_cv_func_fstatat_zero_flag in - 1,*yes) - AC_DEFINE(HAVE_WORKING_FSTATAT_ZERO_FLAG, 1, - Define to 1 if fstatat (..., 0) works. - For example, it does not work in AIX 7.1.) - ;; - esac - fi -)
View file
_service:tar_scm:gzip-1.11.tar.xz/.tarball-version -> _service:tar_scm:gzip-1.12.tar.xz/.tarball-version
Changed
@@ -1,1 +1,1 @@ -1.11 +1.12
View file
_service:tar_scm:gzip-1.11.tar.xz/ChangeLog -> _service:tar_scm:gzip-1.12.tar.xz/ChangeLog
Changed
@@ -1,5 +1,224 @@ +2022-04-07 Jim Meyering <meyering@fb.com> + + version 1.12 + * NEWS: Record release date. + +2022-04-07 Paul Eggert <eggert@cs.ucla.edu> + + zgrep: fix "binary file matches" mislabeling + Problem reported by Jim Avera (Bug#31280). + This became more of an issue when GNU grep 3.5 (2020) started sending + "binary file matches" diagnostics to stderr instead of to stdout. + * tests/Makefile.am (TESTS): Add zgrep-binary. + * tests/zgrep-binary: New test. + * zgrep.in (args): New var, to accumulate args separately + from grep command, so we can prepend args if need be. + Most uses of 'grep' changed to use 'args' instead, or also. + (with_filename): Set to 1 if more than one file and -h not given; + this simplifies later code. + (gnuish_grep): New var; evaluates to true if grep supports + -H and --label options, as is true for GNU and FreeBSD grep. + Append -H to 'grep' if outputting file names with GNUish grep, + and use --label with GNUish grep unless reading from stdin, + as that’s safer and more efficient than relabeling with 'sed'. + + maint: use C locale more often + * gzexe.in, zdiff.in, zgrep.in: + Run expr and sed in the C locale when it might help to avoid + undefined behavior on non-GNU platforms. + * sample/zfile, znew.in: Run in the C locale, for simplicity and + to avoid undefined behavior on non-GNU platforms. + + gzexe: optimize out a grep + * gzexe.in: Avoid an unnecessary invocation of ‘grep’, + by using sed instead. Also, look only for at-most-3-digit numbers, + for consistency with the rest of the script. + + gzip: mention when fixed bugs were introduced + + zgrep: port to POSIX sed + * zgrep.in (res): When escaping the file name do not rely on GNU + sed’s extension to POSIX with respect to s/.../\n/. Instead, use + features that should also work with AIX and/or Solaris sed. This is + simpler anyway, and would have prevented the recently-fixed bug. + +2022-04-07 Jim Meyering <meyering@fb.com> + + zgrep: add NEWS and tests for this exploitable bug + * tests/zgrep-abuse: New file, based on PoC by cleemy desu wayo. + * tests/Makefile.am (TESTS): Add it. + * NEWS: Mention the exploit. + The bug appears to have been present since the beginning. + +2022-04-06 Lasse Collin <lasse.collin@tukaani.org> + + zgrep: avoid exploit via multi-newline file names + * zgrep.in: The issue with the old code is that with multiple + newlines, the N-command will read the second line of input, + then the s-commands will be skipped because it's not the end + of the file yet, then a new sed cycle starts and the pattern + space is printed and emptied. So only the last line or two get + escaped. This patch makes sed read all lines into the pattern + space and then do the escaping. + + This vulnerability was discovered by: + cleemy desu wayo working with Trend Micro Zero Day Initiative + +2022-04-06 Paul Eggert <eggert@cs.ucla.edu> + + gzip: fix i386 port + * deflate.c (prev_length, match_start, max_chain_length, good_match): + Make these extern instead of static, reverting part of the + 2021-12-01T21:46:36Z!eggert@cs.ucla.edu patch. These symbols are + used by i386 asm, and so must be extern at least for i386. + + maint: pacify GCC with recent x86 glibc + * configure.ac (WERROR_CFLAGS): Disable -Wtype-limits, + due to a false alarm on platforms where 'long' is 32 bits + and time_t is 64-bit, such as recent glibc on x86. + +2022-04-04 Paul Eggert <eggert@cs.ucla.edu> + + maint: update from Gnulib + * bootstrap, tests/init.sh: Copy manually from current Gnulib. + * lib/.gitignore, m4/.gitignore: Update as per current Gnulib. + + build: update gnulib submodule to latest + + build: support --program-prefix etc. + Problem reported by Antonio Diaz Diaz via Dagobert Michelsen in: + https://bugs.gnu.org/16876 + * Makefile.am (.in): Substitute for 'gzip', 'zdiff', 'zgrep'. + ($(GZIP_TRANSFORMED), $(ZDIFF_TRANSFORMED), $(ZGREP_TRANSFORMED)): + New rules to build forwarding shell scripts, if needed. + Add these files to BUILT_SOURCES and MOSTLY_CLEANFILES if needed. + * configure.ac (GZIP_TRANSFORMED, ZDIFF_TRANSFORMED, ZGREP_TRANSFORMED): + New substituted vars. + (GZIP_IS_TRANSFORMED, ZDIFF_IS_TRANSFORMED, ZGREP_IS_TRANSFORMED): + New Automake conditions. + * gunzip.in, gzexe.in, zcat.in, zcmp.in, zdiff.in, zegrep.in: + * zfgrep.in, zforce.in, zgrep.in, zless.in, zmore.in, znew.in: + Quote possibly-transformed subcommand names. + +2022-04-01 Paul Eggert <eggert@cs.ucla.edu> + + doc: improve doc for saved timestamps etc. + Problem reported by Carpe Sébastien (Bug#24559). + +2022-03-31 Paul Eggert <eggert@cs.ucla.edu> + + tests: port list-big test to macOS 12.1 + * tests/list-big: Use dd, not truncate, to create a big file. + + zmore: don't assume benign PAGER in testing + * tests/help-version (zmore_setup): Unset PAGER so that we test + 'more', not whatever the tester has in its PAGER environment + variable. This works around a problem I found when I ran + 'PAGER=less make check' on a platform that lacked 'less'. + + zless: install only on platforms with 'less' + Problem reported by Michael Felt (Bug#30029). + * Makefile.am (ZLESS_MAN, ZLESS_PROG): New macros. + (man_MANS, bin_SCRIPTS): Use them. + * configure.ac: Check for 'less'. + * tests/Makefile.am (ZLESS_PROG): New macro. + (built_programs): Use it. + +2022-03-29 Paul Eggert <eggert@cs.ucla.edu> + + doc: spelling fixes + + doc: omit @refill + * doc/gzip.texi: Remove @refill to suppress warning + ‘gzip.texi:562: warning: @refill is obsolete.’ from makeinfo 6.8. + +2022-03-08 Paul Eggert <eggert@cs.ucla.edu> + + zdiff: fix another arg-handling bug + Also allow args after file names. + Problem reported by Lv Ying <https://bugs.gnu.org/54290#12>. + +2022-03-07 Paul Eggert <eggert@cs.ucla.edu> + + zdiff: fix arg handling bug + Problem reported by Lv Ying (Bug#54291). + * zdiff.in (escape): Handle args like '-C 5'. + +2022-02-10 Paul Eggert <eggert@cs.ucla.edu> + + doc: embolden SEE ALSO refs + Problem reported by Helge Kreutzmann (Bug#53918). + +2022-01-03 Jim Meyering <meyering@fb.com> + + maint: avoid new syntax-check failures + * cfg.mk (local-checks-to-skip): Add sc_indent, to skip it. + Otherwise, "make syntax-check" would fail. + + build: disable some expensive compiler warnings by default + * configure.ac (gl_GCC_VERSION_IFELSE): Copy from coreutils. + (gcc-warnings): Update from coreutils. + + maint: make update-copyright + + build: update gnulib to latest; also bootstrap and init.sh + +2021-12-15 Paul Eggert <eggert@cs.ucla.edu> + + doc: document gzip -l change + * NEWS, doc/gzip.texi (Invoking gzip), gzip.1 (gunzip): + Document recent change. + + gzip: gzip -l now outputs accurate size + gzip -l now decompresses to see how long the uncompressed file was. + This fixes what is by far the most common bug report for gzip. + It has a significant performance cost, but it’s worth it nowadays. + * gzip.c (main): -l now sets 'test' too. All uses of + 'test' changed. + (treat_stdin, treat_file): Call do_list after decompressing, + so that the length is known. + (do_list): Omit arg IFD, since it is no longer needed. + All callers changed. Get the CRC and uncompressed size + from input_crc and bytes_out instead of using lseek. + * tests/list-big: New test. + * unzip.c (unzip): Set unzip_crc before returning. + * util.c (write_buf): If 'test', output nothing. + Update bytes_out with output byte count, regardless of 'test'. + All callers changed. + +2021-12-01 Paul Eggert <eggert@cs.ucla.edu> + + maint: reduce module coupling + If a symbol is extern but never used by another module, make it + static instead, or remove it if it is not used anywhere. + * Makefile.am (gzip_SOURCES): Remove lzw.c. + * bits.c (bi_buf, bi_valid) !IBM_Z_DFLTCC: + * deflate.c (prev_length, match_start, max_chain_length) + (good_match, lm_init): + * gzip.c (verbose) !DEBUG: + * unlzw.c (block_mode): + Now static. + * gzip.c (help, main, do_lzw): + * revision.h: + Simplify by assuming !LZW. + * util.c (setcrc): Define only if IBM_Z_DFLTCC. + (make_simple_name): Define only if NO_MULTIPLE_DOTS. + +2021-10-30 Paul Eggert <eggert@cs.ucla.edu> + + maint: modernize README-{hacking,prereq} + +2021-09-07 Paul Eggert <eggert@cs.ucla.edu> + + build: update gnulib submodule to latest + 2021-09-03 Jim Meyering <meyering@fb.com> + maint: post-release administrivia + * NEWS: Add header line for next release. + * .prev-version: Record previous version. + * cfg.mk (old_NEWS_hash): Auto-update. + version 1.11 * NEWS: Record release date.
View file
_service:tar_scm:gzip-1.11.tar.xz/ChangeLog-2007 -> _service:tar_scm:gzip-1.12.tar.xz/ChangeLog-2007
Changed
@@ -1776,7 +1776,7 @@ ----- - Copyright (C) 1997-2002, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 1997-2002, 2006-2022 Free Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly Copying and distribution of this file, with or without
View file
_service:tar_scm:gzip-1.11.tar.xz/GNUmakefile -> _service:tar_scm:gzip-1.12.tar.xz/GNUmakefile
Changed
@@ -5,7 +5,7 @@ # It is necessary if you want to build targets usually of interest # only to the maintainer. -# Copyright (C) 2001, 2003, 2006-2021 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2006-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/Makefile.am -> _service:tar_scm:gzip-1.12.tar.xz/Makefile.am
Changed
@@ -1,6 +1,6 @@ # Make gzip (GNU zip). -# Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2021 Free Software Foundation, +# Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, # Inc. # This program is free software; you can redistribute it and/or modify @@ -31,8 +31,16 @@ nodist_libver_a_SOURCES = version.c version.h DISTCLEANFILES = version.c version.h +if LESS +ZLESS_MAN = zless.1 +ZLESS_PROG = zless +else +ZLESS_MAN = +ZLESS_PROG = +endif + man_MANS = gunzip.1 gzexe.1 gzip.1 \ - zcat.1 zcmp.1 zdiff.1 zforce.1 zgrep.1 zless.1 zmore.1 znew.1 + zcat.1 zcmp.1 zdiff.1 zforce.1 zgrep.1 $(ZLESS_MAN) zmore.1 znew.1 EXTRA_DIST = $(ACINCLUDE_INPUTS) $(man_MANS) \ ChangeLog-2007 \ @@ -49,9 +57,9 @@ bin_PROGRAMS = gzip bin_SCRIPTS = gunzip gzexe zcat zcmp zdiff \ - zegrep zfgrep zforce zgrep zless zmore znew + zegrep zfgrep zforce zgrep $(ZLESS_PROG) zmore znew gzip_SOURCES = \ - bits.c deflate.c gzip.c inflate.c lzw.c \ + bits.c deflate.c gzip.c inflate.c \ trees.c unlzh.c unlzw.c unpack.c unzip.c util.c zip.c gzip_LDADD = libver.a lib/libgzip.a gzip_LDADD += $(LIB_CLOCK_GETTIME) @@ -84,9 +92,12 @@ SUFFIXES = .in .in: $(AM_V_GEN)rm -f $@-t $@ \ - && sed \ + && sed \ -e 's|/bin/sh|$(SHELL)|g' \ -e 's|@GREP@|$(GREP)|g' \ + -e "s|'gzip'|$(GZIP_TRANSFORMED)|g" \ + -e "s|'zdiff'|$(ZDIFF_TRANSFORMED)|g" \ + -e "s|'zgrep'|$(ZGREP_TRANSFORMED)|g" \ -e 's|@VERSION@|$(VERSION)|g' \ $(srcdir)/$@.in >$@-t \ && chmod a=rx $@-t \ @@ -165,3 +176,35 @@ MOSTLYCLEANFILES = _match.i match_.s _match.S gzip.doc.gz \ gunzip gzexe zcat zcmp zdiff zegrep zfgrep zforce zgrep zless zmore znew + +# gzip, zdiff and zgrep are used by installed scripts, and installed names +# might be transformed by 'configure' options like --program-transform-name. +# Create executabls in the current directory by the transformed names, +# for the benefit of 'make check'. +if GZIP_IS_TRANSFORMED +BUILT_SOURCES += $(GZIP_TRANSFORMED) +MOSTLYCLEANFILES += $(GZIP_TRANSFORMED) +$(GZIP_TRANSFORMED): + printf '%s\n' >'$@' \ + '#!$(SHELL)' \ + 'exec '\''$(abs_top_builddir)/gzip'\'' "$$@"' + chmod a+x $@ +endif +if ZDIFF_IS_TRANSFORMED +BUILT_SOURCES += $(ZDIFF_TRANSFORMED) +MOSTLYCLEANFILES += $(ZDIFF_TRANSFORMED) +$(ZDIFF_TRANSFORMED): + printf '%s\n' >'$@' \ + '#!$(SHELL)' \ + 'exec '\''$(abs_top_builddir)/zdiff'\'' "$$@"' + chmod a+x $@ +endif +if ZGREP_IS_TRANSFORMED +BUILT_SOURCES += $(ZGREP_TRANSFORMED) +MOSTLYCLEANFILES += $(ZGREP_TRANSFORMED) +$(ZGREP_TRANSFORMED): + printf '%s\n' >'$@' \ + '#!$(SHELL)' \ + 'exec '\''$(abs_top_builddir)/zgrep'\'' "$$@"' + chmod a+x $@ +endif
View file
_service:tar_scm:gzip-1.11.tar.xz/Makefile.in -> _service:tar_scm:gzip-1.12.tar.xz/Makefile.in
Changed
@@ -16,7 +16,7 @@ # Make gzip (GNU zip). -# Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2021 Free Software Foundation, +# Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, # Inc. # This program is free software; you can redistribute it and/or modify @@ -112,6 +112,17 @@ host_triplet = @host@ bin_PROGRAMS = gzip$(EXEEXT) @IBM_Z_DFLTCC_TRUE@am__append_1 = dfltcc.c + +# gzip, zdiff and zgrep are used by installed scripts, and installed names +# might be transformed by 'configure' options like --program-transform-name. +# Create executabls in the current directory by the transformed names, +# for the benefit of 'make check'. +@GZIP_IS_TRANSFORMED_TRUE@am__append_2 = $(GZIP_TRANSFORMED) +@GZIP_IS_TRANSFORMED_TRUE@am__append_3 = $(GZIP_TRANSFORMED) +@ZDIFF_IS_TRANSFORMED_TRUE@am__append_4 = $(ZDIFF_TRANSFORMED) +@ZDIFF_IS_TRANSFORMED_TRUE@am__append_5 = $(ZDIFF_TRANSFORMED) +@ZGREP_IS_TRANSFORMED_TRUE@am__append_6 = $(ZGREP_TRANSFORMED) +@ZGREP_IS_TRANSFORMED_TRUE@am__append_7 = $(ZGREP_TRANSFORMED) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \ @@ -137,13 +148,12 @@ $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/frexp.m4 \ $(top_srcdir)/m4/frexpl.m4 $(top_srcdir)/m4/fseek.m4 \ $(top_srcdir)/m4/fseeko.m4 $(top_srcdir)/m4/fseterr.m4 \ - $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fstatat.m4 \ - $(top_srcdir)/m4/fsync.m4 $(top_srcdir)/m4/ftell.m4 \ - $(top_srcdir)/m4/ftello.m4 $(top_srcdir)/m4/getcwd.m4 \ - $(top_srcdir)/m4/getdtablesize.m4 $(top_srcdir)/m4/getopt.m4 \ - $(top_srcdir)/m4/getprogname.m4 $(top_srcdir)/m4/gettime.m4 \ - $(top_srcdir)/m4/gettimeofday.m4 $(top_srcdir)/m4/gnu-make.m4 \ - $(top_srcdir)/m4/gnulib-common.m4 \ + $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fsync.m4 \ + $(top_srcdir)/m4/ftell.m4 $(top_srcdir)/m4/ftello.m4 \ + $(top_srcdir)/m4/getcwd.m4 $(top_srcdir)/m4/getdtablesize.m4 \ + $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/getprogname.m4 \ + $(top_srcdir)/m4/gettime.m4 $(top_srcdir)/m4/gettimeofday.m4 \ + $(top_srcdir)/m4/gnu-make.m4 $(top_srcdir)/m4/gnulib-common.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/intmax_t.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ @@ -220,13 +230,13 @@ libver_a_LIBADD = nodist_libver_a_OBJECTS = version.$(OBJEXT) libver_a_OBJECTS = $(nodist_libver_a_OBJECTS) -am__gzip_SOURCES_DIST = bits.c deflate.c gzip.c inflate.c lzw.c \ - trees.c unlzh.c unlzw.c unpack.c unzip.c util.c zip.c dfltcc.c +am__gzip_SOURCES_DIST = bits.c deflate.c gzip.c inflate.c trees.c \ + unlzh.c unlzw.c unpack.c unzip.c util.c zip.c dfltcc.c @IBM_Z_DFLTCC_TRUE@am__objects_1 = dfltcc.$(OBJEXT) am_gzip_OBJECTS = bits.$(OBJEXT) deflate.$(OBJEXT) gzip.$(OBJEXT) \ - inflate.$(OBJEXT) lzw.$(OBJEXT) trees.$(OBJEXT) \ - unlzh.$(OBJEXT) unlzw.$(OBJEXT) unpack.$(OBJEXT) \ - unzip.$(OBJEXT) util.$(OBJEXT) zip.$(OBJEXT) $(am__objects_1) + inflate.$(OBJEXT) trees.$(OBJEXT) unlzh.$(OBJEXT) \ + unlzw.$(OBJEXT) unpack.$(OBJEXT) unzip.$(OBJEXT) \ + util.$(OBJEXT) zip.$(OBJEXT) $(am__objects_1) gzip_OBJECTS = $(am_gzip_OBJECTS) am__DEPENDENCIES_1 = gzip_DEPENDENCIES = libver.a lib/libgzip.a $(am__DEPENDENCIES_1) @@ -275,7 +285,7 @@ am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/bits.Po ./$(DEPDIR)/deflate.Po \ ./$(DEPDIR)/dfltcc.Po ./$(DEPDIR)/gzip.Po \ - ./$(DEPDIR)/inflate.Po ./$(DEPDIR)/lzw.Po ./$(DEPDIR)/trees.Po \ + ./$(DEPDIR)/inflate.Po ./$(DEPDIR)/trees.Po \ ./$(DEPDIR)/unlzh.Po ./$(DEPDIR)/unlzw.Po \ ./$(DEPDIR)/unpack.Po ./$(DEPDIR)/unzip.Po ./$(DEPDIR)/util.Po \ ./$(DEPDIR)/version.Po ./$(DEPDIR)/zip.Po @@ -440,6 +450,8 @@ FLOAT_H = @FLOAT_H@ GETOPT_CDEFS_H = @GETOPT_CDEFS_H@ GETOPT_H = @GETOPT_H@ +GL_CFLAG_ALLOW_WARNINGS = @GL_CFLAG_ALLOW_WARNINGS@ +GL_CFLAG_GNULIB_WARNINGS = @GL_CFLAG_GNULIB_WARNINGS@ GL_GNULIB_ACCESS = @GL_GNULIB_ACCESS@ GL_GNULIB_ACOSF = @GL_GNULIB_ACOSF@ GL_GNULIB_ACOSL = @GL_GNULIB_ACOSL@ @@ -452,6 +464,7 @@ GL_GNULIB_ATANL = @GL_GNULIB_ATANL@ GL_GNULIB_ATOLL = @GL_GNULIB_ATOLL@ GL_GNULIB_BTOWC = @GL_GNULIB_BTOWC@ +GL_GNULIB_CALLOC_GNU = @GL_GNULIB_CALLOC_GNU@ GL_GNULIB_CALLOC_POSIX = @GL_GNULIB_CALLOC_POSIX@ GL_GNULIB_CANONICALIZE_FILE_NAME = @GL_GNULIB_CANONICALIZE_FILE_NAME@ GL_GNULIB_CBRT = @GL_GNULIB_CBRT@ @@ -522,6 +535,7 @@ GL_GNULIB_FMODF = @GL_GNULIB_FMODF@ GL_GNULIB_FMODL = @GL_GNULIB_FMODL@ GL_GNULIB_FOPEN = @GL_GNULIB_FOPEN@ +GL_GNULIB_FOPEN_GNU = @GL_GNULIB_FOPEN_GNU@ GL_GNULIB_FPRINTF = @GL_GNULIB_FPRINTF@ GL_GNULIB_FPRINTF_POSIX = @GL_GNULIB_FPRINTF_POSIX@ GL_GNULIB_FPURGE = @GL_GNULIB_FPURGE@ @@ -560,6 +574,7 @@ GL_GNULIB_GETOPT_POSIX = @GL_GNULIB_GETOPT_POSIX@ GL_GNULIB_GETPAGESIZE = @GL_GNULIB_GETPAGESIZE@ GL_GNULIB_GETPASS = @GL_GNULIB_GETPASS@ +GL_GNULIB_GETPASS_GNU = @GL_GNULIB_GETPASS_GNU@ GL_GNULIB_GETSUBOPT = @GL_GNULIB_GETSUBOPT@ GL_GNULIB_GETTIMEOFDAY = @GL_GNULIB_GETTIMEOFDAY@ GL_GNULIB_GETUMASK = @GL_GNULIB_GETUMASK@ @@ -605,6 +620,7 @@ GL_GNULIB_LOGL = @GL_GNULIB_LOGL@ GL_GNULIB_LSEEK = @GL_GNULIB_LSEEK@ GL_GNULIB_LSTAT = @GL_GNULIB_LSTAT@ +GL_GNULIB_MALLOC_GNU = @GL_GNULIB_MALLOC_GNU@ GL_GNULIB_MALLOC_POSIX = @GL_GNULIB_MALLOC_POSIX@ GL_GNULIB_MBRLEN = @GL_GNULIB_MBRLEN@ GL_GNULIB_MBRTOWC = @GL_GNULIB_MBRTOWC@ @@ -730,6 +746,7 @@ GL_GNULIB_READLINK = @GL_GNULIB_READLINK@ GL_GNULIB_READLINKAT = @GL_GNULIB_READLINKAT@ GL_GNULIB_REALLOCARRAY = @GL_GNULIB_REALLOCARRAY@ +GL_GNULIB_REALLOC_GNU = @GL_GNULIB_REALLOC_GNU@ GL_GNULIB_REALLOC_POSIX = @GL_GNULIB_REALLOC_POSIX@ GL_GNULIB_REALPATH = @GL_GNULIB_REALPATH@ GL_GNULIB_REMAINDER = @GL_GNULIB_REMAINDER@ @@ -804,6 +821,7 @@ GL_GNULIB_TANL = @GL_GNULIB_TANL@ GL_GNULIB_TIMEGM = @GL_GNULIB_TIMEGM@ GL_GNULIB_TIMESPEC_GET = @GL_GNULIB_TIMESPEC_GET@ +GL_GNULIB_TIMESPEC_GETRES = @GL_GNULIB_TIMESPEC_GETRES@ GL_GNULIB_TIME_R = @GL_GNULIB_TIME_R@ GL_GNULIB_TIME_RZ = @GL_GNULIB_TIME_RZ@ GL_GNULIB_TMPFILE = @GL_GNULIB_TMPFILE@ @@ -875,6 +893,7 @@ GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@ GNULIB_WARN_CFLAGS = @GNULIB_WARN_CFLAGS@ GREP = @GREP@ +GZIP_TRANSFORMED = @GZIP_TRANSFORMED@ HAVE_ACOSF = @HAVE_ACOSF@ HAVE_ACOSL = @HAVE_ACOSL@ HAVE_ALIGNED_ALLOC = @HAVE_ALIGNED_ALLOC@ @@ -1168,6 +1187,7 @@ HAVE_TANL = @HAVE_TANL@ HAVE_TIMEGM = @HAVE_TIMEGM@ HAVE_TIMESPEC_GET = @HAVE_TIMESPEC_GET@ +HAVE_TIMESPEC_GETRES = @HAVE_TIMESPEC_GETRES@ HAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@ HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ @@ -1229,6 +1249,7 @@ INT32_MAX_LT_INTMAX_MAX = @INT32_MAX_LT_INTMAX_MAX@ INT64_MAX_EQ_LONG_MAX = @INT64_MAX_EQ_LONG_MAX@ LDFLAGS = @LDFLAGS@ +LESS = @LESS@ LIBGZIP_LIBDEPS = @LIBGZIP_LIBDEPS@ LIBGZIP_LTLIBDEPS = @LIBGZIP_LTLIBDEPS@ LIBINTL = @LIBINTL@ @@ -1315,7 +1336,8 @@ REPLACE_ATAN2F = @REPLACE_ATAN2F@ REPLACE_ATANF = @REPLACE_ATANF@ REPLACE_BTOWC = @REPLACE_BTOWC@ -REPLACE_CALLOC = @REPLACE_CALLOC@ +REPLACE_CALLOC_FOR_CALLOC_GNU = @REPLACE_CALLOC_FOR_CALLOC_GNU@ +REPLACE_CALLOC_FOR_CALLOC_POSIX = @REPLACE_CALLOC_FOR_CALLOC_POSIX@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CBRTF = @REPLACE_CBRTF@ REPLACE_CBRTL = @REPLACE_CBRTL@ @@ -1325,6 +1347,7 @@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@ +REPLACE_COPY_FILE_RANGE = @REPLACE_COPY_FILE_RANGE@ REPLACE_COSF = @REPLACE_COSF@ REPLACE_COSHF = @REPLACE_COSHF@ REPLACE_CREAT = @REPLACE_CREAT@ @@ -1367,6 +1390,7 @@ REPLACE_FMODF = @REPLACE_FMODF@ REPLACE_FMODL = @REPLACE_FMODL@ REPLACE_FOPEN = @REPLACE_FOPEN@ +REPLACE_FOPEN_FOR_FOPEN_GNU = @REPLACE_FOPEN_FOR_FOPEN_GNU@ REPLACE_FPRINTF = @REPLACE_FPRINTF@ REPLACE_FPURGE = @REPLACE_FPURGE@ REPLACE_FREE = @REPLACE_FREE@ @@ -1391,6 +1415,7 @@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_GETPASS = @REPLACE_GETPASS@ +REPLACE_GETPASS_FOR_GETPASS_GNU = @REPLACE_GETPASS_FOR_GETPASS_GNU@ REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@ REPLACE_GMTIME = @REPLACE_GMTIME@ REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@ @@ -1429,7 +1454,8 @@ REPLACE_LOGL = @REPLACE_LOGL@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_LSTAT = @REPLACE_LSTAT@ -REPLACE_MALLOC = @REPLACE_MALLOC@ +REPLACE_MALLOC_FOR_MALLOC_GNU = @REPLACE_MALLOC_FOR_MALLOC_GNU@ +REPLACE_MALLOC_FOR_MALLOC_POSIX = @REPLACE_MALLOC_FOR_MALLOC_POSIX@ REPLACE_MBRLEN = @REPLACE_MBRLEN@ REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ REPLACE_MBSINIT = @REPLACE_MBSINIT@ @@ -1473,8 +1499,9 @@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_READLINKAT = @REPLACE_READLINKAT@ -REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALLOCARRAY = @REPLACE_REALLOCARRAY@ +REPLACE_REALLOC_FOR_REALLOC_GNU = @REPLACE_REALLOC_FOR_REALLOC_GNU@ +REPLACE_REALLOC_FOR_REALLOC_POSIX = @REPLACE_REALLOC_FOR_REALLOC_POSIX@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_REMAINDER = @REPLACE_REMAINDER@ REPLACE_REMAINDERF = @REPLACE_REMAINDERF@ @@ -1588,6 +1615,8 @@ WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINDOWS_STAT_TIMESPEC = @WINDOWS_STAT_TIMESPEC@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ +ZDIFF_TRANSFORMED = @ZDIFF_TRANSFORMED@ +ZGREP_TRANSFORMED = @ZGREP_TRANSFORMED@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -1610,8 +1639,10 @@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ +gl_LIBOBJDEPS = @gl_LIBOBJDEPS@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ +gltests_LIBOBJDEPS = @gltests_LIBOBJDEPS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ @@ -1645,7 +1676,8 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ALL_RECURSIVE_TARGETS = distcheck-hook -BUILT_SOURCES = version.c version.h +BUILT_SOURCES = version.c version.h $(am__append_2) $(am__append_4) \ + $(am__append_6) SUBDIRS = lib doc . tests AM_CPPFLAGS = -I$(top_srcdir)/lib AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) @@ -1655,8 +1687,12 @@ noinst_LIBRARIES = libver.a nodist_libver_a_SOURCES = version.c version.h DISTCLEANFILES = version.c version.h +@LESS_FALSE@ZLESS_MAN = +@LESS_TRUE@ZLESS_MAN = zless.1 +@LESS_FALSE@ZLESS_PROG = +@LESS_TRUE@ZLESS_PROG = zless man_MANS = gunzip.1 gzexe.1 gzip.1 \ - zcat.1 zcmp.1 zdiff.1 zforce.1 zgrep.1 zless.1 zmore.1 znew.1 + zcat.1 zcmp.1 zdiff.1 zforce.1 zgrep.1 $(ZLESS_MAN) zmore.1 znew.1 EXTRA_DIST = $(ACINCLUDE_INPUTS) $(man_MANS) \ ChangeLog-2007 \ @@ -1672,9 +1708,9 @@ noinst_HEADERS = gzip.h lzw.h bin_SCRIPTS = gunzip gzexe zcat zcmp zdiff \ - zegrep zfgrep zforce zgrep zless zmore znew + zegrep zfgrep zforce zgrep $(ZLESS_PROG) zmore znew -gzip_SOURCES = bits.c deflate.c gzip.c inflate.c lzw.c trees.c unlzh.c \ +gzip_SOURCES = bits.c deflate.c gzip.c inflate.c trees.c unlzh.c \ unlzw.c unpack.c unzip.c util.c zip.c $(am__append_1) gzip_LDADD = libver.a lib/libgzip.a $(LIB_CLOCK_GETTIME) SUFFIXES = .in @@ -1688,9 +1724,9 @@ $(top_srcdir)/ChangeLog $(top_srcdir)/configure $(top_srcdir)/gzip.c MAINTAINERCLEANFILES = gzip.doc -MOSTLYCLEANFILES = _match.i match_.s _match.S gzip.doc.gz \ - gunzip gzexe zcat zcmp zdiff zegrep zfgrep zforce zgrep zless zmore znew - +MOSTLYCLEANFILES = _match.i match_.s _match.S gzip.doc.gz gunzip gzexe \ + zcat zcmp zdiff zegrep zfgrep zforce zgrep zless zmore znew \ + $(am__append_3) $(am__append_5) $(am__append_7) all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive @@ -1830,7 +1866,6 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dfltcc.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gzip.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inflate.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lzw.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trees.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlzh.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlzw.Po@am__quote@ # am--include-marker @@ -2268,7 +2303,6 @@ -rm -f ./$(DEPDIR)/dfltcc.Po -rm -f ./$(DEPDIR)/gzip.Po -rm -f ./$(DEPDIR)/inflate.Po - -rm -f ./$(DEPDIR)/lzw.Po -rm -f ./$(DEPDIR)/trees.Po -rm -f ./$(DEPDIR)/unlzh.Po -rm -f ./$(DEPDIR)/unlzw.Po @@ -2330,7 +2364,6 @@ -rm -f ./$(DEPDIR)/dfltcc.Po -rm -f ./$(DEPDIR)/gzip.Po -rm -f ./$(DEPDIR)/inflate.Po - -rm -f ./$(DEPDIR)/lzw.Po -rm -f ./$(DEPDIR)/trees.Po -rm -f ./$(DEPDIR)/unlzh.Po -rm -f ./$(DEPDIR)/unlzw.Po @@ -2404,9 +2437,12 @@ $(AM_V_GEN)./gzip < $(srcdir)/gzip.doc >$@-t && mv $@-t $@ .in: $(AM_V_GEN)rm -f $@-t $@ \ - && sed \ + && sed \ -e 's|/bin/sh|$(SHELL)|g' \ -e 's|@GREP@|$(GREP)|g' \ + -e "s|'gzip'|$(GZIP_TRANSFORMED)|g" \ + -e "s|'zdiff'|$(ZDIFF_TRANSFORMED)|g" \ + -e "s|'zgrep'|$(ZGREP_TRANSFORMED)|g" \ -e 's|@VERSION@|$(VERSION)|g' \ $(srcdir)/$@.in >$@-t \ && chmod a=rx $@-t \ @@ -2469,6 +2505,21 @@ uninstall-local: remove-installed-links distcheck-hook: $(MAKE) my-distcheck +@GZIP_IS_TRANSFORMED_TRUE@$(GZIP_TRANSFORMED): +@GZIP_IS_TRANSFORMED_TRUE@ printf '%s\n' >'$@' \ +@GZIP_IS_TRANSFORMED_TRUE@ '#!$(SHELL)' \ +@GZIP_IS_TRANSFORMED_TRUE@ 'exec '\''$(abs_top_builddir)/gzip'\'' "$$@"' +@GZIP_IS_TRANSFORMED_TRUE@ chmod a+x $@ +@ZDIFF_IS_TRANSFORMED_TRUE@$(ZDIFF_TRANSFORMED): +@ZDIFF_IS_TRANSFORMED_TRUE@ printf '%s\n' >'$@' \ +@ZDIFF_IS_TRANSFORMED_TRUE@ '#!$(SHELL)' \ +@ZDIFF_IS_TRANSFORMED_TRUE@ 'exec '\''$(abs_top_builddir)/zdiff'\'' "$$@"' +@ZDIFF_IS_TRANSFORMED_TRUE@ chmod a+x $@ +@ZGREP_IS_TRANSFORMED_TRUE@$(ZGREP_TRANSFORMED): +@ZGREP_IS_TRANSFORMED_TRUE@ printf '%s\n' >'$@' \ +@ZGREP_IS_TRANSFORMED_TRUE@ '#!$(SHELL)' \ +@ZGREP_IS_TRANSFORMED_TRUE@ 'exec '\''$(abs_top_builddir)/zgrep'\'' "$$@"' +@ZGREP_IS_TRANSFORMED_TRUE@ chmod a+x $@ # Tell versions 3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded.
View file
_service:tar_scm:gzip-1.11.tar.xz/NEWS -> _service:tar_scm:gzip-1.12.tar.xz/NEWS
Changed
@@ -1,5 +1,34 @@ GNU gzip NEWS -*- outline -*- +* Noteworthy changes in release 1.12 (2022-04-07) stable + +** Changes in behavior + + 'gzip -l' no longer misreports file lengths 4 GiB and larger. + Previously, 'gzip -l' output the 32-bit value stored in the gzip + header even though that is the uncompressed length modulo 2**32. + Now, 'gzip -l' calculates the uncompressed length by decompressing + the data and counting the resulting bytes. Although this can take + much more time, nowadays the correctness pros seem to outweigh the + performance cons. + + 'zless' is no longer installed on platforms lacking 'less'. + +** Bug fixes + + zgrep applied to a crafted file name with two or more newlines + can no longer overwrite an arbitrary, attacker-selected file. + bug introduced in gzip-1.3.10 + + zgrep now names input file on error instead of mislabeling it as + "(standard input)", if grep supports the GNU -H and --label options. + + 'zdiff -C 5' no longer misbehaves by treating '5' as a file name. + bug present since the beginning + + Configure-time options like --program-prefix now work. + + * Noteworthy changes in release 1.11 (2021-09-03) stable ** Performance improvements @@ -545,7 +574,7 @@ ======================================================================== -Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2021 Free Software Foundation, +Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly
View file
_service:tar_scm:gzip-1.11.tar.xz/README -> _service:tar_scm:gzip-1.12.tar.xz/README
Changed
@@ -115,7 +115,7 @@ ======================================================================== -Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2021 Free Software Foundation, +Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly
View file
_service:tar_scm:gzip-1.11.tar.xz/THANKS -> _service:tar_scm:gzip-1.12.tar.xz/THANKS
Changed
@@ -85,7 +85,7 @@ Alexander Fraser alex@cs.umb.edu Noah Friedman friedman@gnu.ai.mit.edu Bob Friesenhahn bfriesen@iphase.com -Gerhard Friesland-Koepke frieslan@rzdspc3.informatik.uni-hamburg.de +Gerhard Friesland-Köpke frieslan@rzdspc3.informatik.uni-hamburg.de Andy Fyfe andy@scp.caltech.edu Geoff geoff@frs.faxon.com Arnd Gerns gerns@informatik.uni-hildesheim.de @@ -99,7 +99,7 @@ Mark Hanning-Lee markhl@romeo.caltech.edu Lars Hecking st000002@hrz1.hrz.th-darmstadt.de Aki Helin aki.helin@iki.fi -Ruediger Helsch ruediger@ramz.ing.tu-bs.de +Rüdiger Helsch ruediger@ramz.ing.tu-bs.de Mark C. Henderson mch@sqwest.wimsey.bc.ca Karl Heuer karl@kelp.boston.ma.us Jarkko Hietaniemi jhi@dol-guldur.hut.fi @@ -139,8 +139,8 @@ Wilhelm B. Kloke wb@ifado.arb-phys.uni-dortmund.de Tom Kloos tk@sequent.com Carsten Koch carsten.koch@icem.de -Winfried Koenig win@in.rhein-main.de -Mathias Koerber mathias@solomon.technet.sg +Winfried König win@in.rhein-main.de +Mathias Körber mathias@solomon.technet.sg Steph Konigsdorfer s.konigsdorfer@frmy.bull.fr Leif Kornstaedt leif@rumtifsl.ruessel.sub.org Michael D. Lawler mdlawler@bsu-cs.bsu.edu @@ -177,14 +177,14 @@ Luke Mewburn zak@rmit.edu.au Jim Meyering meyering@cs.utexas.edu Dragan Milicic milicic@math.utah.edu -Frederic Miserey none.fred@applelink.apple.com +Frédéric Miserey none.fred@applelink.apple.com Marcel J.E. Mol marcel@duteca.et.tudelft.nl Soren Juul Moller sjm@dde.dk Chris Moore moore@src.bae.co.uk Dan Mosedale mosedale@genome.stanford.edu -Helmut Muelner hmuelner@fiicmds04.tu-graz.ac.at -Urban D Mueller umueller@amiga.physik.unizh.ch -Ulrich Mueller ulm@vsnhdb.cern.ch +Helmut Mülner hmuelner@fiicmds04.tu-graz.ac.at +Urban D Müller umueller@amiga.physik.unizh.ch +Ulrich Müller ulm@vsnhdb.cern.ch Timothy Murphy tim@maths.tcd.ie Greg Naber greg@squally.halcyon.com Jay Nayegandhi jayng@bbiv02.enet.dec.com @@ -202,12 +202,12 @@ Hal Peterson hrp@pecan.cray.com Pascal Petit petit@cadillac.ibp.fr Bruno Pillard bp@chorus.fr -Franc,ois Pinard pinard@iro.umontreal.ca +François Pinard pinard@iro.umontreal.ca Jay Pinkos pinkos@butyng.bu.edu Petr Písař petr.pisar@atlas.cz Thomas Plass thomas@cogsci.ed.ac.uk Mike Polo mikep@cfsmo.honeywell.com -Francesco Potorti pot@fly.cnuce.cnr.it +Francesco Potortì pot@fly.cnuce.cnr.it Will Priest bpriest@lobby.ti.com David Purves purves@apogee.com Andreas Raab ar@nvmr.robin.de @@ -275,7 +275,7 @@ Jochen Wiedmann zrawi01@zmcipdec1.zdv.uni-tuebingen.de Gijsb. Wiesenekker wiesenecker@sara.nl Wietze van Winden wietze@swi.psy.uva.nl -Frank Wuebbeling wuebbel@math.uni-muenster.de +Frank Wübbeling wuebbel@math.uni-muenster.de Larry W. Virden lwv26@cas.org Bill Wohler wohler@sap-ag.de Jamie Zawinski jwz@lucid.com
View file
_service:tar_scm:gzip-1.11.tar.xz/TODO -> _service:tar_scm:gzip-1.12.tar.xz/TODO
Changed
@@ -69,7 +69,7 @@ ======================================================================== -Copyright (C) 1999, 2001, 2006, 2009-2021 Free Software Foundation, Inc. +Copyright (C) 1999, 2001, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly Permission is granted to copy, distribute and/or modify this document
View file
_service:tar_scm:gzip-1.11.tar.xz/aclocal.m4 -> _service:tar_scm:gzip-1.12.tar.xz/aclocal.m4
Changed
@@ -559,6 +559,43 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd` ) +# AM_COND_IF -*- Autoconf -*- + +# Copyright (C) 2008-2021 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_COND_IF +# _AM_COND_ELSE +# _AM_COND_ENDIF +# -------------- +# These macros are only used for tracing. +m4_define(_AM_COND_IF) +m4_define(_AM_COND_ELSE) +m4_define(_AM_COND_ENDIF) + +# AM_COND_IF(COND, IF-TRUE, IF-FALSE) +# --------------------------------------- +# If the shell condition COND is true, execute IF-TRUE, otherwise execute +# IF-FALSE. Allow automake to learn about conditional instantiating macros +# (the AC_CONFIG_FOOS). +AC_DEFUN(AM_COND_IF, +m4_ifndef(_AM_COND_VALUE_$1, + m4_fatal($0: no such condition "$1"))dnl +_AM_COND_IF($1)dnl +if test -z "$$1_TRUE"; then : + m4_n($2)dnl +m4_ifval($3, +_AM_COND_ELSE($1)dnl +else + $3 +)dnl +_AM_COND_ENDIF($1)dnl +fidnl +) + # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2021 Free Software Foundation, Inc. @@ -1640,7 +1677,6 @@ m4_include(m4/fseeko.m4) m4_include(m4/fseterr.m4) m4_include(m4/fstat.m4) -m4_include(m4/fstatat.m4) m4_include(m4/fsync.m4) m4_include(m4/ftell.m4) m4_include(m4/ftello.m4)
View file
_service:tar_scm:gzip-1.11.tar.xz/bits.c -> _service:tar_scm:gzip-1.12.tar.xz/bits.c
Changed
@@ -1,6 +1,6 @@ /* bits.c -- output variable-length bit strings - Copyright (C) 1999, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1999, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify @@ -78,6 +78,9 @@ local file_t zfile; /* output gzip file */ +#ifndef IBM_Z_DFLTCC +static +#endif unsigned short bi_buf; /* Output buffer. bits are inserted starting at the bottom (least significant * bits). @@ -88,6 +91,9 @@ * more than 16 bits on some systems.) */ +#ifndef IBM_Z_DFLTCC +static +#endif int bi_valid; /* Number of valid bits in bi_buf. All bits above the last valid bit * are always zero.
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/announce-gen -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/announce-gen
Changed
@@ -3,7 +3,7 @@ # Generate a release announcement message. -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,13 +35,13 @@ eval 'exec perl -wSx "$0" "$@"' if 0; -my $VERSION = '2021-08-04 09:17'; # UTC +my $VERSION = '2022-03-14 10:08'; # UTC # The definition above must lie within the first 8 lines in order # for the Emacs time-stamp write hook (at end) to update it. # If you change this file with Emacs, please let the write hook # do its job. Otherwise, update this string manually. -my $copyright_year = '2021'; +my $copyright_year = '2022'; use strict; use Getopt::Long; @@ -90,6 +90,10 @@ VERSION is the result of running git describe in the gnulib source directory. required if gnulib is in TOOL_LIST. + --gpg-key-email=EMAIL The email address of the key used to + sign the tarballs + --gpg-keyring-url=URL URL pointing to keyring containing the key used + to sign the tarballs --no-print-checksums do not emit SHA1 or SHA256 checksums --archive-suffix=SUF add SUF to the list of archive suffixes --mail-headers=HEADERS a space-separated list of mail headers, e.g., @@ -377,6 +381,8 @@ my $bootstrap_tools; my $gnulib_version; my $print_checksums_p = 1; + my $gpg_key_email; + my $gpg_keyring_url; # Reformat the warnings before displaying them. local $SIG{__WARN__} = sub @@ -395,6 +401,8 @@ 'previous-version=s' => \$prev_version, 'current-version=s' => \$curr_version, 'gpg-key-id=s' => \$gpg_key_id, + 'gpg-key-email=s' => \$gpg_key_email, + 'gpg-keyring-url=s' => \$gpg_keyring_url, 'url-directory=s' => \@url_dir_list, 'news=s' => \@news_file, 'srcdir=s' => \$srcdir, @@ -534,12 +542,25 @@ gpg --verify $tarballs0.sig If that command fails because you don't have the required public key, -then run this command to import it: +or that public key has expired, try the following commands to update +or refresh it, and then rerun the 'gpg --verify' command. +EOF + if ($gpg_key_email) { + print <<EOF; - gpg --keyserver keys.gnupg.net --recv-keys $gpg_key_id + gpg --locate-external-key $gpg_key_email +EOF + } + print <<EOF; -and rerun the 'gpg --verify' command. + gpg --recv-keys $gpg_key_id EOF + if ($gpg_keyring_url) { + print <<EOF; + + wget -q -O- '$gpg_keyring_url' | gpg --import - +EOF + } my @tool_versions = get_tool_versions (\@tool_list, $gnulib_version); @tool_versions
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/config.guess -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/config.guess
Changed
@@ -1,14 +1,14 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2021 Free Software Foundation, Inc. +# Copyright 1992-2022 Free Software Foundation, Inc. # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2021-06-03' +timestamp='2022-01-09' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -60,7 +60,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2021 Free Software Foundation, Inc. +Copyright 1992-2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -437,7 +437,7 @@ # This test works for both compilers. if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ - (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + (CCOPTS="" $CC_FOR_BUILD -m64 -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH=x86_64 @@ -929,6 +929,9 @@ i*:PW*:*) GUESS=$UNAME_MACHINE-pc-pw32 ;; + *:SerenityOS:*:*) + GUESS=$UNAME_MACHINE-pc-serenity + ;; *:Interix*:*) case $UNAME_MACHINE in x86) @@ -1522,6 +1525,9 @@ i*86:rdos:*:*) GUESS=$UNAME_MACHINE-pc-rdos ;; + i*86:Fiwix:*:*) + GUESS=$UNAME_MACHINE-pc-fiwix + ;; *:AROS:*:*) GUESS=$UNAME_MACHINE-unknown-aros ;;
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/config.sub -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/config.sub
Changed
@@ -4,11 +4,11 @@ # shellcheck disable=SC2006,SC2268 # see below for rationale -timestamp='2021-08-14' +timestamp='2021-12-25' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -1020,6 +1020,11 @@ ;; # Here we normalize CPU types with a missing or matching vendor + armh-unknown | armh-alt) + cpu=armv7l + vendor=alt + basic_os=${basic_os:-linux-gnueabihf} + ;; dpx20-unknown | dpx20-bull) cpu=rs6000 vendor=bull @@ -1121,7 +1126,7 @@ xscale-* | xscaleebl-*) cpu=`echo "$cpu" | sed 's/^xscale/arm/'` ;; - arm64-*) + arm64-* | aarch64le-*) cpu=aarch64 ;; @@ -1304,7 +1309,7 @@ if test x$basic_os != x then -# First recognize some ad-hoc caes, or perhaps split kernel-os, or else just +# First recognize some ad-hoc cases, or perhaps split kernel-os, or else just # set os. case $basic_os in gnu/linux*) @@ -1748,7 +1753,8 @@ | skyos* | haiku* | rdos* | toppers* | drops* | es* \ | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \ | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \ - | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr*) + | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \ + | fiwix* ) ;; # This one is extra strict with allowed versions sco3.2v2 | sco3.2v4-9* | sco5v6*)
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/depcomp -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/depcomp
Changed
@@ -3,7 +3,7 @@ scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1999-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -113,7 +113,6 @@ # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz -digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/do-release-commit-and-tag -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/do-release-commit-and-tag
Changed
@@ -7,7 +7,7 @@ # Note: this is a bash script (could be zsh or dash) -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/gendocs.sh -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/gendocs.sh
Changed
@@ -2,13 +2,13 @@ # gendocs.sh -- generate a GNU manual in many formats. This script is # mentioned in maintain.texi. See the help message below for usage details. -scriptversion=2021-07-19.18 +scriptversion=2022-01-01.00 -# Copyright 2003-2021 Free Software Foundation, Inc. +# Copyright 2003-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, @@ -73,7 +73,7 @@ version="gendocs.sh $scriptversion -Copyright 2021 Free Software Foundation, Inc. +Copyright 2022 Free Software Foundation, Inc. There is NO warranty. You may redistribute this software under the terms of the GNU General Public License. For more information about these matters, see the files named COPYING."
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/git-version-gen -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/git-version-gen
Changed
@@ -1,12 +1,12 @@ #!/bin/sh # Print a version string. -scriptversion=2019-10-13.15; # UTC +scriptversion=2022-01-27.18; # UTC -# Copyright (C) 2007-2021 Free Software Foundation, Inc. +# Copyright (C) 2007-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, @@ -65,9 +65,10 @@ # EXTRA_DIST = $(top_srcdir)/.version # BUILT_SOURCES = $(top_srcdir)/.version # $(top_srcdir)/.version: -# echo $(VERSION) > $@-t && mv $@-t $@ +# echo '$(VERSION)' > $@-t +# mv $@-t $@ # dist-hook: -# echo $(VERSION) > $(distdir)/.tarball-version +# echo '$(VERSION)' > $(distdir)/.tarball-version me=$0
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/gitlog-to-changelog -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/gitlog-to-changelog
Changed
@@ -3,7 +3,7 @@ # Convert git log output to ChangeLog format. -# Copyright (C) 2008-2021 Free Software Foundation, Inc. +# Copyright (C) 2008-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ eval 'exec perl -wSx "$0" "$@"' if 0; -my $VERSION = '2021-02-24 23:42'; # UTC +my $VERSION = '2022-01-27 18:49'; # UTC # The definition above must lie within the first 8 lines in order # for the Emacs time-stamp write hook (at end) to update it. # If you change this file with Emacs, please let the write hook
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/gnu-web-doc-update -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/gnu-web-doc-update
Changed
@@ -2,9 +2,9 @@ # Run this after each non-alpha release, to update the web documentation at # https://www.gnu.org/software/$pkg/manual/ -VERSION=2021-01-09.09; # UTC +VERSION=2022-01-27.18; # UTC -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/gnupload -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/gnupload
Changed
@@ -1,9 +1,9 @@ #!/bin/sh # Sign files and upload them. -scriptversion=2021-04-11.09; # UTC +scriptversion=2022-01-27.18; # UTC -# Copyright (C) 2004-2021 Free Software Foundation, Inc. +# Copyright (C) 2004-2022 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/mdate-sh -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/mdate-sh
Changed
@@ -3,7 +3,7 @@ scriptversion=2018-03-07.03; # UTC -# Copyright (C) 1995-2021 Free Software Foundation, Inc. +# Copyright (C) 1995-2022 Free Software Foundation, Inc. # written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995 # # This program is free software; you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/texinfo.tex -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/texinfo.tex
Changed
@@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2021-04-25.21} +\def\texinfoversion{2022-01-02.12} % % Copyright 1985, 1986, 1988, 1990-2021 Free Software Foundation, Inc. % @@ -3193,14 +3193,9 @@ % \kern-0.4pt\hrule}% % \kern-.06em\raise0.4pt\hbox{\angleright}}}} -% definition of @key with no lozenge. If the current font is already -% monospace, don't change it; that way, we respect @kbdinputstyle. But -% if it isn't monospace, then use \tt. -% -\def\key#1{{\setregularquotes - \nohyphenation - \ifmonospace\else\tt\fi - #1}\null} +% definition of @key with no lozenge. +% +\def\key#1{{\setregularquotes \nohyphenation \tt #1}\null} % @clicksequence{File @click{} Open ...} \def\clicksequence#1{\begingroup #1\endgroup} @@ -3614,6 +3609,9 @@ \def\quotedblbase{{\ecfont \char"12}} \def\quotesinglbase{{\ecfont \char"0D}} % +\def\L{{\ecfont \char"8A}} % L with stroke +\def\l{{\ecfont \char"AA}} % l with stroke +% % This positioning is not perfect (see the ogonek LaTeX package), but % we have the precomposed glyphs for the most common cases. We put the % tests to use those glyphs in the single \ogonek macro so we have fewer @@ -7592,6 +7590,7 @@ % \def\printdefunline#1#2{% \begingroup + \plainfrenchspacing % call \deffnheader: #1#2 \endheader % common ending: @@ -9402,7 +9401,7 @@ \fi\fi % \ifimagevmode - \nobreak\medskip + \medskip % Usually we'll have text after the image which will insert % \parskip glue, so insert it here too to equalize the space % above and below. @@ -11244,23 +11243,6 @@ \defbodyindent = .5cm }} -% Use @smallerbook to reset parameters for 6x9 trim size. -% (Just testing, parameters still in flux.) -\def\smallerbook{{\globaldefs = 1 - \parskip = 1.5pt plus 1pt - \textleading = 12pt - % - \internalpagesizes{7.4in}{4.8in}% - {-.2in}{-.4in}% - {0pt}{14pt}% - {9in}{6in}% - % - \lispnarrowing = 0.25in - \tolerance = 700 - \contentsrightmargin = 0pt - \defbodyindent = .4cm -}} - % Use @afourpaper to print on European A4 paper. \def\afourpaper{{\globaldefs = 1 \parskip = 3pt plus 2pt minus 1pt @@ -11599,11 +11581,9 @@ @setregularquotes @c Local variables: -@c eval: (add-hook 'before-save-hook 'time-stamp) +@c eval: (add-hook 'before-save-hook 'time-stamp nil t) +@c time-stamp-pattern: "texinfoversion{%Y-%02m-%02d.%02H}" @c page-delimiter: "^\\\\message\\|emacs-page" -@c time-stamp-start: "def\\\\texinfoversion{" -@c time-stamp-format: "%:y-%02m-%02d.%02H" -@c time-stamp-end: "}" @c End: @c vim:sw=2:
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/update-copyright -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/update-copyright
Changed
@@ -3,11 +3,11 @@ # Update an FSF copyright year list to include the current year. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) +# the Free Software Foundation, either version 3, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/useless-if-before-free -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/useless-if-before-free
Changed
@@ -4,7 +4,7 @@ # Detect instances of "if (p) free (p);". # Likewise "if (p != 0)", "if (0 != p)", or with NULL; and with braces. -# Copyright (C) 2008-2021 Free Software Foundation, Inc. +# Copyright (C) 2008-2022 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -36,13 +36,13 @@ eval 'exec perl -wSx "$0" "$@"' if 0; -my $VERSION = '2021-04-11 10:11'; # UTC +my $VERSION = '2022-01-27 18:51'; # UTC # The definition above must lie within the first 8 lines in order # for the Emacs time-stamp write hook (at end) to update it. # If you change this file with Emacs, please let the write hook # do its job. Otherwise, update this string manually. -my $copyright_year = '2021'; +my $copyright_year = '2022'; use strict; use warnings;
View file
_service:tar_scm:gzip-1.11.tar.xz/build-aux/vc-list-files -> _service:tar_scm:gzip-1.12.tar.xz/build-aux/vc-list-files
Changed
@@ -4,7 +4,7 @@ # Print a version string. scriptversion=2018-03-07.03; # UTC -# Copyright (C) 2006-2021 Free Software Foundation, Inc. +# Copyright (C) 2006-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/cfg.mk -> _service:tar_scm:gzip-1.12.tar.xz/cfg.mk
Changed
@@ -1,5 +1,5 @@ # Customize maint.mk -*- makefile -*- -# Copyright (C) 2003-2021 Free Software Foundation, Inc. +# Copyright (C) 2003-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,6 +30,7 @@ sc_bindtextdomain \ sc_error_message_period \ sc_error_message_uppercase \ + sc_indent \ sc_program_name \ sc_texinfo_acronym @@ -39,7 +40,7 @@ # Now that we have better tests, make this the default. export VERBOSE = yes -old_NEWS_hash = 1ce6c7d07ba875c0b3b69a466cd8cd84 +old_NEWS_hash = 525410f95ea9d830850d7a6900e6d229 sc_obs_header_regex = \ \<(STDC_HEADERS|HAVE_(LIMITS|STRING|UNISTD|STDLIB)_H)\>
View file
_service:tar_scm:gzip-1.11.tar.xz/configure -> _service:tar_scm:gzip-1.12.tar.xz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for gzip 1.11. +# Generated by GNU Autoconf 2.71 for gzip 1.12. # # Report bugs to <bug-gzip@gnu.org>. # @@ -611,8 +611,8 @@ # Identity of this package. PACKAGE_NAME='gzip' PACKAGE_TARNAME='gzip' -PACKAGE_VERSION='1.11' -PACKAGE_STRING='gzip 1.11' +PACKAGE_VERSION='1.12' +PACKAGE_STRING='gzip 1.12' PACKAGE_BUGREPORT='bug-gzip@gnu.org' PACKAGE_URL='' @@ -653,14 +653,25 @@ gl_use_winpthreads_default= ac_func_c_list= gl_getopt_required=POSIX -ac_subst_vars='gltests_LTLIBOBJS +ac_subst_vars='gltests_LIBOBJDEPS +gltests_LTLIBOBJS gltests_LIBOBJS +gl_LIBOBJDEPS gl_LTLIBOBJS gl_LIBOBJS CONFIG_INCLUDE am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS +ZGREP_IS_TRANSFORMED_FALSE +ZGREP_IS_TRANSFORMED_TRUE +ZDIFF_IS_TRANSFORMED_FALSE +ZDIFF_IS_TRANSFORMED_TRUE +GZIP_IS_TRANSFORMED_FALSE +GZIP_IS_TRANSFORMED_TRUE +ZGREP_TRANSFORMED +ZDIFF_TRANSFORMED +GZIP_TRANSFORMED ASFLAGS_config LIBOBJS ASCPPFLAGS @@ -672,7 +683,17 @@ WERROR_CFLAGS LIBGZIP_LTLIBDEPS LIBGZIP_LIBDEPS +GL_CFLAG_GNULIB_WARNINGS +GL_CFLAG_ALLOW_WARNINGS gltests_WITNESS +GL_COND_OBJ_WINDOWS_RWLOCK_FALSE +GL_COND_OBJ_WINDOWS_RWLOCK_TRUE +GL_COND_OBJ_WINDOWS_RECMUTEX_FALSE +GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE +GL_COND_OBJ_WINDOWS_ONCE_FALSE +GL_COND_OBJ_WINDOWS_ONCE_TRUE +GL_COND_OBJ_WINDOWS_MUTEX_FALSE +GL_COND_OBJ_WINDOWS_MUTEX_TRUE GL_GNULIB_MDA_WCSDUP GL_GNULIB_WCSFTIME GL_GNULIB_WCSWIDTH @@ -781,8 +802,14 @@ NEXT_UTIME_H GL_GNULIB_MDA_UTIME GL_GNULIB_UTIME +GL_COND_OBJ_UTIME_FALSE +GL_COND_OBJ_UTIME_TRUE REPLACE_UTIME HAVE_UTIME +GL_COND_OBJ_UNLINKAT_FALSE +GL_COND_OBJ_UNLINKAT_TRUE +GL_COND_OBJ_UNLINK_FALSE +GL_COND_OBJ_UNLINK_TRUE HAVE_UNISTD_H NEXT_AS_FIRST_DIRECTIVE_UNISTD_H NEXT_UNISTD_H @@ -790,6 +817,7 @@ GL_GNULIB_TZSET GL_GNULIB_TIME_RZ GL_GNULIB_TIME_R +GL_GNULIB_TIMESPEC_GETRES GL_GNULIB_TIMESPEC_GET GL_GNULIB_TIMEGM GL_GNULIB_STRPTIME @@ -816,6 +844,7 @@ REPLACE_LOCALTIME_R REPLACE_CTIME HAVE_TIMEZONE_T +HAVE_TIMESPEC_GETRES HAVE_TIMESPEC_GET HAVE_TIMEGM HAVE_STRPTIME @@ -823,35 +852,66 @@ HAVE_DECL_LOCALTIME_R NEXT_AS_FIRST_DIRECTIVE_STRING_H NEXT_STRING_H +GL_COND_OBJ_STRERROR_OVERRIDE_FALSE +GL_COND_OBJ_STRERROR_OVERRIDE_TRUE +GL_COND_OBJ_STRERROR_FALSE +GL_COND_OBJ_STRERROR_TRUE +GL_COND_OBJ_STRDUP_FALSE +GL_COND_OBJ_STRDUP_TRUE +GL_COND_OBJ_STPCPY_FALSE +GL_COND_OBJ_STPCPY_TRUE GL_GENERATE_STDNORETURN_H_FALSE GL_GENERATE_STDNORETURN_H_TRUE STDNORETURN_H NEXT_AS_FIRST_DIRECTIVE_STDLIB_H NEXT_STDLIB_H +GL_COND_OBJ_STDIO_WRITE_FALSE +GL_COND_OBJ_STDIO_WRITE_TRUE +GL_COND_OBJ_STDIO_READ_FALSE +GL_COND_OBJ_STDIO_READ_TRUE NEXT_AS_FIRST_DIRECTIVE_STDIO_H NEXT_STDIO_H -NEXT_AS_FIRST_DIRECTIVE_STDDEF_H -NEXT_STDDEF_H +GL_GENERATE_STDINT_H_FALSE +GL_GENERATE_STDINT_H_TRUE +STDINT_H GL_GENERATE_STDDEF_H_FALSE GL_GENERATE_STDDEF_H_TRUE STDDEF_H +NEXT_AS_FIRST_DIRECTIVE_STDDEF_H +NEXT_STDDEF_H HAVE_WCHAR_T HAVE_MAX_ALIGN_T REPLACE_NULL -HAVE__BOOL GL_GENERATE_STDBOOL_H_FALSE GL_GENERATE_STDBOOL_H_TRUE STDBOOL_H +HAVE__BOOL GL_GENERATE_STDALIGN_H_FALSE GL_GENERATE_STDALIGN_H_TRUE STDALIGN_H +GL_COND_OBJ_STAT_FALSE +GL_COND_OBJ_STAT_TRUE +GL_COND_OBJ_SIGPROCMASK_FALSE +GL_COND_OBJ_SIGPROCMASK_TRUE +GL_COND_OBJ_SIGNBIT3_FALSE +GL_COND_OBJ_SIGNBIT3_TRUE NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H NEXT_SIGNAL_H +GL_COND_OBJ_SIGACTION_FALSE +GL_COND_OBJ_SIGACTION_TRUE +GL_COND_OBJ_RMDIR_FALSE +GL_COND_OBJ_RMDIR_TRUE +GL_COND_OBJ_REALLOCARRAY_FALSE +GL_COND_OBJ_REALLOCARRAY_TRUE +GL_COND_OBJ_READDIR_FALSE +GL_COND_OBJ_READDIR_TRUE GL_GNULIB_SIGACTION GL_GNULIB_SIGPROCMASK GL_GNULIB_SIGNAL_H_SIGPIPE GL_GNULIB_RAISE GL_GNULIB_PTHREAD_SIGMASK +GL_COND_OBJ_RAISE_FALSE +GL_COND_OBJ_RAISE_TRUE REPLACE_RAISE REPLACE_PTHREAD_SIGMASK HAVE_SIGHANDLER_T @@ -864,6 +924,24 @@ HAVE_PTHREAD_SIGMASK HAVE_POSIX_SIGNALBLOCKING ASM_SYMBOL_PREFIX +GL_COND_OBJ_PIPE_FALSE +GL_COND_OBJ_PIPE_TRUE +GL_COND_OBJ_PERROR_FALSE +GL_COND_OBJ_PERROR_TRUE +GL_COND_OBJ_OPENDIR_FALSE +GL_COND_OBJ_OPENDIR_TRUE +GL_COND_OBJ_OPENAT_FALSE +GL_COND_OBJ_OPENAT_TRUE +GL_COND_OBJ_OPEN_FALSE +GL_COND_OBJ_OPEN_TRUE +GL_COND_OBJ_MSVC_NOTHROW_FALSE +GL_COND_OBJ_MSVC_NOTHROW_TRUE +GL_COND_OBJ_MSVC_INVAL_FALSE +GL_COND_OBJ_MSVC_INVAL_TRUE +GL_COND_OBJ_MEMRCHR_FALSE +GL_COND_OBJ_MEMRCHR_TRUE +GL_COND_OBJ_MEMPCPY_FALSE +GL_COND_OBJ_MEMPCPY_TRUE GL_GNULIB_MDA_STRDUP GL_GNULIB_MDA_MEMCCPY GL_GNULIB_STRVERSCMP @@ -907,6 +985,8 @@ GL_GNULIB_FFSLL GL_GNULIB_FFSL GL_GNULIB_EXPLICIT_BZERO +GL_COND_OBJ_MEMCHR_FALSE +GL_COND_OBJ_MEMCHR_TRUE UNDEFINE_STRTOK_R REPLACE_STRSIGNAL REPLACE_STRERRORNAME_NP @@ -951,6 +1031,10 @@ NEXT_AS_FIRST_DIRECTIVE_MATH_H NEXT_MATH_H SED +GL_COND_OBJ_LSTAT_FALSE +GL_COND_OBJ_LSTAT_TRUE +GL_COND_OBJ_LSEEK_FALSE +GL_COND_OBJ_LSEEK_TRUE LTLIBMULTITHREAD LIBMULTITHREAD LTLIBTHREAD @@ -959,6 +1043,9 @@ LIB_SCHED_YIELD LIBPMULTITHREAD LIBPTHREAD +GL_GENERATE_LIMITS_H_FALSE +GL_GENERATE_LIMITS_H_TRUE +LIMITS_H IGNORE_UNUSED_LIBRARIES_CFLAGS GL_GNULIB_STRTOUMAX GL_GNULIB_STRTOIMAX @@ -978,9 +1065,6 @@ HAVE_DECL_STRTOIMAX HAVE_DECL_IMAXDIV HAVE_DECL_IMAXABS -GL_GENERATE_STDINT_H_FALSE -GL_GENERATE_STDINT_H_TRUE -STDINT_H HAVE_SYS_INTTYPES_H HAVE_SYS_BITYPES_H HAVE_C99_STDINT_H @@ -1003,14 +1087,13 @@ HAVE_SYS_TYPES_H HAVE_INTTYPES_H HAVE_WCHAR_H -GL_GENERATE_LIMITS_H_FALSE -GL_GENERATE_LIMITS_H_TRUE -LIMITS_H NEXT_AS_FIRST_DIRECTIVE_LIMITS_H NEXT_LIMITS_H GNU_MAKE_FALSE GNU_MAKE_TRUE GL_GNULIB_GETTIMEOFDAY +GL_COND_OBJ_GETTIMEOFDAY_FALSE +GL_COND_OBJ_GETTIMEOFDAY_TRUE NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H NEXT_SYS_TIME_H REPLACE_STRUCT_TIMEVAL @@ -1020,12 +1103,28 @@ HAVE_GETTIMEOFDAY LTLIBINTL LIBINTL +GL_COND_OBJ_GETOPT_FALSE +GL_COND_OBJ_GETOPT_TRUE +GL_GENERATE_GETOPT_CDEFS_H_FALSE +GL_GENERATE_GETOPT_CDEFS_H_TRUE GETOPT_CDEFS_H +GL_GENERATE_GETOPT_H_FALSE +GL_GENERATE_GETOPT_H_TRUE GETOPT_H HAVE_SYS_CDEFS_H HAVE_GETOPT_H NEXT_AS_FIRST_DIRECTIVE_GETOPT_H NEXT_GETOPT_H +GL_COND_OBJ_GETDTABLESIZE_FALSE +GL_COND_OBJ_GETDTABLESIZE_TRUE +GL_COND_OBJ_GETCWD_LGPL_FALSE +GL_COND_OBJ_GETCWD_LGPL_TRUE +GL_COND_OBJ_FTELLO_FALSE +GL_COND_OBJ_FTELLO_TRUE +GL_COND_OBJ_FTELL_FALSE +GL_COND_OBJ_FTELL_TRUE +GL_COND_OBJ_FSYNC_FALSE +GL_COND_OBJ_FSYNC_TRUE GL_GNULIB_MDA_UMASK GL_GNULIB_MDA_MKDIR GL_GNULIB_MDA_CHMOD @@ -1049,6 +1148,8 @@ WINDOWS_STAT_TIMESPEC NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H NEXT_SYS_STAT_H +GL_COND_OBJ_FSTAT_FALSE +GL_COND_OBJ_FSTAT_TRUE REPLACE_UTIMENSAT REPLACE_STAT REPLACE_MKNODAT @@ -1073,6 +1174,12 @@ HAVE_FUTIMENS HAVE_FSTATAT HAVE_FCHMODAT +GL_COND_OBJ_FSETERR_FALSE +GL_COND_OBJ_FSETERR_TRUE +GL_COND_OBJ_FSEEKO_FALSE +GL_COND_OBJ_FSEEKO_TRUE +GL_COND_OBJ_FSEEK_FALSE +GL_COND_OBJ_FSEEK_TRUE WINDOWS_STAT_INODES WINDOWS_64_BIT_OFF_T NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H @@ -1353,16 +1460,30 @@ HAVE_ASINF HAVE_ACOSL HAVE_ACOSF +GL_COND_OBJ_FREE_FALSE +GL_COND_OBJ_FREE_TRUE +GL_COND_OBJ_FPURGE_FALSE +GL_COND_OBJ_FPURGE_TRUE HAVE_FEATURES_H GNULIBHEADERS_OVERRIDE_WINT_T APPLE_UNIVERSAL_BUILD HAVE_SAME_LONG_DOUBLE_AS_DOUBLE -REPLACE_ITOLD +GL_COND_OBJ_ITOLD_FALSE +GL_COND_OBJ_ITOLD_TRUE +GL_COND_OBJ_FLOAT_FALSE +GL_COND_OBJ_FLOAT_TRUE GL_GENERATE_FLOAT_H_FALSE GL_GENERATE_FLOAT_H_TRUE FLOAT_H +REPLACE_ITOLD NEXT_AS_FIRST_DIRECTIVE_FLOAT_H NEXT_FLOAT_H +GL_COND_OBJ_FFLUSH_FALSE +GL_COND_OBJ_FFLUSH_TRUE +GL_COND_OBJ_FDOPENDIR_FALSE +GL_COND_OBJ_FDOPENDIR_TRUE +GL_COND_OBJ_FDATASYNC_FALSE +GL_COND_OBJ_FDATASYNC_TRUE LIB_FDATASYNC NEXT_AS_FIRST_DIRECTIVE_FCNTL_H NEXT_FCNTL_H @@ -1373,6 +1494,8 @@ GL_GNULIB_NONBLOCKING GL_GNULIB_FCNTL GL_GNULIB_CREAT +GL_COND_OBJ_FCNTL_FALSE +GL_COND_OBJ_FCNTL_TRUE REPLACE_OPENAT REPLACE_OPEN REPLACE_FCNTL @@ -1431,6 +1554,7 @@ GL_GNULIB_FPURGE GL_GNULIB_FPRINTF_POSIX GL_GNULIB_FPRINTF +GL_GNULIB_FOPEN_GNU GL_GNULIB_FOPEN GL_GNULIB_FGETS GL_GNULIB_FGETC @@ -1438,6 +1562,8 @@ GL_GNULIB_FDOPEN GL_GNULIB_FCLOSE GL_GNULIB_DPRINTF +GL_COND_OBJ_FCLOSE_FALSE +GL_COND_OBJ_FCLOSE_TRUE REPLACE_VSPRINTF REPLACE_VSNPRINTF REPLACE_VPRINTF @@ -1465,6 +1591,7 @@ REPLACE_FREOPEN REPLACE_FPURGE REPLACE_FPRINTF +REPLACE_FOPEN_FOR_FOPEN_GNU REPLACE_FOPEN REPLACE_FFLUSH REPLACE_FDOPEN @@ -1487,17 +1614,27 @@ HAVE_DECL_FSEEKO HAVE_DECL_FPURGE HAVE_DECL_FCLOSEALL +GL_COND_OBJ_FCHDIR_FALSE +GL_COND_OBJ_FCHDIR_TRUE +GL_COND_OBJ_ERROR_FALSE +GL_COND_OBJ_ERROR_TRUE +GL_GENERATE_ERRNO_H_FALSE +GL_GENERATE_ERRNO_H_TRUE +ERRNO_H EOVERFLOW_VALUE EOVERFLOW_HIDDEN ENOLINK_VALUE ENOLINK_HIDDEN EMULTIHOP_VALUE EMULTIHOP_HIDDEN -GL_GENERATE_ERRNO_H_FALSE -GL_GENERATE_ERRNO_H_TRUE -ERRNO_H NEXT_AS_FIRST_DIRECTIVE_ERRNO_H NEXT_ERRNO_H +GL_COND_OBJ_DUP2_FALSE +GL_COND_OBJ_DUP2_TRUE +GL_COND_OBJ_DUP_FALSE +GL_COND_OBJ_DUP_TRUE +GL_COND_OBJ_DIRFD_FALSE +GL_COND_OBJ_DIRFD_TRUE HAVE_DIRENT_H NEXT_AS_FIRST_DIRECTIVE_DIRENT_H NEXT_DIRENT_H @@ -1513,6 +1650,8 @@ GL_GNULIB_REWINDDIR GL_GNULIB_READDIR GL_GNULIB_OPENDIR +GL_COND_OBJ_CLOSEDIR_FALSE +GL_COND_OBJ_CLOSEDIR_TRUE REPLACE_FDOPENDIR REPLACE_DIRFD REPLACE_CLOSEDIR @@ -1526,9 +1665,13 @@ HAVE_REWINDDIR HAVE_READDIR HAVE_OPENDIR +GL_COND_OBJ_CLOSE_FALSE +GL_COND_OBJ_CLOSE_TRUE HAVE_WINSOCK2_H HAVE_MSVC_INVALID_PARAMETER_HANDLER LIB_CLOCK_GETTIME +GL_COND_OBJ_CHDIR_LONG_FALSE +GL_COND_OBJ_CHDIR_LONG_TRUE UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS UNISTD_H_HAVE_WINSOCK2_H UNISTD_H_HAVE_SYS_RANDOM_H @@ -1552,6 +1695,7 @@ REPLACE_LINK REPLACE_LCHOWN REPLACE_ISATTY +REPLACE_GETPASS_FOR_GETPASS_GNU REPLACE_GETPASS REPLACE_GETPAGESIZE REPLACE_GETGROUPS @@ -1571,6 +1715,7 @@ REPLACE_EXECL REPLACE_DUP2 REPLACE_DUP +REPLACE_COPY_FILE_RANGE REPLACE_CLOSE REPLACE_CHOWN REPLACE_ACCESS @@ -1671,6 +1816,7 @@ GL_GNULIB_ISATTY GL_GNULIB_GROUP_MEMBER GL_GNULIB_GETUSERSHELL +GL_GNULIB_GETPASS_GNU GL_GNULIB_GETPASS GL_GNULIB_GETPAGESIZE GL_GNULIB_GETOPT_POSIX @@ -1725,6 +1871,7 @@ GL_GNULIB_RPMATCH GL_GNULIB_REALPATH GL_GNULIB_REALLOC_POSIX +GL_GNULIB_REALLOC_GNU GL_GNULIB_REALLOCARRAY GL_GNULIB_RANDOM_R GL_GNULIB_RANDOM @@ -1741,12 +1888,14 @@ GL_GNULIB_MKDTEMP GL_GNULIB_MBTOWC GL_GNULIB_MALLOC_POSIX +GL_GNULIB_MALLOC_GNU GL_GNULIB_GRANTPT GL_GNULIB_GETSUBOPT GL_GNULIB_GETLOADAVG GL_GNULIB_FREE_POSIX GL_GNULIB_CANONICALIZE_FILE_NAME GL_GNULIB_CALLOC_POSIX +GL_GNULIB_CALLOC_GNU GL_GNULIB_ATOLL GL_GNULIB_ALIGNED_ALLOC GL_GNULIB__EXIT @@ -1762,7 +1911,8 @@ REPLACE_SETENV REPLACE_REALPATH REPLACE_REALLOCARRAY -REPLACE_REALLOC +REPLACE_REALLOC_FOR_REALLOC_POSIX +REPLACE_REALLOC_FOR_REALLOC_GNU REPLACE_RANDOM_R REPLACE_RANDOM REPLACE_QSORT_R @@ -1772,11 +1922,13 @@ REPLACE_POSIX_MEMALIGN REPLACE_MKSTEMP REPLACE_MBTOWC -REPLACE_MALLOC +REPLACE_MALLOC_FOR_MALLOC_POSIX +REPLACE_MALLOC_FOR_MALLOC_GNU REPLACE_INITSTATE REPLACE_FREE REPLACE_CANONICALIZE_FILE_NAME -REPLACE_CALLOC +REPLACE_CALLOC_FOR_CALLOC_POSIX +REPLACE_CALLOC_FOR_CALLOC_GNU REPLACE_ALIGNED_ALLOC HAVE_DECL_UNSETENV HAVE_UNLOCKPT @@ -1822,10 +1974,10 @@ HAVE_ATOLL HAVE_ALIGNED_ALLOC HAVE__EXIT -HAVE_ALLOCA_H GL_GENERATE_ALLOCA_H_FALSE GL_GENERATE_ALLOCA_H_TRUE ALLOCA_H +HAVE_ALLOCA_H ALLOCA GL_COND_LIBTOOL_FALSE GL_COND_LIBTOOL_TRUE @@ -1843,6 +1995,9 @@ RANLIB LN_S NM +LESS_FALSE +LESS_TRUE +LESS GREP CPP am__fastdepCC_FALSE @@ -2500,7 +2655,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures gzip 1.11 to adapt to many kinds of systems. +\`configure' configures gzip 1.12 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -2571,7 +2726,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of gzip 1.11:";; + short | recursive ) echo "Configuration of gzip 1.12:";; esac cat <<\_ACEOF @@ -2592,8 +2747,13 @@ --disable-threads build without multithread safety --enable-cross-guesses={conservative|risky} specify policy for cross-compilation guesses - --enable-gcc-warnings turn on many GCC warnings (for developers; best with - GNU make) + --enable-gcc-warnings=TYPE + control generation of GCC warnings. The TYPE 'no' + disables warnings (default for non-developer + builds); 'yes' generates cheap warnings if available + (default for developer builds); 'expensive' in + addition generates expensive-to-compute warnings if + available. --enable-dfltcc use DEFLATE COMPRESSION CALL instruction on IBM Z Some influential environment variables: @@ -2673,7 +2833,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -gzip configure 1.11 +gzip configure 1.12 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -3335,7 +3495,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by gzip $as_me 1.11, which was +It was created by gzip $as_me 1.12, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -3942,7 +4102,6 @@ as_fn_append ac_func_c_list " __fpurge HAVE___FPURGE" as_fn_append ac_func_c_list " __freading HAVE___FREADING" as_fn_append ac_func_c_list " __fseterr HAVE___FSETERR" -as_fn_append ac_func_c_list " fstatat HAVE_FSTATAT" as_fn_append ac_func_c_list " fsync HAVE_FSYNC" as_fn_append ac_func_c_list " getdtablesize HAVE_GETDTABLESIZE" gl_getopt_required=GNU @@ -3950,8 +4109,9 @@ as_fn_append ac_header_c_list " sys/cdefs.h sys_cdefs_h HAVE_SYS_CDEFS_H" as_fn_append ac_func_c_list " getprogname HAVE_GETPROGNAME" as_fn_append ac_func_c_list " getexecname HAVE_GETEXECNAME" -as_fn_append ac_func_c_list " gettimeofday HAVE_GETTIMEOFDAY" +as_fn_append ac_func_c_list " timespec_get HAVE_TIMESPEC_GET" as_fn_append ac_header_c_list " sys/time.h sys_time_h HAVE_SYS_TIME_H" +as_fn_append ac_func_c_list " gettimeofday HAVE_GETTIMEOFDAY" as_fn_append ac_header_c_list " limits.h limits_h HAVE_LIMITS_H" as_fn_append ac_header_c_list " threads.h threads_h HAVE_THREADS_H" as_fn_append ac_func_c_list " lstat HAVE_LSTAT" @@ -4669,7 +4829,7 @@ # Define the identity of the package. PACKAGE='gzip' - VERSION='1.11' + VERSION='1.12' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -6348,6 +6508,56 @@ GREP="$ac_cv_path_GREP" +# Extract the first word of "less", so it can be a program name with args. +set dummy less; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_LESS+y} +then : + printf %s "(cached) " >&6 +else $as_nop + if test -n "$LESS"; then + ac_cv_prog_LESS="$LESS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_prog_LESS="less" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LESS=$ac_cv_prog_LESS +if test -n "$LESS"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LESS" >&5 +printf "%s\n" "$LESS" >&6; } +else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } +fi + + + if test "$LESS"; then + LESS_TRUE= + LESS_FALSE='#' +else + LESS_TRUE='#' + LESS_FALSE= +fi + if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nm", so it can be a program name with args. set dummy ${ac_tool_prefix}nm; ac_word=$2 @@ -7761,7 +7971,6 @@ - # Code from module absolute-header: # Code from module alloca-opt: # Code from module announce-gen: @@ -7821,11 +8030,11 @@ # Code from module fseterr: # Code from module fstat: - # Code from module fstatat: # Code from module fsync: # Code from module ftell: # Code from module ftello: + # Code from module gen-header: # Code from module gendocs: # Code from module getcwd-lgpl: # Code from module getdtablesize: @@ -7906,7 +8115,6 @@ # Code from module ssize_t: # Code from module stat: # Code from module stat-time: - # Code from module statat: # Code from module std-gnu11: # Code from module stdalign: # Code from module stdbool: @@ -7939,6 +8147,7 @@ # Code from module utime: # Code from module utime-h: # Code from module utimens: + # Code from module vararrays: # Code from module vasnprintf: # Code from module vc-list-files: # Code from module verify: @@ -8199,11 +8408,13 @@ HAVE_UNLOCKPT=1; HAVE_DECL_UNSETENV=1; REPLACE_ALIGNED_ALLOC=0; - REPLACE_CALLOC=0; + REPLACE_CALLOC_FOR_CALLOC_GNU=0; + REPLACE_CALLOC_FOR_CALLOC_POSIX=0; REPLACE_CANONICALIZE_FILE_NAME=0; REPLACE_FREE=0; REPLACE_INITSTATE=0; - REPLACE_MALLOC=0; + REPLACE_MALLOC_FOR_MALLOC_GNU=0; + REPLACE_MALLOC_FOR_MALLOC_POSIX=0; REPLACE_MBTOWC=0; REPLACE_MKSTEMP=0; REPLACE_POSIX_MEMALIGN=0; @@ -8213,7 +8424,8 @@ REPLACE_QSORT_R=0; REPLACE_RANDOM=0; REPLACE_RANDOM_R=0; - REPLACE_REALLOC=0; + REPLACE_REALLOC_FOR_REALLOC_GNU=0; + REPLACE_REALLOC_FOR_REALLOC_POSIX=0; REPLACE_REALLOCARRAY=0; REPLACE_REALPATH=0; REPLACE_SETENV=0; @@ -8280,7 +8492,7 @@ - test "$gl_cv_malloc_ptrdiff" = yes || REPLACE_MALLOC=1 + test "$gl_cv_malloc_ptrdiff" = yes || REPLACE_MALLOC_FOR_MALLOC_POSIX=1 @@ -8314,14 +8526,14 @@ printf "%s\n" "#define HAVE_MALLOC_POSIX 1" >>confdefs.h else - REPLACE_MALLOC=1 + REPLACE_MALLOC_FOR_MALLOC_POSIX=1 fi - if test $REPLACE_MALLOC = 1; then - REPLACE_CALLOC=1 + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_CALLOC_FOR_CALLOC_POSIX=1 fi @@ -8338,6 +8550,10 @@ + GL_GNULIB_CALLOC_GNU=0 + + + GL_GNULIB_CALLOC_POSIX=0 @@ -8362,6 +8578,10 @@ + GL_GNULIB_MALLOC_GNU=0 + + + GL_GNULIB_MALLOC_POSIX=0 @@ -8426,6 +8646,10 @@ + GL_GNULIB_REALLOC_GNU=0 + + + GL_GNULIB_REALLOC_POSIX=0 @@ -8644,6 +8868,10 @@ + GL_GNULIB_GETPASS_GNU=0 + + + GL_GNULIB_GETUSERSHELL=0 @@ -8892,6 +9120,7 @@ REPLACE_ACCESS=0; REPLACE_CHOWN=0; REPLACE_CLOSE=0; + REPLACE_COPY_FILE_RANGE=0; REPLACE_DUP=0; REPLACE_DUP2=0; REPLACE_EXECL=0; @@ -8911,6 +9140,7 @@ REPLACE_GETGROUPS=0; REPLACE_GETPAGESIZE=0; REPLACE_GETPASS=0; + REPLACE_GETPASS_FOR_GETPASS_GNU=0; REPLACE_ISATTY=0; REPLACE_LCHOWN=0; REPLACE_LINK=0; @@ -9198,8 +9428,8 @@ gl_cv_absolute_dirent_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_dirent_h - gl_cv_next_dirent_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_dirent_h + gl_cv_next_dirent_h='"'$gl_header'"' else gl_cv_next_dirent_h='<'dirent.h'>' fi @@ -9448,7 +9678,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_complete" >&5 printf "%s\n" "$gl_cv_header_errno_h_complete" >&6; } if test $gl_cv_header_errno_h_complete = yes; then - ERRNO_H='' + GL_GENERATE_ERRNO_H=false else @@ -9500,8 +9730,8 @@ gl_cv_absolute_errno_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_errno_h - gl_cv_next_errno_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_errno_h + gl_cv_next_errno_h='"'$gl_header'"' fi @@ -9522,19 +9752,10 @@ - ERRNO_H='errno.h' + GL_GENERATE_ERRNO_H=true fi - if test -n "$ERRNO_H"; then - GL_GENERATE_ERRNO_H_TRUE= - GL_GENERATE_ERRNO_H_FALSE='#' -else - GL_GENERATE_ERRNO_H_TRUE='#' - GL_GENERATE_ERRNO_H_FALSE= -fi - - - if test -n "$ERRNO_H"; then + if $GL_GENERATE_ERRNO_H; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for EMULTIHOP value" >&5 printf %s "checking for EMULTIHOP value... " >&6; } if test ${gl_cv_header_errno_h_EMULTIHOP+y} @@ -9609,7 +9830,7 @@ fi - if test -n "$ERRNO_H"; then + if $GL_GENERATE_ERRNO_H; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ENOLINK value" >&5 printf %s "checking for ENOLINK value... " >&6; } if test ${gl_cv_header_errno_h_ENOLINK+y} @@ -9684,7 +9905,7 @@ fi - if test -n "$ERRNO_H"; then + if $GL_GENERATE_ERRNO_H; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for EOVERFLOW value" >&5 printf %s "checking for EOVERFLOW value... " >&6; } if test ${gl_cv_header_errno_h_EOVERFLOW+y} @@ -9824,6 +10045,36 @@ XGETTEXT_EXTRA_OPTIONS= + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ctype.h defines __header_inline" >&5 +printf %s "checking whether ctype.h defines __header_inline... " >&6; } +if test ${gl_cv_have___header_inline+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <ctype.h> + #ifndef __header_inline + #error "<ctype.h> does not define __header_inline" + #endif + +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + gl_cv_have___header_inline=yes +else $as_nop + gl_cv_have___header_inline=no +fi +rm -f conftest.err conftest.i conftest.$ac_ext +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have___header_inline" >&5 +printf "%s\n" "$gl_cv_have___header_inline" >&6; } + if test "$gl_cv_have___header_inline" = yes; then + +printf "%s\n" "#define HAVE___HEADER_INLINE 1" >>confdefs.h + + fi + ac_fn_check_decl "$LINENO" "fchdir" "ac_cv_have_decl_fchdir" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS" @@ -9858,6 +10109,7 @@ REPLACE_FDOPEN=0; REPLACE_FFLUSH=0; REPLACE_FOPEN=0; + REPLACE_FOPEN_FOR_FOPEN_GNU=0; REPLACE_FPRINTF=0; REPLACE_FPURGE=0; REPLACE_FREOPEN=0; @@ -9916,6 +10168,10 @@ + GL_GNULIB_FOPEN_GNU=0 + + + GL_GNULIB_FPRINTF=0 @@ -10419,8 +10675,8 @@ gl_cv_absolute_fcntl_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_fcntl_h - gl_cv_next_fcntl_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_fcntl_h + gl_cv_next_fcntl_h='"'$gl_header'"' fi @@ -14144,8 +14400,8 @@ gl_cv_absolute_sys_types_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_sys_types_h - gl_cv_next_sys_types_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_sys_types_h + gl_cv_next_sys_types_h='"'$gl_header'"' fi @@ -14528,8 +14784,8 @@ gl_cv_absolute_sys_stat_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_sys_stat_h - gl_cv_next_sys_stat_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_sys_stat_h + gl_cv_next_sys_stat_h='"'$gl_header'"' else gl_cv_next_sys_stat_h='<'sys/stat.h'>' fi @@ -14680,75 +14936,6 @@ - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5 -printf %s "checking whether lstat correctly handles trailing slash... " >&6; } -if test ${gl_cv_func_lstat_dereferences_slashed_symlink+y} -then : - printf %s "(cached) " >&6 -else $as_nop - rm -f conftest.sym conftest.file - echo >conftest.file - if test "$cross_compiling" = yes -then : - case "$host_os" in - linux-* | linux) - # Guess yes on Linux systems. - gl_cv_func_lstat_dereferences_slashed_symlink="guessing yes" ;; - *-gnu* | gnu*) - # Guess yes on glibc systems. - gl_cv_func_lstat_dereferences_slashed_symlink="guessing yes" ;; - mingw*) - # Guess no on native Windows. - gl_cv_func_lstat_dereferences_slashed_symlink="guessing no" ;; - *) - # If we don't know, obey --enable-cross-guesses. - gl_cv_func_lstat_dereferences_slashed_symlink="$gl_cross_guess_normal" ;; - esac - -else $as_nop - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$ac_includes_default -int -main (void) -{ -struct stat sbuf; - if (symlink ("conftest.file", "conftest.sym") != 0) - return 1; - /* Linux will dereference the symlink and fail, as required by - POSIX. That is better in the sense that it means we will not - have to compile and use the lstat wrapper. */ - return lstat ("conftest.sym/", &sbuf) == 0; - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_run "$LINENO" -then : - gl_cv_func_lstat_dereferences_slashed_symlink=yes -else $as_nop - gl_cv_func_lstat_dereferences_slashed_symlink=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext -fi - - rm -f conftest.sym conftest.file - -fi -{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_lstat_dereferences_slashed_symlink" >&5 -printf "%s\n" "$gl_cv_func_lstat_dereferences_slashed_symlink" >&6; } - case "$gl_cv_func_lstat_dereferences_slashed_symlink" in - *yes) - -printf "%s\n" "#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1" >>confdefs.h - - ;; - esac - - - ac_fn_check_decl "$LINENO" "ftello" "ac_cv_have_decl_ftello" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS" if test "x$ac_cv_have_decl_ftello" = xyes then : @@ -15210,8 +15397,8 @@ gl_cv_absolute_getopt_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_getopt_h - gl_cv_next_getopt_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_getopt_h + gl_cv_next_getopt_h='"'$gl_header'"' else gl_cv_next_getopt_h='<'getopt.h'>' fi @@ -15837,8 +16024,8 @@ gl_cv_absolute_sys_time_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_sys_time_h - gl_cv_next_sys_time_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_sys_time_h + gl_cv_next_sys_time_h='"'$gl_header'"' else gl_cv_next_sys_time_h='<'sys/time.h'>' fi @@ -15975,6 +16162,7 @@ + GL_GNULIB_GETTIMEOFDAY=0 @@ -16035,8 +16223,8 @@ gl_cv_absolute_limits_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_limits_h - gl_cv_next_limits_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_limits_h + gl_cv_next_limits_h='"'$gl_header'"' else gl_cv_next_limits_h='<'limits.h'>' fi @@ -16097,20 +16285,11 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_limits_width" >&5 printf "%s\n" "$gl_cv_header_limits_width" >&6; } if test "$gl_cv_header_limits_width" = yes; then - LIMITS_H= + GL_GENERATE_LIMITS_H=false else - LIMITS_H=limits.h + GL_GENERATE_LIMITS_H=true fi - if test -n "$LIMITS_H"; then - GL_GENERATE_LIMITS_H_TRUE= - GL_GENERATE_LIMITS_H_FALSE='#' -else - GL_GENERATE_LIMITS_H_TRUE='#' - GL_GENERATE_LIMITS_H_FALSE= -fi - - @@ -16201,8 +16380,8 @@ gl_cv_absolute_stdint_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_stdint_h - gl_cv_next_stdint_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_stdint_h + gl_cv_next_stdint_h='"'$gl_header'"' else gl_cv_next_stdint_h='<'stdint.h'>' fi @@ -16516,7 +16695,7 @@ HAVE_C99_STDINT_H=0 HAVE_SYS_BITYPES_H=0 HAVE_SYS_INTTYPES_H=0 - STDINT_H=stdint.h + GL_GENERATE_STDINT_H=true case "$gl_cv_header_working_stdint_h" in *yes) HAVE_C99_STDINT_H=1 @@ -16613,7 +16792,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_stdint_width" >&5 printf "%s\n" "$gl_cv_header_stdint_width" >&6; } if test "$gl_cv_header_stdint_width" = yes; then - STDINT_H= + GL_GENERATE_STDINT_H=false fi ;; *) @@ -16920,30 +17099,13 @@ - LIMITS_H='limits.h' - if test -n "$LIMITS_H"; then - GL_GENERATE_LIMITS_H_TRUE= - GL_GENERATE_LIMITS_H_FALSE='#' -else - GL_GENERATE_LIMITS_H_TRUE='#' - GL_GENERATE_LIMITS_H_FALSE= -fi - + GL_GENERATE_LIMITS_H=true - if test -n "$STDINT_H"; then - GL_GENERATE_STDINT_H_TRUE= - GL_GENERATE_STDINT_H_FALSE='#' -else - GL_GENERATE_STDINT_H_TRUE='#' - GL_GENERATE_STDINT_H_FALSE= -fi - - HAVE_DECL_IMAXABS=1; HAVE_DECL_IMAXDIV=1; @@ -17017,8 +17179,8 @@ gl_cv_absolute_inttypes_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_inttypes_h - gl_cv_next_inttypes_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_inttypes_h + gl_cv_next_inttypes_h='"'$gl_header'"' else gl_cv_next_inttypes_h='<'inttypes.h'>' fi @@ -17192,8 +17354,13 @@ then : printf %s "(cached) " >&6 else $as_nop - gl_cv_have_weak=no - cat confdefs.h - <<_ACEOF >conftest.$ac_ext + case "$host_os" in + cygwin*) + gl_cv_have_weak="guessing no" + ;; + *) + gl_cv_have_weak=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ extern void xyzzy (); #pragma weak xyzzy @@ -17211,14 +17378,14 @@ fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext - if test $gl_cv_have_weak = maybe; then - if test "$cross_compiling" = yes + if test $gl_cv_have_weak = maybe; then + if test "$cross_compiling" = yes then : - cat confdefs.h - <<_ACEOF >conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __ELF__ - Extensible Linking Format - #endif + Extensible Linking Format + #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | @@ -17252,7 +17419,9 @@ conftest.$ac_objext conftest.beam conftest.$ac_ext fi - fi + fi + ;; + esac case " $LDFLAGS " in *" -static "*) gl_cv_have_weak=no ;; esac @@ -17356,8 +17525,8 @@ LIBS=$save_LIBS test $gl_pthread_api = yes && break done - echo "$as_me:17359: gl_pthread_api=$gl_pthread_api" >&5 - echo "$as_me:17360: LIBPTHREAD=$LIBPTHREAD" >&5 + echo "$as_me:17528: gl_pthread_api=$gl_pthread_api" >&5 + echo "$as_me:17529: LIBPTHREAD=$LIBPTHREAD" >&5 gl_pthread_in_glibc=no # On Linux with glibc >= 2.34, libc contains the fully functional @@ -17383,7 +17552,7 @@ ;; esac - echo "$as_me:17386: gl_pthread_in_glibc=$gl_pthread_in_glibc" >&5 + echo "$as_me:17555: gl_pthread_in_glibc=$gl_pthread_in_glibc" >&5 # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) @@ -17537,7 +17706,7 @@ fi fi - echo "$as_me:17540: LIBPMULTITHREAD=$LIBPMULTITHREAD" >&5 + echo "$as_me:17709: LIBPMULTITHREAD=$LIBPMULTITHREAD" >&5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether POSIX threads API is available" >&5 printf %s "checking whether POSIX threads API is available... " >&6; } @@ -17765,8 +17934,8 @@ LIBS=$save_LIBS test $gl_pthread_api = yes && break done - echo "$as_me:17768: gl_pthread_api=$gl_pthread_api" >&5 - echo "$as_me:17769: LIBPTHREAD=$LIBPTHREAD" >&5 + echo "$as_me:17937: gl_pthread_api=$gl_pthread_api" >&5 + echo "$as_me:17938: LIBPTHREAD=$LIBPTHREAD" >&5 gl_pthread_in_glibc=no # On Linux with glibc >= 2.34, libc contains the fully functional @@ -17792,7 +17961,7 @@ ;; esac - echo "$as_me:17795: gl_pthread_in_glibc=$gl_pthread_in_glibc" >&5 + echo "$as_me:17964: gl_pthread_in_glibc=$gl_pthread_in_glibc" >&5 # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) @@ -17946,7 +18115,7 @@ fi fi - echo "$as_me:17949: LIBPMULTITHREAD=$LIBPMULTITHREAD" >&5 + echo "$as_me:18118: LIBPMULTITHREAD=$LIBPMULTITHREAD" >&5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether POSIX threads API is available" >&5 printf %s "checking whether POSIX threads API is available... " >&6; } @@ -18177,6 +18346,74 @@ + + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5 +printf %s "checking whether lstat correctly handles trailing slash... " >&6; } +if test ${gl_cv_func_lstat_dereferences_slashed_symlink+y} +then : + printf %s "(cached) " >&6 +else $as_nop + rm -f conftest.sym conftest.file + echo >conftest.file + if test "$cross_compiling" = yes +then : + case "$host_os" in + linux-* | linux) + # Guess yes on Linux systems. + gl_cv_func_lstat_dereferences_slashed_symlink="guessing yes" ;; + *-gnu* | gnu*) + # Guess yes on glibc systems. + gl_cv_func_lstat_dereferences_slashed_symlink="guessing yes" ;; + mingw*) + # Guess no on native Windows. + gl_cv_func_lstat_dereferences_slashed_symlink="guessing no" ;; + *) + # If we don't know, obey --enable-cross-guesses. + gl_cv_func_lstat_dereferences_slashed_symlink="$gl_cross_guess_normal" ;; + esac + +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default +int +main (void) +{ +struct stat sbuf; + if (symlink ("conftest.file", "conftest.sym") != 0) + return 1; + /* Linux will dereference the symlink and fail, as required by + POSIX. That is better in the sense that it means we will not + have to compile and use the lstat wrapper. */ + return lstat ("conftest.sym/", &sbuf) == 0; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO" +then : + gl_cv_func_lstat_dereferences_slashed_symlink=yes +else $as_nop + gl_cv_func_lstat_dereferences_slashed_symlink=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + + rm -f conftest.sym conftest.file + +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_lstat_dereferences_slashed_symlink" >&5 +printf "%s\n" "$gl_cv_func_lstat_dereferences_slashed_symlink" >&6; } + case "$gl_cv_func_lstat_dereferences_slashed_symlink" in + *yes) + +printf "%s\n" "#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1" >>confdefs.h + + ;; + esac + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 printf %s "checking for a sed that does not truncate output... " >&6; } if test ${ac_cv_path_SED+y} @@ -18371,8 +18608,8 @@ gl_cv_absolute_math_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_math_h - gl_cv_next_math_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_math_h + gl_cv_next_math_h='"'$gl_header'"' else gl_cv_next_math_h='<'math.h'>' fi @@ -19075,8 +19312,11 @@ + + + if test $ac_cv_func_strerror_r = yes; then - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for strerror_r with POSIX signature" >&5 printf %s "checking for strerror_r with POSIX signature... " >&6; } if test ${gl_cv_func_strerror_r_posix_signature+y} @@ -19248,14 +19488,12 @@ - - if test $ac_cv_have_decl_strerror_r = no; then HAVE_DECL_STRERROR_R=0 fi if test $ac_cv_func_strerror_r = yes; then - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then if test $gl_cv_func_strerror_r_posix_signature = yes; then case "$gl_cv_func_strerror_r_works" in *no) REPLACE_STRERROR_R=1 ;; @@ -19724,8 +19962,8 @@ - if test $REPLACE_MALLOC = 1; then - REPLACE_REALLOC=1 + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_REALLOC_FOR_REALLOC_POSIX=1 fi @@ -19817,8 +20055,8 @@ gl_cv_absolute_signal_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_signal_h - gl_cv_next_signal_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_signal_h + gl_cv_next_signal_h='"'$gl_header'"' fi @@ -19982,7 +20220,7 @@ - STDDEF_H= + GL_GENERATE_STDDEF_H=false { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for good max_align_t" >&5 printf %s "checking for good max_align_t... " >&6; } @@ -20027,12 +20265,12 @@ printf "%s\n" "$gl_cv_type_max_align_t" >&6; } if test $gl_cv_type_max_align_t = no; then HAVE_MAX_ALIGN_T=0 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5 @@ -20066,19 +20304,10 @@ printf "%s\n" "$gl_cv_decl_null_works" >&6; } if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi - - if test -n "$STDDEF_H"; then - GL_GENERATE_STDDEF_H_TRUE= - GL_GENERATE_STDDEF_H_FALSE='#' -else - GL_GENERATE_STDDEF_H_TRUE='#' - GL_GENERATE_STDDEF_H_FALSE= -fi - - if test -n "$STDDEF_H"; then + if $GL_GENERATE_STDDEF_H; then @@ -20129,8 +20358,8 @@ gl_cv_absolute_stddef_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_stddef_h - gl_cv_next_stddef_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_stddef_h + gl_cv_next_stddef_h='"'$gl_header'"' fi @@ -20219,8 +20448,8 @@ gl_cv_absolute_stdio_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_stdio_h - gl_cv_next_stdio_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_stdio_h + gl_cv_next_stdio_h='"'$gl_header'"' fi @@ -20379,8 +20608,8 @@ gl_cv_absolute_stdlib_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_stdlib_h - gl_cv_next_stdlib_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_stdlib_h + gl_cv_next_stdlib_h='"'$gl_header'"' fi @@ -20481,8 +20710,8 @@ gl_cv_absolute_string_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_string_h - gl_cv_next_string_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_string_h + gl_cv_next_string_h='"'$gl_header'"' fi @@ -20516,6 +20745,7 @@ HAVE_STRPTIME=1; HAVE_TIMEGM=1; HAVE_TIMESPEC_GET=1; + HAVE_TIMESPEC_GETRES=1; HAVE_TIMEZONE_T=0; REPLACE_CTIME=GNULIB_PORTCHECK; REPLACE_LOCALTIME_R=GNULIB_PORTCHECK; @@ -20721,8 +20951,8 @@ gl_cv_absolute_time_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_time_h - gl_cv_next_time_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_time_h + gl_cv_next_time_h='"'$gl_header'"' fi @@ -20816,6 +21046,10 @@ + GL_GNULIB_TIMESPEC_GETRES=0 + + + GL_GNULIB_TIME_R=0 @@ -20898,8 +21132,8 @@ gl_cv_absolute_unistd_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_unistd_h - gl_cv_next_unistd_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_unistd_h + gl_cv_next_unistd_h='"'$gl_header'"' else gl_cv_next_unistd_h='<'unistd.h'>' fi @@ -21018,8 +21252,8 @@ gl_cv_absolute_utime_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_utime_h - gl_cv_next_utime_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_utime_h + gl_cv_next_utime_h='"'$gl_header'"' else gl_cv_next_utime_h='<'utime.h'>' fi @@ -21421,8 +21655,8 @@ gl_cv_absolute_wchar_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_wchar_h - gl_cv_next_wchar_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_wchar_h + gl_cv_next_wchar_h='"'$gl_header'"' else gl_cv_next_wchar_h='<'wchar.h'>' fi @@ -21793,6 +22027,90 @@ + + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler option to allow warnings" >&5 +printf %s "checking for C compiler option to allow warnings... " >&6; } +if test ${gl_cv_cc_wallow+y} +then : + printf %s "(cached) " >&6 +else $as_nop + rm -f conftest* + echo 'int dummy;' > conftest.c + { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c 2>conftest1.err' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? + printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; } >/dev/null + { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -Wno-error -c conftest.c 2>conftest2.err' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 + (eval $ac_try) 2>&5 + ac_status=$? + printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; } >/dev/null + if test $? = 0 && test `wc -l < conftest1.err` = `wc -l < conftest2.err`; then + gl_cv_cc_wallow='-Wno-error' + else + gl_cv_cc_wallow=none + fi + rm -f conftest* + +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_cc_wallow" >&5 +printf "%s\n" "$gl_cv_cc_wallow" >&6; } + case "$gl_cv_cc_wallow" in + none) GL_CFLAG_ALLOW_WARNINGS='' ;; + *) GL_CFLAG_ALLOW_WARNINGS="$gl_cv_cc_wallow" ;; + esac + + + + + GL_CFLAG_GNULIB_WARNINGS='' + if test -n "$GL_CFLAG_ALLOW_WARNINGS"; then + cat > conftest.c <<\EOF + #if __GNUC__ >= 3 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-cast-qual + -Wno-conversion + -Wno-float-equal + -Wno-sign-compare + -Wno-undef + -Wno-unused-function + -Wno-unused-parameter + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 9) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-float-conversion + #endif + #if __GNUC__ >= 7 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wimplicit-fallthrough + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 8) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-pedantic + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 3) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-sign-conversion + -Wno-type-limits + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 5) > 4 + -Wno-unsuffixed-float-constants + #endif +EOF + gl_command="$CC $CFLAGS $CPPFLAGS -E conftest.c > conftest.out" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$gl_command\""; } >&5 + (eval $gl_command) 2>&5 + ac_status=$? + printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + gl_options=`grep -v '#' conftest.out` + for word in $gl_options; do + GL_CFLAG_GNULIB_WARNINGS="$GL_CFLAG_GNULIB_WARNINGS $word" + done + fi + rm -f conftest.c conftest.out + fi + + + if false; then GL_COND_LIBTOOL_TRUE= GL_COND_LIBTOOL_FALSE='#' @@ -21818,6 +22136,7 @@ gl_source_base='lib' + gl_source_base_prefix= if test $ac_cv_func_alloca_works = no; then @@ -21858,35 +22177,60 @@ printf "%s\n" "#define HAVE_ALLOCA 1" >>confdefs.h - ALLOCA_H=alloca.h + GL_GENERATE_ALLOCA_H=true else - ALLOCA_H= + GL_GENERATE_ALLOCA_H=false fi else - ALLOCA_H=alloca.h + GL_GENERATE_ALLOCA_H=true fi - if test -n "$ALLOCA_H"; then + if test $ac_cv_working_alloca_h = yes; then + HAVE_ALLOCA_H=1 + else + HAVE_ALLOCA_H=0 + fi + + + + + + + case "$GL_GENERATE_ALLOCA_H" in + false) ALLOCA_H='' ;; + true) + if test -z "$ALLOCA_H"; then + ALLOCA_H="${gl_source_base_prefix}alloca.h" + fi + ;; + *) echo "*** GL_GENERATE_ALLOCA_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_ALLOCA_H; then GL_GENERATE_ALLOCA_H_TRUE= GL_GENERATE_ALLOCA_H_FALSE='#' else GL_GENERATE_ALLOCA_H_TRUE='#' GL_GENERATE_ALLOCA_H_FALSE= fi +: + if test -z "${GL_GENERATE_ALLOCA_H_TRUE}" && test -z "${GL_GENERATE_ALLOCA_H_FALSE}"; then + GL_GENERATE_ALLOCA_H_TRUE='#' + GL_GENERATE_ALLOCA_H_FALSE='#' + fi + - if test $ac_cv_working_alloca_h = yes; then - HAVE_ALLOCA_H=1 - else - HAVE_ALLOCA_H=0 - fi - if test $REPLACE_CALLOC = 0; then + + REPLACE_CALLOC_FOR_CALLOC_GNU="$REPLACE_CALLOC_FOR_CALLOC_POSIX" + if test $REPLACE_CALLOC_FOR_CALLOC_GNU = 0; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether calloc (0, n) and calloc (n, 0) return nonnull" >&5 printf %s "checking whether calloc (0, n) and calloc (n, 0) return nonnull... " >&6; } @@ -21950,12 +22294,12 @@ *yes) : ;; #( *) : - REPLACE_CALLOC=1 ;; + REPLACE_CALLOC_FOR_CALLOC_GNU=1 ;; esac fi - if test $REPLACE_CALLOC = 1; then + if test $REPLACE_CALLOC_FOR_CALLOC_GNU = 1; then @@ -21970,11 +22314,30 @@ - if test $REPLACE_MALLOC = 1; then - REPLACE_CALLOC=1 + + + + + + + GL_GNULIB_CALLOC_GNU=1 + + + + + +printf "%s\n" "#define GNULIB_TEST_CALLOC_GNU 1" >>confdefs.h + + + + + + + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_CALLOC_FOR_CALLOC_POSIX=1 fi - if test $REPLACE_CALLOC = 1; then + if test $REPLACE_CALLOC_FOR_CALLOC_POSIX = 1; then @@ -22072,19 +22435,25 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_unlimited_file_name_length" >&5 printf "%s\n" "$gl_cv_have_unlimited_file_name_length" >&6; } - if test $gl_cv_have_unlimited_file_name_length = no; then - - - - - - + if test $gl_cv_have_unlimited_file_name_length = no; then + GL_COND_OBJ_CHDIR_LONG_TRUE= + GL_COND_OBJ_CHDIR_LONG_FALSE='#' +else + GL_COND_OBJ_CHDIR_LONG_TRUE='#' + GL_COND_OBJ_CHDIR_LONG_FALSE= +fi +: + if test -z "${GL_COND_OBJ_CHDIR_LONG_TRUE}" && test -z "${GL_COND_OBJ_CHDIR_LONG_FALSE}"; then + GL_COND_OBJ_CHDIR_LONG_TRUE='#' + GL_COND_OBJ_CHDIR_LONG_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS chdir-long.$ac_objext" + if test -z "$GL_COND_OBJ_CHDIR_LONG_TRUE"; then : : - fi + +fi @@ -22157,7 +22526,13 @@ LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime fi - ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime" + ac_fn_c_check_func "$LINENO" "clock_getres" "ac_cv_func_clock_getres" +if test "x$ac_cv_func_clock_getres" = xyes +then : + printf "%s\n" "#define HAVE_CLOCK_GETRES 1" >>confdefs.h + +fi +ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime" if test "x$ac_cv_func_clock_gettime" = xyes then : printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h @@ -22227,17 +22602,18 @@ fi - if test $REPLACE_CLOSE = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS close.$ac_objext" + if test $REPLACE_CLOSE = 1; then + GL_COND_OBJ_CLOSE_TRUE= + GL_COND_OBJ_CLOSE_FALSE='#' +else + GL_COND_OBJ_CLOSE_TRUE='#' + GL_COND_OBJ_CLOSE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_CLOSE_TRUE}" && test -z "${GL_COND_OBJ_CLOSE_FALSE}"; then + GL_COND_OBJ_CLOSE_TRUE='#' + GL_COND_OBJ_CLOSE_FALSE='#' fi @@ -22248,6 +22624,7 @@ + GL_GNULIB_CLOSE=1 @@ -22290,17 +22667,18 @@ REPLACE_CLOSEDIR=1;; esac - if test $HAVE_CLOSEDIR = 0 || test $REPLACE_CLOSEDIR = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS closedir.$ac_objext" + if test $HAVE_CLOSEDIR = 0 || test $REPLACE_CLOSEDIR = 1; then + GL_COND_OBJ_CLOSEDIR_TRUE= + GL_COND_OBJ_CLOSEDIR_FALSE='#' +else + GL_COND_OBJ_CLOSEDIR_TRUE='#' + GL_COND_OBJ_CLOSEDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_CLOSEDIR_TRUE}" && test -z "${GL_COND_OBJ_CLOSEDIR_FALSE}"; then + GL_COND_OBJ_CLOSEDIR_TRUE='#' + GL_COND_OBJ_CLOSEDIR_FALSE='#' fi @@ -22311,6 +22689,7 @@ + GL_GNULIB_CLOSEDIR=1 @@ -22332,6 +22711,7 @@ + printf "%s\n" "#define GNULIB_DIRENT_SAFER 1" >>confdefs.h @@ -22401,17 +22781,21 @@ ;; esac - if test $ac_cv_func_dirfd = no && test $gl_cv_func_dirfd_macro = no \ - || test $REPLACE_DIRFD = 1; then - - - - - - + if test $ac_cv_func_dirfd = no && test $gl_cv_func_dirfd_macro = no || test $REPLACE_DIRFD = 1; then + GL_COND_OBJ_DIRFD_TRUE= + GL_COND_OBJ_DIRFD_FALSE='#' +else + GL_COND_OBJ_DIRFD_TRUE='#' + GL_COND_OBJ_DIRFD_FALSE= +fi +: + if test -z "${GL_COND_OBJ_DIRFD_TRUE}" && test -z "${GL_COND_OBJ_DIRFD_FALSE}"; then + GL_COND_OBJ_DIRFD_TRUE='#' + GL_COND_OBJ_DIRFD_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS dirfd.$ac_objext" + if test -z "$GL_COND_OBJ_DIRFD_TRUE"; then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to get the file descriptor associated with an open DIR*" >&5 @@ -22462,7 +22846,8 @@ fi - fi + +fi @@ -22599,19 +22984,25 @@ ;; esac - if test $REPLACE_DUP = 1; then - - - - - - + if test $REPLACE_DUP = 1; then + GL_COND_OBJ_DUP_TRUE= + GL_COND_OBJ_DUP_FALSE='#' +else + GL_COND_OBJ_DUP_TRUE='#' + GL_COND_OBJ_DUP_FALSE= +fi +: + if test -z "${GL_COND_OBJ_DUP_TRUE}" && test -z "${GL_COND_OBJ_DUP_FALSE}"; then + GL_COND_OBJ_DUP_TRUE='#' + GL_COND_OBJ_DUP_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS dup.$ac_objext" + if test -z "$GL_COND_OBJ_DUP_TRUE"; then : : - fi + +fi @@ -22767,35 +23158,74 @@ fi - if test $REPLACE_DUP2 = 1; then + if test $REPLACE_DUP2 = 1; then + GL_COND_OBJ_DUP2_TRUE= + GL_COND_OBJ_DUP2_FALSE='#' +else + GL_COND_OBJ_DUP2_TRUE='#' + GL_COND_OBJ_DUP2_FALSE= +fi +: + if test -z "${GL_COND_OBJ_DUP2_TRUE}" && test -z "${GL_COND_OBJ_DUP2_FALSE}"; then + GL_COND_OBJ_DUP2_TRUE='#' + GL_COND_OBJ_DUP2_FALSE='#' + fi + if test -z "$GL_COND_OBJ_DUP2_TRUE"; then : +fi - gl_LIBOBJS="$gl_LIBOBJS dup2.$ac_objext" - fi + GL_GNULIB_DUP2=1 - GL_GNULIB_DUP2=1 +printf "%s\n" "#define GNULIB_TEST_DUP2 1" >>confdefs.h + + -printf "%s\n" "#define GNULIB_TEST_DUP2 1" >>confdefs.h + + case "$GL_GENERATE_ERRNO_H" in + false) ERRNO_H='' ;; + true) + if test -z "$ERRNO_H"; then + ERRNO_H="${gl_source_base_prefix}errno.h" + fi + ;; + *) echo "*** GL_GENERATE_ERRNO_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_ERRNO_H; then + GL_GENERATE_ERRNO_H_TRUE= + GL_GENERATE_ERRNO_H_FALSE='#' +else + GL_GENERATE_ERRNO_H_TRUE='#' + GL_GENERATE_ERRNO_H_FALSE= +fi +: + if test -z "${GL_GENERATE_ERRNO_H_TRUE}" && test -z "${GL_GENERATE_ERRNO_H_FALSE}"; then + GL_GENERATE_ERRNO_H_TRUE='#' + GL_GENERATE_ERRNO_H_FALSE='#' + fi + + @@ -22830,22 +23260,30 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_error_at_line" >&5 printf "%s\n" "$ac_cv_lib_error_at_line" >&6; } - if test $ac_cv_lib_error_at_line = no; then - - - - + if test "$ac_cv_lib_error_at_line" = no; then + GL_COND_OBJ_ERROR_TRUE= + GL_COND_OBJ_ERROR_FALSE='#' +else + GL_COND_OBJ_ERROR_TRUE='#' + GL_COND_OBJ_ERROR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_ERROR_TRUE}" && test -z "${GL_COND_OBJ_ERROR_FALSE}"; then + GL_COND_OBJ_ERROR_TRUE='#' + GL_COND_OBJ_ERROR_FALSE='#' + fi + if test -z "$GL_COND_OBJ_ERROR_TRUE"; then : - gl_LIBOBJS="$gl_LIBOBJS error.$ac_objext" : - fi + +fi XGETTEXT_EXTRA_OPTIONS="$XGETTEXT_EXTRA_OPTIONS --flag=error:3:c-format" @@ -22867,17 +23305,6 @@ if test $HAVE_FCHDIR = 0; then - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fchdir.$ac_objext" - - : - printf "%s\n" "#define REPLACE_FCHDIR 1" >>confdefs.h { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether open can visit directories" >&5 @@ -22939,6 +23366,25 @@ fi + if test $HAVE_FCHDIR = 0; then + GL_COND_OBJ_FCHDIR_TRUE= + GL_COND_OBJ_FCHDIR_FALSE='#' +else + GL_COND_OBJ_FCHDIR_TRUE='#' + GL_COND_OBJ_FCHDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FCHDIR_TRUE}" && test -z "${GL_COND_OBJ_FCHDIR_FALSE}"; then + GL_COND_OBJ_FCHDIR_TRUE='#' + GL_COND_OBJ_FCHDIR_FALSE='#' + fi + + if test -z "$GL_COND_OBJ_FCHDIR_TRUE"; then : + + : + +fi + @@ -23167,17 +23613,18 @@ esac fi - if test $REPLACE_FCLOSE = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fclose.$ac_objext" + if test $REPLACE_FCLOSE = 1; then + GL_COND_OBJ_FCLOSE_TRUE= + GL_COND_OBJ_FCLOSE_FALSE='#' +else + GL_COND_OBJ_FCLOSE_TRUE='#' + GL_COND_OBJ_FCLOSE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FCLOSE_TRUE}" && test -z "${GL_COND_OBJ_FCLOSE_FALSE}"; then + GL_COND_OBJ_FCLOSE_TRUE='#' + GL_COND_OBJ_FCLOSE_FALSE='#' fi @@ -23188,6 +23635,7 @@ + GL_GNULIB_FCLOSE=1 @@ -23415,17 +23863,18 @@ fi - if test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fcntl.$ac_objext" + if test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1; then + GL_COND_OBJ_FCNTL_TRUE= + GL_COND_OBJ_FCNTL_FALSE='#' +else + GL_COND_OBJ_FCNTL_TRUE='#' + GL_COND_OBJ_FCNTL_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FCNTL_TRUE}" && test -z "${GL_COND_OBJ_FCNTL_FALSE}"; then + GL_COND_OBJ_FCNTL_TRUE='#' + GL_COND_OBJ_FCNTL_FALSE='#' fi @@ -23436,6 +23885,7 @@ + GL_GNULIB_FCNTL=1 @@ -23457,6 +23907,7 @@ + printf "%s\n" "#define GNULIB_FCNTL_SAFER 1" >>confdefs.h @@ -23566,17 +24017,18 @@ esac fi - if test $HAVE_FDATASYNC = 0; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fdatasync.$ac_objext" + if test $HAVE_FDATASYNC = 0; then + GL_COND_OBJ_FDATASYNC_TRUE= + GL_COND_OBJ_FDATASYNC_FALSE='#' +else + GL_COND_OBJ_FDATASYNC_TRUE='#' + GL_COND_OBJ_FDATASYNC_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FDATASYNC_TRUE}" && test -z "${GL_COND_OBJ_FDATASYNC_FALSE}"; then + GL_COND_OBJ_FDATASYNC_TRUE='#' + GL_COND_OBJ_FDATASYNC_FALSE='#' fi @@ -23587,6 +24039,7 @@ + GL_GNULIB_FDATASYNC=1 @@ -23695,17 +24148,18 @@ esac fi - if test $HAVE_FDOPENDIR = 0 || test $REPLACE_FDOPENDIR = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fdopendir.$ac_objext" + if test $HAVE_FDOPENDIR = 0 || test $REPLACE_FDOPENDIR = 1; then + GL_COND_OBJ_FDOPENDIR_TRUE= + GL_COND_OBJ_FDOPENDIR_FALSE='#' +else + GL_COND_OBJ_FDOPENDIR_TRUE='#' + GL_COND_OBJ_FDOPENDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FDOPENDIR_TRUE}" && test -z "${GL_COND_OBJ_FDOPENDIR_FALSE}"; then + GL_COND_OBJ_FDOPENDIR_TRUE='#' + GL_COND_OBJ_FDOPENDIR_FALSE='#' fi @@ -23716,6 +24170,7 @@ + GL_GNULIB_FDOPENDIR=1 @@ -23837,19 +24292,25 @@ *) REPLACE_FFLUSH=1 ;; esac - if test $REPLACE_FFLUSH = 1; then - - - - - - + if test $REPLACE_FFLUSH = 1; then + GL_COND_OBJ_FFLUSH_TRUE= + GL_COND_OBJ_FFLUSH_FALSE='#' +else + GL_COND_OBJ_FFLUSH_TRUE='#' + GL_COND_OBJ_FFLUSH_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FFLUSH_TRUE}" && test -z "${GL_COND_OBJ_FFLUSH_FALSE}"; then + GL_COND_OBJ_FFLUSH_TRUE='#' + GL_COND_OBJ_FFLUSH_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS fflush.$ac_objext" + if test -z "$GL_COND_OBJ_FFLUSH_TRUE"; then : : - fi + +fi printf "%s\n" "#define GNULIB_FFLUSH 1" >>confdefs.h @@ -23880,16 +24341,16 @@ - FLOAT_H= + GL_GENERATE_FLOAT_H=false REPLACE_FLOAT_LDBL=0 case "$host_os" in aix* | beos* | openbsd* | mirbsd* | irix*) - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; freebsd* | dragonfly*) case "$host_cpu" in i3456786 ) - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; x86_64 ) # On x86_64 systems, the C compiler may still be generating @@ -23907,7 +24368,7 @@ then : else $as_nop - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; @@ -23916,14 +24377,14 @@ linux*) case "$host_cpu" in powerpc*) - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; esac ;; esac case "$host_os" in aix* | freebsd* | dragonfly* | linux*) - if test -n "$FLOAT_H"; then + if $GL_GENERATE_FLOAT_H; then REPLACE_FLOAT_LDBL=1 fi ;; @@ -23994,11 +24455,11 @@ case "$gl_cv_func_itold_works" in *no) REPLACE_ITOLD=1 - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; esac - if test -n "$FLOAT_H"; then + if $GL_GENERATE_FLOAT_H; then @@ -24049,8 +24510,8 @@ gl_cv_absolute_float_h=`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"` - gl_header=$gl_cv_absolute_float_h - gl_cv_next_float_h='"'$gl_header'"' + gl_header=$gl_cv_absolute_float_h + gl_cv_next_float_h='"'$gl_header'"' fi @@ -24073,29 +24534,34 @@ fi - if test -n "$FLOAT_H"; then - GL_GENERATE_FLOAT_H_TRUE= - GL_GENERATE_FLOAT_H_FALSE='#' -else - GL_GENERATE_FLOAT_H_TRUE='#' - GL_GENERATE_FLOAT_H_FALSE= -fi - - - - if test $REPLACE_FLOAT_LDBL = 1; then - - + case "$GL_GENERATE_FLOAT_H" in + false) FLOAT_H='' ;; + true) + if test -z "$FLOAT_H"; then + FLOAT_H="${gl_source_base_prefix}float.h" + fi + ;; + *) echo "*** GL_GENERATE_FLOAT_H is not set correctly" 1>&2; exit 1 ;; + esac - gl_LIBOBJS="$gl_LIBOBJS float.$ac_objext" + if $GL_GENERATE_FLOAT_H; then + GL_GENERATE_FLOAT_H_TRUE= + GL_GENERATE_FLOAT_H_FALSE='#' +else + GL_GENERATE_FLOAT_H_TRUE='#' + GL_GENERATE_FLOAT_H_FALSE= +fi +: + if test -z "${GL_GENERATE_FLOAT_H_TRUE}" && test -z "${GL_GENERATE_FLOAT_H_FALSE}"; then + GL_GENERATE_FLOAT_H_TRUE='#' + GL_GENERATE_FLOAT_H_FALSE='#' fi - if test $REPLACE_ITOLD = 1; then @@ -24103,9 +24569,31 @@ + if test $REPLACE_FLOAT_LDBL = 1; then + GL_COND_OBJ_FLOAT_TRUE= + GL_COND_OBJ_FLOAT_FALSE='#' +else + GL_COND_OBJ_FLOAT_TRUE='#' + GL_COND_OBJ_FLOAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FLOAT_TRUE}" && test -z "${GL_COND_OBJ_FLOAT_FALSE}"; then + GL_COND_OBJ_FLOAT_TRUE='#' + GL_COND_OBJ_FLOAT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS itold.$ac_objext" + if test $REPLACE_ITOLD = 1; then + GL_COND_OBJ_ITOLD_TRUE= + GL_COND_OBJ_ITOLD_FALSE='#' +else + GL_COND_OBJ_ITOLD_TRUE='#' + GL_COND_OBJ_ITOLD_FALSE= +fi +: + if test -z "${GL_COND_OBJ_ITOLD_TRUE}" && test -z "${GL_COND_OBJ_ITOLD_FALSE}"; then + GL_COND_OBJ_ITOLD_TRUE='#' + GL_COND_OBJ_ITOLD_FALSE='#' fi @@ -24122,6 +24610,7 @@ + gl_cv_func_fprintf_posix=no case "$gl_cv_func_printf_sizes_c99" in *yes) @@ -24540,17 +25029,18 @@ HAVE_DECL_FPURGE=0 fi - if test $HAVE_FPURGE = 0 || test $REPLACE_FPURGE = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fpurge.$ac_objext" + if test $HAVE_FPURGE = 0 || test $REPLACE_FPURGE = 1; then + GL_COND_OBJ_FPURGE_TRUE= + GL_COND_OBJ_FPURGE_FALSE='#' +else + GL_COND_OBJ_FPURGE_TRUE='#' + GL_COND_OBJ_FPURGE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FPURGE_TRUE}" && test -z "${GL_COND_OBJ_FPURGE_FALSE}"; then + GL_COND_OBJ_FPURGE_TRUE='#' + GL_COND_OBJ_FPURGE_FALSE='#' fi @@ -24561,6 +25051,7 @@ + GL_GNULIB_FPURGE=1 @@ -24623,19 +25114,25 @@ *) REPLACE_FREE=1 ;; esac - if test $REPLACE_FREE = 1; then - - - - - - + if test $REPLACE_FREE = 1; then + GL_COND_OBJ_FREE_TRUE= + GL_COND_OBJ_FREE_FALSE='#' +else + GL_COND_OBJ_FREE_TRUE='#' + GL_COND_OBJ_FREE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FREE_TRUE}" && test -z "${GL_COND_OBJ_FREE_FALSE}"; then + GL_COND_OBJ_FREE_TRUE='#' + GL_COND_OBJ_FREE_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS free.$ac_objext" + if test -z "$GL_COND_OBJ_FREE_TRUE"; then : : - fi + +fi @@ -25054,17 +25551,18 @@ REPLACE_FSEEK=1 fi - if test $REPLACE_FSEEK = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fseek.$ac_objext" + if test $REPLACE_FSEEK = 1; then + GL_COND_OBJ_FSEEK_TRUE= + GL_COND_OBJ_FSEEK_FALSE='#' +else + GL_COND_OBJ_FSEEK_TRUE='#' + GL_COND_OBJ_FSEEK_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FSEEK_TRUE}" && test -z "${GL_COND_OBJ_FSEEK_FALSE}"; then + GL_COND_OBJ_FSEEK_TRUE='#' + GL_COND_OBJ_FSEEK_FALSE='#' fi @@ -25075,6 +25573,7 @@ + GL_GNULIB_FSEEK=1 @@ -25246,16 +25745,21 @@ fi - if test $HAVE_FSEEKO = 0 || test $REPLACE_FSEEKO = 1; then - - - - - - + if test $HAVE_FSEEKO = 0 || test $REPLACE_FSEEKO = 1; then + GL_COND_OBJ_FSEEKO_TRUE= + GL_COND_OBJ_FSEEKO_FALSE='#' +else + GL_COND_OBJ_FSEEKO_TRUE='#' + GL_COND_OBJ_FSEEKO_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FSEEKO_TRUE}" && test -z "${GL_COND_OBJ_FSEEKO_FALSE}"; then + GL_COND_OBJ_FSEEKO_TRUE='#' + GL_COND_OBJ_FSEEKO_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS fseeko.$ac_objext" + if test -z "$GL_COND_OBJ_FSEEKO_TRUE"; then : ac_fn_c_check_func "$LINENO" "_fseeki64" "ac_cv_func__fseeki64" @@ -25277,7 +25781,8 @@ fi - fi + +fi @@ -25300,22 +25805,24 @@ - if test $ac_cv_func___fseterr = no; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS fseterr.$ac_objext" + if test $ac_cv_func___fseterr = no; then + GL_COND_OBJ_FSETERR_TRUE= + GL_COND_OBJ_FSETERR_FALSE='#' +else + GL_COND_OBJ_FSETERR_TRUE='#' + GL_COND_OBJ_FSETERR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FSETERR_TRUE}" && test -z "${GL_COND_OBJ_FSETERR_FALSE}"; then + GL_COND_OBJ_FSETERR_TRUE='#' + GL_COND_OBJ_FSETERR_FALSE='#' fi + case "$host_os" in mingw* | solaris*) REPLACE_FSTAT=1 @@ -25340,16 +25847,21 @@ fi - if test $REPLACE_FSTAT = 1; then - - - - - - + if test $REPLACE_FSTAT = 1; then + GL_COND_OBJ_FSTAT_TRUE= + GL_COND_OBJ_FSTAT_FALSE='#' +else + GL_COND_OBJ_FSTAT_TRUE='#' + GL_COND_OBJ_FSTAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FSTAT_TRUE}" && test -z "${GL_COND_OBJ_FSTAT_FALSE}"; then + GL_COND_OBJ_FSTAT_TRUE='#' + GL_COND_OBJ_FSTAT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS fstat.$ac_objext" + if test -z "$GL_COND_OBJ_FSTAT_TRUE"; then : case "$host_os" in mingw*) @@ -25370,125 +25882,24 @@ : - fi - - - - - - - - - - GL_GNULIB_FSTAT=1 - - - - -printf "%s\n" "#define GNULIB_TEST_FSTAT 1" >>confdefs.h - - - - - - - - - - - if test $ac_cv_func_fstatat = no; then - HAVE_FSTATAT=0 - else - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether fstatat (..., 0) works" >&5 -printf %s "checking whether fstatat (..., 0) works... " >&6; } -if test ${gl_cv_func_fstatat_zero_flag+y} -then : - printf %s "(cached) " >&6 -else $as_nop - if test "$cross_compiling" = yes -then : - case "$host_os" in - aix*) gl_cv_func_fstatat_zero_flag="guessing no";; - *) gl_cv_func_fstatat_zero_flag="guessing yes";; - esac - -else $as_nop - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ - - #include <fcntl.h> - #include <sys/stat.h> - int - main (void) - { - struct stat a; - return fstatat (AT_FDCWD, ".", &a, 0) != 0; - } - -_ACEOF -if ac_fn_c_try_run "$LINENO" -then : - gl_cv_func_fstatat_zero_flag=yes -else $as_nop - gl_cv_func_fstatat_zero_flag=no -fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ - conftest.$ac_objext conftest.beam conftest.$ac_ext fi -fi -{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_fstatat_zero_flag" >&5 -printf "%s\n" "$gl_cv_func_fstatat_zero_flag" >&6; } - - case $gl_cv_func_fstatat_zero_flag+$gl_cv_func_lstat_dereferences_slashed_symlink in - *yes+*yes) ;; - *) REPLACE_FSTATAT=1 ;; - esac - - case $host_os in - solaris*) - REPLACE_FSTATAT=1 ;; - esac - - case $REPLACE_FSTATAT,$gl_cv_func_fstatat_zero_flag in - 1,*yes) - -printf "%s\n" "#define HAVE_WORKING_FSTATAT_ZERO_FLAG 1" >>confdefs.h - - ;; - esac - fi - - if test $HAVE_FSTATAT = 0 || test $REPLACE_FSTATAT = 1; then - - - - - gl_LIBOBJS="$gl_LIBOBJS fstatat.$ac_objext" - - fi - + GL_GNULIB_FSTAT=1 - GL_GNULIB_FSTATAT=1 - - - - - -printf "%s\n" "#define GNULIB_TEST_FSTATAT 1" >>confdefs.h +printf "%s\n" "#define GNULIB_TEST_FSTAT 1" >>confdefs.h @@ -25499,19 +25910,25 @@ HAVE_FSYNC=0 fi - if test $HAVE_FSYNC = 0; then - - - - - - + if test $HAVE_FSYNC = 0; then + GL_COND_OBJ_FSYNC_TRUE= + GL_COND_OBJ_FSYNC_FALSE='#' +else + GL_COND_OBJ_FSYNC_TRUE='#' + GL_COND_OBJ_FSYNC_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FSYNC_TRUE}" && test -z "${GL_COND_OBJ_FSYNC_FALSE}"; then + GL_COND_OBJ_FSYNC_TRUE='#' + GL_COND_OBJ_FSYNC_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS fsync.$ac_objext" + if test -z "$GL_COND_OBJ_FSYNC_TRUE"; then : : - fi + +fi @@ -25538,17 +25955,18 @@ REPLACE_FTELL=1 fi - if test $REPLACE_FTELL = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS ftell.$ac_objext" + if test $REPLACE_FTELL = 1; then + GL_COND_OBJ_FTELL_TRUE= + GL_COND_OBJ_FTELL_FALSE='#' +else + GL_COND_OBJ_FTELL_TRUE='#' + GL_COND_OBJ_FTELL_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FTELL_TRUE}" && test -z "${GL_COND_OBJ_FTELL_FALSE}"; then + GL_COND_OBJ_FTELL_TRUE='#' + GL_COND_OBJ_FTELL_FALSE='#' fi @@ -25559,6 +25977,7 @@ + GL_GNULIB_FTELL=1 @@ -25738,16 +26157,21 @@ fi fi - if test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1; then - - - - - - + if test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1; then + GL_COND_OBJ_FTELLO_TRUE= + GL_COND_OBJ_FTELLO_FALSE='#' +else + GL_COND_OBJ_FTELLO_TRUE='#' + GL_COND_OBJ_FTELLO_FALSE= +fi +: + if test -z "${GL_COND_OBJ_FTELLO_TRUE}" && test -z "${GL_COND_OBJ_FTELLO_FALSE}"; then + GL_COND_OBJ_FTELLO_TRUE='#' + GL_COND_OBJ_FTELLO_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS ftello.$ac_objext" + if test -z "$GL_COND_OBJ_FTELLO_TRUE"; then : ac_fn_c_check_func "$LINENO" "_ftelli64" "ac_cv_func__ftelli64" @@ -25758,7 +26182,8 @@ fi - fi + +fi @@ -25790,17 +26215,18 @@ ;; esac - if test $REPLACE_GETCWD = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS getcwd-lgpl.$ac_objext" + if test $REPLACE_GETCWD = 1; then + GL_COND_OBJ_GETCWD_LGPL_TRUE= + GL_COND_OBJ_GETCWD_LGPL_FALSE='#' +else + GL_COND_OBJ_GETCWD_LGPL_TRUE='#' + GL_COND_OBJ_GETCWD_LGPL_FALSE= +fi +: + if test -z "${GL_COND_OBJ_GETCWD_LGPL_TRUE}" && test -z "${GL_COND_OBJ_GETCWD_LGPL_FALSE}"; then + GL_COND_OBJ_GETCWD_LGPL_TRUE='#' + GL_COND_OBJ_GETCWD_LGPL_FALSE='#' fi @@ -25811,6 +26237,7 @@ + GL_GNULIB_GETCWD=1 @@ -25892,19 +26319,25 @@ HAVE_GETDTABLESIZE=0 fi - if test $HAVE_GETDTABLESIZE = 0 || test $REPLACE_GETDTABLESIZE = 1; then - - - - - - + if test $HAVE_GETDTABLESIZE = 0 || test $REPLACE_GETDTABLESIZE = 1; then + GL_COND_OBJ_GETDTABLESIZE_TRUE= + GL_COND_OBJ_GETDTABLESIZE_FALSE='#' +else + GL_COND_OBJ_GETDTABLESIZE_TRUE='#' + GL_COND_OBJ_GETDTABLESIZE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_GETDTABLESIZE_TRUE}" && test -z "${GL_COND_OBJ_GETDTABLESIZE_FALSE}"; then + GL_COND_OBJ_GETDTABLESIZE_TRUE='#' + GL_COND_OBJ_GETDTABLESIZE_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS getdtablesize.$ac_objext" + if test -z "$GL_COND_OBJ_GETDTABLESIZE_TRUE"; then : : - fi + +fi @@ -25938,6 +26371,8 @@ REPLACE_GETOPT=1 fi + GL_GENERATE_GETOPT_H=false + GL_GENERATE_GETOPT_CDEFS_H=false if test $REPLACE_GETOPT = 1; then @@ -25951,14 +26386,39 @@ printf "%s\n" "#define __GETOPT_PREFIX rpl_" >>confdefs.h - GETOPT_H=getopt.h - GETOPT_CDEFS_H=getopt-cdefs.h + GL_GENERATE_GETOPT_H=true + GL_GENERATE_GETOPT_CDEFS_H=true + + fi + + + case "$GL_GENERATE_GETOPT_H" in + false) GETOPT_H='' ;; + true) + if test -z "$GETOPT_H"; then + GETOPT_H="${gl_source_base_prefix}getopt.h" + fi + ;; + *) echo "*** GL_GENERATE_GETOPT_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_GETOPT_H; then + GL_GENERATE_GETOPT_H_TRUE= + GL_GENERATE_GETOPT_H_FALSE='#' +else + GL_GENERATE_GETOPT_H_TRUE='#' + GL_GENERATE_GETOPT_H_FALSE= +fi +: + if test -z "${GL_GENERATE_GETOPT_H_TRUE}" && test -z "${GL_GENERATE_GETOPT_H_FALSE}"; then + GL_GENERATE_GETOPT_H_TRUE='#' + GL_GENERATE_GETOPT_H_FALSE='#' fi - if test $REPLACE_GETOPT = 1; then @@ -25967,8 +26427,29 @@ - gl_LIBOBJS="$gl_LIBOBJS getopt.$ac_objext" + case "$GL_GENERATE_GETOPT_CDEFS_H" in + false) GETOPT_CDEFS_H='' ;; + true) + if test -z "$GETOPT_CDEFS_H"; then + GETOPT_CDEFS_H="${gl_source_base_prefix}getopt-cdefs.h" + fi + ;; + *) echo "*** GL_GENERATE_GETOPT_CDEFS_H is not set correctly" 1>&2; exit 1 ;; + esac + + if $GL_GENERATE_GETOPT_CDEFS_H; then + GL_GENERATE_GETOPT_CDEFS_H_TRUE= + GL_GENERATE_GETOPT_CDEFS_H_FALSE='#' +else + GL_GENERATE_GETOPT_CDEFS_H_TRUE='#' + GL_GENERATE_GETOPT_CDEFS_H_FALSE= +fi +: + if test -z "${GL_GENERATE_GETOPT_CDEFS_H_TRUE}" && test -z "${GL_GENERATE_GETOPT_CDEFS_H_FALSE}"; then + GL_GENERATE_GETOPT_CDEFS_H_TRUE='#' + GL_GENERATE_GETOPT_CDEFS_H_FALSE='#' + fi @@ -25976,8 +26457,20 @@ + if test $REPLACE_GETOPT = 1; then + GL_COND_OBJ_GETOPT_TRUE= + GL_COND_OBJ_GETOPT_FALSE='#' +else + GL_COND_OBJ_GETOPT_TRUE='#' + GL_COND_OBJ_GETOPT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_GETOPT_TRUE}" && test -z "${GL_COND_OBJ_GETOPT_FALSE}"; then + GL_COND_OBJ_GETOPT_TRUE='#' + GL_COND_OBJ_GETOPT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS getopt1.$ac_objext" + if test -z "$GL_COND_OBJ_GETOPT_TRUE"; then : @@ -25988,7 +26481,8 @@ GL_GNULIB_UNISTD_H_GETOPT=1 - fi + +fi @@ -26190,19 +26684,25 @@ printf "%s\n" "#define GETTIMEOFDAY_TIMEZONE $gl_gettimeofday_timezone" >>confdefs.h - if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then - - - - - - + if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then + GL_COND_OBJ_GETTIMEOFDAY_TRUE= + GL_COND_OBJ_GETTIMEOFDAY_FALSE='#' +else + GL_COND_OBJ_GETTIMEOFDAY_TRUE='#' + GL_COND_OBJ_GETTIMEOFDAY_FALSE= +fi +: + if test -z "${GL_COND_OBJ_GETTIMEOFDAY_TRUE}" && test -z "${GL_COND_OBJ_GETTIMEOFDAY_FALSE}"; then + GL_COND_OBJ_GETTIMEOFDAY_TRUE='#' + GL_COND_OBJ_GETTIMEOFDAY_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS gettimeofday.$ac_objext" + if test -z "$GL_COND_OBJ_GETTIMEOFDAY_TRUE"; then : : - fi + +fi @@ -26248,6 +26748,7 @@ + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether isnan(double) can be used without linking with libm" >&5 printf %s "checking whether isnan(double) can be used without linking with libm... " >&6; } if test ${gl_cv_func_isnand_no_libm+y} @@ -27037,6 +27538,39 @@ + + + case "$GL_GENERATE_LIMITS_H" in + false) LIMITS_H='' ;; + true) + if test -z "$LIMITS_H"; then + LIMITS_H="${gl_source_base_prefix}limits.h" + fi + ;; + *) echo "*** GL_GENERATE_LIMITS_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_LIMITS_H; then + GL_GENERATE_LIMITS_H_TRUE= + GL_GENERATE_LIMITS_H_FALSE='#' +else + GL_GENERATE_LIMITS_H_TRUE='#' + GL_GENERATE_LIMITS_H_FALSE= +fi +: + if test -z "${GL_GENERATE_LIMITS_H_TRUE}" && test -z "${GL_GENERATE_LIMITS_H_FALSE}"; then + GL_GENERATE_LIMITS_H_TRUE='#' + GL_GENERATE_LIMITS_H_FALSE='#' + fi + + + + + + + + if test "$gl_threads_api" = posix; then # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the # pthread_rwlock_* functions. @@ -27343,7 +27877,7 @@ fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_lseek_pipe" >&5 printf "%s\n" "$gl_cv_func_lseek_pipe" >&6; } - if test $gl_cv_func_lseek_pipe = no; then + if test "$gl_cv_func_lseek_pipe" = no; then REPLACE_LSEEK=1 printf "%s\n" "#define LSEEK_PIPE_BROKEN 1" >>confdefs.h @@ -27355,17 +27889,23 @@ REPLACE_LSEEK=1 fi - if test $REPLACE_LSEEK = 1; then - - - - - - - + case $host_os in + darwin*) + REPLACE_LSEEK=1;; + esac - gl_LIBOBJS="$gl_LIBOBJS lseek.$ac_objext" + if test $REPLACE_LSEEK = 1; then + GL_COND_OBJ_LSEEK_TRUE= + GL_COND_OBJ_LSEEK_FALSE='#' +else + GL_COND_OBJ_LSEEK_TRUE='#' + GL_COND_OBJ_LSEEK_FALSE= +fi +: + if test -z "${GL_COND_OBJ_LSEEK_TRUE}" && test -z "${GL_COND_OBJ_LSEEK_FALSE}"; then + GL_COND_OBJ_LSEEK_TRUE='#' + GL_COND_OBJ_LSEEK_FALSE='#' fi @@ -27376,6 +27916,7 @@ + GL_GNULIB_LSEEK=1 @@ -27401,19 +27942,25 @@ HAVE_LSTAT=0 fi - if test $REPLACE_LSTAT = 1; then - - - - - - + if test $REPLACE_LSTAT = 1; then + GL_COND_OBJ_LSTAT_TRUE= + GL_COND_OBJ_LSTAT_FALSE='#' +else + GL_COND_OBJ_LSTAT_TRUE='#' + GL_COND_OBJ_LSTAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_LSTAT_TRUE}" && test -z "${GL_COND_OBJ_LSTAT_FALSE}"; then + GL_COND_OBJ_LSTAT_TRUE='#' + GL_COND_OBJ_LSTAT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS lstat.$ac_objext" + if test -z "$GL_COND_OBJ_LSTAT_TRUE"; then : : - fi + +fi @@ -27439,7 +27986,8 @@ - if test $REPLACE_MALLOC = 0; then + REPLACE_MALLOC_FOR_MALLOC_GNU="$REPLACE_MALLOC_FOR_MALLOC_POSIX" + if test $REPLACE_MALLOC_FOR_MALLOC_GNU = 0; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether malloc (0) returns nonnull" >&5 printf %s "checking whether malloc (0) returns nonnull... " >&6; } @@ -27494,12 +28042,12 @@ *yes) : ;; #( *) : - REPLACE_MALLOC=1 ;; + REPLACE_MALLOC_FOR_MALLOC_GNU=1 ;; esac fi - if test $REPLACE_MALLOC = 1; then + if test $REPLACE_MALLOC_FOR_MALLOC_GNU = 1; then @@ -27512,7 +28060,6 @@ fi - if test $REPLACE_MALLOC = 1; then @@ -27521,25 +28068,29 @@ - gl_LIBOBJS="$gl_LIBOBJS malloc.$ac_objext" + GL_GNULIB_MALLOC_GNU=1 - fi +printf "%s\n" "#define GNULIB_TEST_MALLOC_GNU 1" >>confdefs.h + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then - GL_GNULIB_MALLOC_POSIX=1 -printf "%s\n" "#define GNULIB_TEST_MALLOC_POSIX 1" >>confdefs.h + + + gl_LIBOBJS="$gl_LIBOBJS malloc.$ac_objext" + + fi @@ -27549,11 +28100,14 @@ + GL_GNULIB_MALLOC_POSIX=1 - if test $REPLACE_MEMCHR = 1; then + +printf "%s\n" "#define GNULIB_TEST_MALLOC_POSIX 1" >>confdefs.h + @@ -27562,7 +28116,26 @@ - gl_LIBOBJS="$gl_LIBOBJS memchr.$ac_objext" + + + + + + + if test $REPLACE_MEMCHR = 1; then + GL_COND_OBJ_MEMCHR_TRUE= + GL_COND_OBJ_MEMCHR_FALSE='#' +else + GL_COND_OBJ_MEMCHR_TRUE='#' + GL_COND_OBJ_MEMCHR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_MEMCHR_TRUE}" && test -z "${GL_COND_OBJ_MEMCHR_FALSE}"; then + GL_COND_OBJ_MEMCHR_TRUE='#' + GL_COND_OBJ_MEMCHR_FALSE='#' + fi + + if test -z "$GL_COND_OBJ_MEMCHR_TRUE"; then : ac_fn_c_check_header_compile "$LINENO" "bp-sym.h" "ac_cv_header_bp_sym_h" "$ac_includes_default" @@ -27573,7 +28146,13 @@ fi - fi + +fi + + + + + @@ -27610,21 +28189,32 @@ HAVE_MEMPCPY=0 fi - if test $HAVE_MEMPCPY = 0; then + if test $HAVE_MEMPCPY = 0; then + GL_COND_OBJ_MEMPCPY_TRUE= + GL_COND_OBJ_MEMPCPY_FALSE='#' +else + GL_COND_OBJ_MEMPCPY_TRUE='#' + GL_COND_OBJ_MEMPCPY_FALSE= +fi +: + if test -z "${GL_COND_OBJ_MEMPCPY_TRUE}" && test -z "${GL_COND_OBJ_MEMPCPY_FALSE}"; then + GL_COND_OBJ_MEMPCPY_TRUE='#' + GL_COND_OBJ_MEMPCPY_FALSE='#' + fi + if test -z "$GL_COND_OBJ_MEMPCPY_TRUE"; then : + : +fi - gl_LIBOBJS="$gl_LIBOBJS mempcpy.$ac_objext" - : - fi @@ -27661,19 +28251,30 @@ fi - if test $ac_cv_func_memrchr = no; then + if test $ac_cv_func_memrchr = no; then + GL_COND_OBJ_MEMRCHR_TRUE= + GL_COND_OBJ_MEMRCHR_FALSE='#' +else + GL_COND_OBJ_MEMRCHR_TRUE='#' + GL_COND_OBJ_MEMRCHR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_MEMRCHR_TRUE}" && test -z "${GL_COND_OBJ_MEMRCHR_FALSE}"; then + GL_COND_OBJ_MEMRCHR_TRUE='#' + GL_COND_OBJ_MEMRCHR_FALSE='#' + fi + if test -z "$GL_COND_OBJ_MEMRCHR_TRUE"; then : + : +fi - gl_LIBOBJS="$gl_LIBOBJS memrchr.$ac_objext" - : - fi @@ -27697,33 +28298,37 @@ - if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS msvc-inval.$ac_objext" + if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then + GL_COND_OBJ_MSVC_INVAL_TRUE= + GL_COND_OBJ_MSVC_INVAL_FALSE='#' +else + GL_COND_OBJ_MSVC_INVAL_TRUE='#' + GL_COND_OBJ_MSVC_INVAL_FALSE= +fi +: + if test -z "${GL_COND_OBJ_MSVC_INVAL_TRUE}" && test -z "${GL_COND_OBJ_MSVC_INVAL_FALSE}"; then + GL_COND_OBJ_MSVC_INVAL_TRUE='#' + GL_COND_OBJ_MSVC_INVAL_FALSE='#' fi - if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then - - - - - - - gl_LIBOBJS="$gl_LIBOBJS msvc-nothrow.$ac_objext" - + if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then + GL_COND_OBJ_MSVC_NOTHROW_TRUE= + GL_COND_OBJ_MSVC_NOTHROW_FALSE='#' +else + GL_COND_OBJ_MSVC_NOTHROW_TRUE='#' + GL_COND_OBJ_MSVC_NOTHROW_FALSE= +fi +: + if test -z "${GL_COND_OBJ_MSVC_NOTHROW_TRUE}" && test -z "${GL_COND_OBJ_MSVC_NOTHROW_FALSE}"; then + GL_COND_OBJ_MSVC_NOTHROW_TRUE='#' + GL_COND_OBJ_MSVC_NOTHROW_FALSE='#' fi + printf "%s\n" "#define GNULIB_MSVC_NOTHROW 1" >>confdefs.h @@ -27833,22 +28438,28 @@ - if test $REPLACE_OPEN = 1; then - - - - - - + if test $REPLACE_OPEN = 1; then + GL_COND_OBJ_OPEN_TRUE= + GL_COND_OBJ_OPEN_FALSE='#' +else + GL_COND_OBJ_OPEN_TRUE='#' + GL_COND_OBJ_OPEN_FALSE= +fi +: + if test -z "${GL_COND_OBJ_OPEN_TRUE}" && test -z "${GL_COND_OBJ_OPEN_FALSE}"; then + GL_COND_OBJ_OPEN_TRUE='#' + GL_COND_OBJ_OPEN_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS open.$ac_objext" + if test -z "$GL_COND_OBJ_OPEN_TRUE"; then : : - fi + +fi @@ -27888,22 +28499,28 @@ ;; esac - if test $HAVE_OPENAT = 0 || test $REPLACE_OPENAT = 1; then - - - - - - + if test $HAVE_OPENAT = 0 || test $REPLACE_OPENAT = 1; then + GL_COND_OBJ_OPENAT_TRUE= + GL_COND_OBJ_OPENAT_FALSE='#' +else + GL_COND_OBJ_OPENAT_TRUE='#' + GL_COND_OBJ_OPENAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_OPENAT_TRUE}" && test -z "${GL_COND_OBJ_OPENAT_FALSE}"; then + GL_COND_OBJ_OPENAT_TRUE='#' + GL_COND_OBJ_OPENAT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS openat.$ac_objext" + if test -z "$GL_COND_OBJ_OPENAT_TRUE"; then : : - fi + +fi printf "%s\n" "#define GNULIB_OPENAT 1" >>confdefs.h @@ -27967,17 +28584,18 @@ REPLACE_OPENDIR=1;; esac - if test $HAVE_OPENDIR = 0 || test $REPLACE_OPENDIR = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS opendir.$ac_objext" + if test $HAVE_OPENDIR = 0 || test $REPLACE_OPENDIR = 1; then + GL_COND_OBJ_OPENDIR_TRUE= + GL_COND_OBJ_OPENDIR_FALSE='#' +else + GL_COND_OBJ_OPENDIR_TRUE='#' + GL_COND_OBJ_OPENDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_OPENDIR_TRUE}" && test -z "${GL_COND_OBJ_OPENDIR_FALSE}"; then + GL_COND_OBJ_OPENDIR_TRUE='#' + GL_COND_OBJ_OPENDIR_FALSE='#' fi @@ -27988,6 +28606,7 @@ + GL_GNULIB_OPENDIR=1 @@ -28006,7 +28625,7 @@ - if test "$ERRNO_H:$REPLACE_STRERROR_0" != :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" != false:0; then REPLACE_PERROR=1 fi case ${gl_cv_func_strerror_r_works-unset} in @@ -28081,18 +28700,25 @@ ;; esac - if test $REPLACE_PERROR = 1; then - - + if test $REPLACE_PERROR = 1; then + GL_COND_OBJ_PERROR_TRUE= + GL_COND_OBJ_PERROR_FALSE='#' +else + GL_COND_OBJ_PERROR_TRUE='#' + GL_COND_OBJ_PERROR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_PERROR_TRUE}" && test -z "${GL_COND_OBJ_PERROR_FALSE}"; then + GL_COND_OBJ_PERROR_TRUE='#' + GL_COND_OBJ_PERROR_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS perror.$ac_objext" - fi @@ -28120,17 +28746,18 @@ HAVE_PIPE=0 fi - if test $HAVE_PIPE = 0; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS pipe.$ac_objext" + if test $HAVE_PIPE = 0; then + GL_COND_OBJ_PIPE_TRUE= + GL_COND_OBJ_PIPE_FALSE='#' +else + GL_COND_OBJ_PIPE_TRUE='#' + GL_COND_OBJ_PIPE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_PIPE_TRUE}" && test -z "${GL_COND_OBJ_PIPE_FALSE}"; then + GL_COND_OBJ_PIPE_TRUE='#' + GL_COND_OBJ_PIPE_FALSE='#' fi @@ -28141,6 +28768,7 @@ + GL_GNULIB_PIPE=1 @@ -28708,19 +29336,25 @@ fi - if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then - - - - - - + if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then + GL_COND_OBJ_RAISE_TRUE= + GL_COND_OBJ_RAISE_FALSE='#' +else + GL_COND_OBJ_RAISE_TRUE='#' + GL_COND_OBJ_RAISE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_RAISE_TRUE}" && test -z "${GL_COND_OBJ_RAISE_FALSE}"; then + GL_COND_OBJ_RAISE_TRUE='#' + GL_COND_OBJ_RAISE_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS raise.$ac_objext" + if test -z "$GL_COND_OBJ_RAISE_TRUE"; then : : - fi + +fi @@ -28754,17 +29388,18 @@ HAVE_READDIR=0 fi - if test $HAVE_READDIR = 0; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS readdir.$ac_objext" + if test $HAVE_READDIR = 0; then + GL_COND_OBJ_READDIR_TRUE= + GL_COND_OBJ_READDIR_FALSE='#' +else + GL_COND_OBJ_READDIR_TRUE='#' + GL_COND_OBJ_READDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_READDIR_TRUE}" && test -z "${GL_COND_OBJ_READDIR_FALSE}"; then + GL_COND_OBJ_READDIR_TRUE='#' + GL_COND_OBJ_READDIR_FALSE='#' fi @@ -28775,6 +29410,7 @@ + GL_GNULIB_READDIR=1 @@ -28788,7 +29424,7 @@ - if test $REPLACE_REALLOC = 0; then + if test $REPLACE_REALLOC_FOR_REALLOC_GNU = 0; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether realloc (0, 0) returns nonnull" >&5 printf %s "checking whether realloc (0, 0) returns nonnull... " >&6; } @@ -28843,12 +29479,12 @@ *yes) : ;; #( *) : - REPLACE_REALLOC=1 ;; + REPLACE_REALLOC_FOR_REALLOC_GNU=1 ;; esac fi - if test $REPLACE_REALLOC = 1; then + if test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1; then @@ -28863,11 +29499,30 @@ - if test $REPLACE_MALLOC = 1; then - REPLACE_REALLOC=1 + + + + + + + GL_GNULIB_REALLOC_GNU=1 + + + + + +printf "%s\n" "#define GNULIB_TEST_REALLOC_GNU 1" >>confdefs.h + + + + + + + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_REALLOC_FOR_REALLOC_POSIX=1 fi - if test $REPLACE_REALLOC = 1; then + if test $REPLACE_REALLOC_FOR_REALLOC_POSIX = 1; then @@ -28916,19 +29571,25 @@ REPLACE_REALLOCARRAY=1 fi - if test $HAVE_REALLOCARRAY = 0 || test $REPLACE_REALLOCARRAY = 1; then - - - - - - + if test $HAVE_REALLOCARRAY = 0 || test $REPLACE_REALLOCARRAY = 1; then + GL_COND_OBJ_REALLOCARRAY_TRUE= + GL_COND_OBJ_REALLOCARRAY_FALSE='#' +else + GL_COND_OBJ_REALLOCARRAY_TRUE='#' + GL_COND_OBJ_REALLOCARRAY_FALSE= +fi +: + if test -z "${GL_COND_OBJ_REALLOCARRAY_TRUE}" && test -z "${GL_COND_OBJ_REALLOCARRAY_FALSE}"; then + GL_COND_OBJ_REALLOCARRAY_TRUE='#' + GL_COND_OBJ_REALLOCARRAY_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS reallocarray.$ac_objext" + if test -z "$GL_COND_OBJ_REALLOCARRAY_TRUE"; then : : - fi + +fi printf "%s\n" "#define GNULIB_REALLOCARRAY 1" >>confdefs.h @@ -29028,17 +29689,18 @@ ;; esac - if test $REPLACE_RMDIR = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS rmdir.$ac_objext" + if test $REPLACE_RMDIR = 1; then + GL_COND_OBJ_RMDIR_TRUE= + GL_COND_OBJ_RMDIR_FALSE='#' +else + GL_COND_OBJ_RMDIR_TRUE='#' + GL_COND_OBJ_RMDIR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_RMDIR_TRUE}" && test -z "${GL_COND_OBJ_RMDIR_FALSE}"; then + GL_COND_OBJ_RMDIR_TRUE='#' + GL_COND_OBJ_RMDIR_FALSE='#' fi @@ -29049,6 +29711,7 @@ + GL_GNULIB_RMDIR=1 @@ -29086,16 +29749,21 @@ HAVE_SIGACTION=0 fi - if test $HAVE_SIGACTION = 0; then - - - - - - + if test $HAVE_SIGACTION = 0; then + GL_COND_OBJ_SIGACTION_TRUE= + GL_COND_OBJ_SIGACTION_FALSE='#' +else + GL_COND_OBJ_SIGACTION_TRUE='#' + GL_COND_OBJ_SIGACTION_FALSE= +fi +: + if test -z "${GL_COND_OBJ_SIGACTION_TRUE}" && test -z "${GL_COND_OBJ_SIGACTION_FALSE}"; then + GL_COND_OBJ_SIGACTION_TRUE='#' + GL_COND_OBJ_SIGACTION_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS sigaction.$ac_objext" + if test -z "$GL_COND_OBJ_SIGACTION_TRUE"; then : @@ -29119,7 +29787,8 @@ HAVE_SIGINFO_T=0 fi - fi + +fi @@ -29148,6 +29817,7 @@ + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for signbit macro" >&5 printf %s "checking for signbit macro... " >&6; } if test ${gl_cv_func_signbit+y} @@ -29889,37 +30559,18 @@ fi fi - if test $REPLACE_SIGNBIT = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS signbitf.$ac_objext" - - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS signbitd.$ac_objext" - - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS signbitl.$ac_objext" + if test $REPLACE_SIGNBIT = 1; then + GL_COND_OBJ_SIGNBIT3_TRUE= + GL_COND_OBJ_SIGNBIT3_FALSE='#' +else + GL_COND_OBJ_SIGNBIT3_TRUE='#' + GL_COND_OBJ_SIGNBIT3_FALSE= +fi +: + if test -z "${GL_COND_OBJ_SIGNBIT3_TRUE}" && test -z "${GL_COND_OBJ_SIGNBIT3_FALSE}"; then + GL_COND_OBJ_SIGNBIT3_TRUE='#' + GL_COND_OBJ_SIGNBIT3_FALSE='#' fi @@ -29930,6 +30581,7 @@ + GL_GNULIB_SIGNBIT=1 @@ -29953,19 +30605,25 @@ fi - if test $HAVE_POSIX_SIGNALBLOCKING = 0; then - - - - - - + if test $HAVE_POSIX_SIGNALBLOCKING = 0; then + GL_COND_OBJ_SIGPROCMASK_TRUE= + GL_COND_OBJ_SIGPROCMASK_FALSE='#' +else + GL_COND_OBJ_SIGPROCMASK_TRUE='#' + GL_COND_OBJ_SIGPROCMASK_FALSE= +fi +: + if test -z "${GL_COND_OBJ_SIGPROCMASK_TRUE}" && test -z "${GL_COND_OBJ_SIGPROCMASK_FALSE}"; then + GL_COND_OBJ_SIGPROCMASK_TRUE='#' + GL_COND_OBJ_SIGPROCMASK_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS sigprocmask.$ac_objext" + if test -z "$GL_COND_OBJ_SIGPROCMASK_TRUE"; then : : - fi + +fi @@ -30194,16 +30852,21 @@ ;; esac - if test $REPLACE_STAT = 1; then - - - - - - + if test $REPLACE_STAT = 1; then + GL_COND_OBJ_STAT_TRUE= + GL_COND_OBJ_STAT_FALSE='#' +else + GL_COND_OBJ_STAT_TRUE='#' + GL_COND_OBJ_STAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STAT_TRUE}" && test -z "${GL_COND_OBJ_STAT_FALSE}"; then + GL_COND_OBJ_STAT_TRUE='#' + GL_COND_OBJ_STAT_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS stat.$ac_objext" + if test -z "$GL_COND_OBJ_STAT_TRUE"; then : case "$host_os" in mingw*) @@ -30224,7 +30887,8 @@ : - fi + +fi @@ -30378,10 +31042,6 @@ - -printf "%s\n" "#define GNULIB_STATAT 1" >>confdefs.h - - { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working stdalign.h" >&5 printf %s "checking for working stdalign.h... " >&6; } if test ${gl_cv_header_working_stdalign_h+y} @@ -30442,19 +31102,42 @@ printf "%s\n" "$gl_cv_header_working_stdalign_h" >&6; } if test $gl_cv_header_working_stdalign_h = yes; then - STDALIGN_H='' + GL_GENERATE_STDALIGN_H=false else - STDALIGN_H='stdalign.h' + GL_GENERATE_STDALIGN_H=true fi - if test -n "$STDALIGN_H"; then + + + + case "$GL_GENERATE_STDALIGN_H" in + false) STDALIGN_H='' ;; + true) + if test -z "$STDALIGN_H"; then + STDALIGN_H="${gl_source_base_prefix}stdalign.h" + fi + ;; + *) echo "*** GL_GENERATE_STDALIGN_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_STDALIGN_H; then GL_GENERATE_STDALIGN_H_TRUE= GL_GENERATE_STDALIGN_H_FALSE='#' else GL_GENERATE_STDALIGN_H_TRUE='#' GL_GENERATE_STDALIGN_H_FALSE= fi +: + if test -z "${GL_GENERATE_STDALIGN_H_TRUE}" && test -z "${GL_GENERATE_STDALIGN_H_FALSE}"; then + GL_GENERATE_STDALIGN_H_TRUE='#' + GL_GENERATE_STDALIGN_H_FALSE='#' + fi + + + + @@ -30465,32 +31148,157 @@ case "$host_os" in solaris*) if test -z "$GCC"; then - STDBOOL_H='stdbool.h' + GL_GENERATE_STDBOOL_H=true else - STDBOOL_H='' + GL_GENERATE_STDBOOL_H=false fi ;; *) - STDBOOL_H='' + GL_GENERATE_STDBOOL_H=false ;; esac else - STDBOOL_H='stdbool.h' + GL_GENERATE_STDBOOL_H=true + fi + + if test "$ac_cv_type__Bool" = yes; then + HAVE__BOOL=1 + else + HAVE__BOOL=0 fi - if test -n "$STDBOOL_H"; then + + + + + + case "$GL_GENERATE_STDBOOL_H" in + false) STDBOOL_H='' ;; + true) + if test -z "$STDBOOL_H"; then + STDBOOL_H="${gl_source_base_prefix}stdbool.h" + fi + ;; + *) echo "*** GL_GENERATE_STDBOOL_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_STDBOOL_H; then GL_GENERATE_STDBOOL_H_TRUE= GL_GENERATE_STDBOOL_H_FALSE='#' else GL_GENERATE_STDBOOL_H_TRUE='#' GL_GENERATE_STDBOOL_H_FALSE= fi +: + if test -z "${GL_GENERATE_STDBOOL_H_TRUE}" && test -z "${GL_GENERATE_STDBOOL_H_FALSE}"; then + GL_GENERATE_STDBOOL_H_TRUE='#' + GL_GENERATE_STDBOOL_H_FALSE='#' + fi - if test "$ac_cv_type__Bool" = yes; then - HAVE__BOOL=1 - else - HAVE__BOOL=0 + + + + + + + + + + + + + + + case "$GL_GENERATE_STDDEF_H" in + false) STDDEF_H='' ;; + true) + if test -z "$STDDEF_H"; then + STDDEF_H="${gl_source_base_prefix}stddef.h" + fi + ;; + *) echo "*** GL_GENERATE_STDDEF_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_STDDEF_H; then + GL_GENERATE_STDDEF_H_TRUE= + GL_GENERATE_STDDEF_H_FALSE='#' +else + GL_GENERATE_STDDEF_H_TRUE='#' + GL_GENERATE_STDDEF_H_FALSE= +fi +: + if test -z "${GL_GENERATE_STDDEF_H_TRUE}" && test -z "${GL_GENERATE_STDDEF_H_FALSE}"; then + GL_GENERATE_STDDEF_H_TRUE='#' + GL_GENERATE_STDDEF_H_FALSE='#' + fi + + + + + + + + + + + + case "$GL_GENERATE_STDINT_H" in + false) STDINT_H='' ;; + true) + if test -z "$STDINT_H"; then + STDINT_H="${gl_source_base_prefix}stdint.h" + fi + ;; + *) echo "*** GL_GENERATE_STDINT_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_STDINT_H; then + GL_GENERATE_STDINT_H_TRUE= + GL_GENERATE_STDINT_H_FALSE='#' +else + GL_GENERATE_STDINT_H_TRUE='#' + GL_GENERATE_STDINT_H_FALSE= +fi +: + if test -z "${GL_GENERATE_STDINT_H_TRUE}" && test -z "${GL_GENERATE_STDINT_H_FALSE}"; then + GL_GENERATE_STDINT_H_TRUE='#' + GL_GENERATE_STDINT_H_FALSE='#' + fi + + + + + + + + + + case "$GL_GENERATE_LIMITS_H" in + false) LIMITS_H='' ;; + true) + if test -z "$LIMITS_H"; then + LIMITS_H="${gl_source_base_prefix}limits.h" + fi + ;; + *) echo "*** GL_GENERATE_LIMITS_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_LIMITS_H; then + GL_GENERATE_LIMITS_H_TRUE= + GL_GENERATE_LIMITS_H_FALSE='#' +else + GL_GENERATE_LIMITS_H_TRUE='#' + GL_GENERATE_LIMITS_H_FALSE= +fi +: + if test -z "${GL_GENERATE_LIMITS_H_TRUE}" && test -z "${GL_GENERATE_LIMITS_H_FALSE}"; then + GL_GENERATE_LIMITS_H_TRUE='#' + GL_GENERATE_LIMITS_H_FALSE='#' fi @@ -30506,6 +31314,32 @@ + if test $REPLACE_STDIO_READ_FUNCS = 1; then + GL_COND_OBJ_STDIO_READ_TRUE= + GL_COND_OBJ_STDIO_READ_FALSE='#' +else + GL_COND_OBJ_STDIO_READ_TRUE='#' + GL_COND_OBJ_STDIO_READ_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STDIO_READ_TRUE}" && test -z "${GL_COND_OBJ_STDIO_READ_FALSE}"; then + GL_COND_OBJ_STDIO_READ_TRUE='#' + GL_COND_OBJ_STDIO_READ_FALSE='#' + fi + + + if test $REPLACE_STDIO_WRITE_FUNCS = 1; then + GL_COND_OBJ_STDIO_WRITE_TRUE= + GL_COND_OBJ_STDIO_WRITE_FALSE='#' +else + GL_COND_OBJ_STDIO_WRITE_TRUE='#' + GL_COND_OBJ_STDIO_WRITE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STDIO_WRITE_TRUE}" && test -z "${GL_COND_OBJ_STDIO_WRITE_FALSE}"; then + GL_COND_OBJ_STDIO_WRITE_TRUE='#' + GL_COND_OBJ_STDIO_WRITE_FALSE='#' + fi @@ -30848,9 +31682,10 @@ + case "$host_os" in cygwin*) - STDNORETURN_H='stdnoreturn.h' + GL_GENERATE_STDNORETURN_H=true ;; *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working stdnoreturn.h" >&5 @@ -30898,20 +31733,44 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_stdnoreturn_h" >&5 printf "%s\n" "$gl_cv_header_working_stdnoreturn_h" >&6; } if test $gl_cv_header_working_stdnoreturn_h = yes; then - STDNORETURN_H='' + GL_GENERATE_STDNORETURN_H=false else - STDNORETURN_H='stdnoreturn.h' + GL_GENERATE_STDNORETURN_H=true fi ;; esac - if test -n "$STDNORETURN_H"; then + + + + + case "$GL_GENERATE_STDNORETURN_H" in + false) STDNORETURN_H='' ;; + true) + if test -z "$STDNORETURN_H"; then + STDNORETURN_H="${gl_source_base_prefix}stdnoreturn.h" + fi + ;; + *) echo "*** GL_GENERATE_STDNORETURN_H is not set correctly" 1>&2; exit 1 ;; + esac + + + if $GL_GENERATE_STDNORETURN_H; then GL_GENERATE_STDNORETURN_H_TRUE= GL_GENERATE_STDNORETURN_H_FALSE='#' else GL_GENERATE_STDNORETURN_H_TRUE='#' GL_GENERATE_STDNORETURN_H_FALSE= fi +: + if test -z "${GL_GENERATE_STDNORETURN_H_TRUE}" && test -z "${GL_GENERATE_STDNORETURN_H_FALSE}"; then + GL_GENERATE_STDNORETURN_H_TRUE='#' + GL_GENERATE_STDNORETURN_H_FALSE='#' + fi + + + + @@ -30931,21 +31790,32 @@ HAVE_STPCPY=0 fi - if test $HAVE_STPCPY = 0; then + if test $HAVE_STPCPY = 0; then + GL_COND_OBJ_STPCPY_TRUE= + GL_COND_OBJ_STPCPY_FALSE='#' +else + GL_COND_OBJ_STPCPY_TRUE='#' + GL_COND_OBJ_STPCPY_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STPCPY_TRUE}" && test -z "${GL_COND_OBJ_STPCPY_FALSE}"; then + GL_COND_OBJ_STPCPY_TRUE='#' + GL_COND_OBJ_STPCPY_FALSE='#' + fi + if test -z "$GL_COND_OBJ_STPCPY_TRUE"; then : + : +fi - gl_LIBOBJS="$gl_LIBOBJS stpcpy.$ac_objext" - : - fi @@ -30976,19 +31846,30 @@ HAVE_DECL_STRDUP=0 fi - if test $REPLACE_STRDUP = 1; then + if test $REPLACE_STRDUP = 1; then + GL_COND_OBJ_STRDUP_TRUE= + GL_COND_OBJ_STRDUP_FALSE='#' +else + GL_COND_OBJ_STRDUP_TRUE='#' + GL_COND_OBJ_STRDUP_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STRDUP_TRUE}" && test -z "${GL_COND_OBJ_STRDUP_FALSE}"; then + GL_COND_OBJ_STRDUP_TRUE='#' + GL_COND_OBJ_STRDUP_FALSE='#' + fi + if test -z "$GL_COND_OBJ_STRDUP_TRUE"; then : + : +fi - gl_LIBOBJS="$gl_LIBOBJS strdup.$ac_objext" - : - fi @@ -31015,7 +31896,7 @@ - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working strerror function" >&5 printf %s "checking for working strerror function... " >&6; } if test ${gl_cv_func_working_strerror+y} @@ -31075,21 +31956,28 @@ REPLACE_STRERROR=1 fi - if test $REPLACE_STRERROR = 1; then - - + if test $REPLACE_STRERROR = 1; then + GL_COND_OBJ_STRERROR_TRUE= + GL_COND_OBJ_STRERROR_FALSE='#' +else + GL_COND_OBJ_STRERROR_TRUE='#' + GL_COND_OBJ_STRERROR_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STRERROR_TRUE}" && test -z "${GL_COND_OBJ_STRERROR_FALSE}"; then + GL_COND_OBJ_STRERROR_TRUE='#' + GL_COND_OBJ_STRERROR_FALSE='#' + fi +printf "%s\n" "#define GNULIB_STRERROR 1" >>confdefs.h - gl_LIBOBJS="$gl_LIBOBJS strerror.$ac_objext" - fi -printf "%s\n" "#define GNULIB_STRERROR 1" >>confdefs.h @@ -31113,16 +32001,21 @@ - if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then - - - - - - + if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then + GL_COND_OBJ_STRERROR_OVERRIDE_TRUE= + GL_COND_OBJ_STRERROR_OVERRIDE_FALSE='#' +else + GL_COND_OBJ_STRERROR_OVERRIDE_TRUE='#' + GL_COND_OBJ_STRERROR_OVERRIDE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_STRERROR_OVERRIDE_TRUE}" && test -z "${GL_COND_OBJ_STRERROR_OVERRIDE_FALSE}"; then + GL_COND_OBJ_STRERROR_OVERRIDE_TRUE='#' + GL_COND_OBJ_STRERROR_OVERRIDE_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS strerror-override.$ac_objext" + if test -z "$GL_COND_OBJ_STRERROR_OVERRIDE_TRUE"; then : @@ -31146,9 +32039,8 @@ fi - fi - +fi @@ -31159,7 +32051,7 @@ fi if test $ac_cv_func_strerror_r = yes; then - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then if test $gl_cv_func_strerror_r_posix_signature = yes; then case "$gl_cv_func_strerror_r_works" in *no) REPLACE_STRERROR_R=1 ;; @@ -31172,7 +32064,9 @@ fi fi - if test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1; then + if test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1 +then : + @@ -31188,7 +32082,14 @@ - fi + + +fi + + + + + @@ -31247,6 +32148,13 @@ + + + + + + + : @@ -31262,6 +32170,7 @@ + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether unlink honors trailing slashes" >&5 printf %s "checking whether unlink honors trailing slashes... " >&6; } if test ${gl_cv_func_unlink_honors_slashes+y} @@ -31429,17 +32338,18 @@ ;; esac - if test $REPLACE_UNLINK = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS unlink.$ac_objext" + if test $REPLACE_UNLINK = 1; then + GL_COND_OBJ_UNLINK_TRUE= + GL_COND_OBJ_UNLINK_FALSE='#' +else + GL_COND_OBJ_UNLINK_TRUE='#' + GL_COND_OBJ_UNLINK_FALSE= +fi +: + if test -z "${GL_COND_OBJ_UNLINK_TRUE}" && test -z "${GL_COND_OBJ_UNLINK_FALSE}"; then + GL_COND_OBJ_UNLINK_TRUE='#' + GL_COND_OBJ_UNLINK_FALSE='#' fi @@ -31450,6 +32360,7 @@ + GL_GNULIB_UNLINK=1 @@ -31485,17 +32396,18 @@ esac fi - if test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1; then - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS unlinkat.$ac_objext" + if test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1; then + GL_COND_OBJ_UNLINKAT_TRUE= + GL_COND_OBJ_UNLINKAT_FALSE='#' +else + GL_COND_OBJ_UNLINKAT_TRUE='#' + GL_COND_OBJ_UNLINKAT_FALSE= +fi +: + if test -z "${GL_COND_OBJ_UNLINKAT_TRUE}" && test -z "${GL_COND_OBJ_UNLINKAT_FALSE}"; then + GL_COND_OBJ_UNLINKAT_TRUE='#' + GL_COND_OBJ_UNLINKAT_FALSE='#' fi @@ -31506,6 +32418,7 @@ + GL_GNULIB_UNLINKAT=1 @@ -31608,19 +32521,25 @@ ;; esac - if test $HAVE_UTIME = 0 || test $REPLACE_UTIME = 1; then - - - - - - + if test $HAVE_UTIME = 0 || test $REPLACE_UTIME = 1; then + GL_COND_OBJ_UTIME_TRUE= + GL_COND_OBJ_UTIME_FALSE='#' +else + GL_COND_OBJ_UTIME_TRUE='#' + GL_COND_OBJ_UTIME_FALSE= +fi +: + if test -z "${GL_COND_OBJ_UTIME_TRUE}" && test -z "${GL_COND_OBJ_UTIME_FALSE}"; then + GL_COND_OBJ_UTIME_TRUE='#' + GL_COND_OBJ_UTIME_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS utime.$ac_objext" + if test -z "$GL_COND_OBJ_UTIME_TRUE"; then : : - fi + +fi @@ -31651,6 +32570,7 @@ + if test $ac_cv_func_futimens = no && test $ac_cv_func_futimesat = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether futimesat handles NULL file" >&5 printf %s "checking whether futimesat handles NULL file... " >&6; } @@ -31717,6 +32637,88 @@ fi + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for variable-length arrays" >&5 +printf %s "checking for variable-length arrays... " >&6; } +if test ${ac_cv_c_vararrays+y} +then : + printf %s "(cached) " >&6 +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC_NO_VLA__ + defined + #endif + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "defined" >/dev/null 2>&1 +then : + ac_cv_c_vararrays='no: __STDC_NO_VLA__ is defined' +else $as_nop + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Test for VLA support. This test is partly inspired + from examples in the C standard. Use at least two VLA + functions to detect the GCC 3.4.3 bug described in: + https://lists.gnu.org/archive/html/bug-gnulib/2014-08/msg00014.html + */ + #ifdef __STDC_NO_VLA__ + syntax error; + #else + extern int n; + int B100; + int fvla (int m, int Cmm); + + int + simple (int count, int allstatic count) + { + return allcount - 1; + } + + int + fvla (int m, int Cmm) + { + typedef int VLAmm; + VLA x; + int Dm; + static int (*q)m = &B; + int (*s)n = q; + return C && &x00 == &D0 && &D0 == s0; + } + #endif + +int +main (void) +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO" +then : + ac_cv_c_vararrays=yes +else $as_nop + ac_cv_c_vararrays=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext +fi +rm -rf conftest* + +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_vararrays" >&5 +printf "%s\n" "$ac_cv_c_vararrays" >&6; } + if test "$ac_cv_c_vararrays" = yes; then + +printf "%s\n" "#define HAVE_C_VARARRAYS 1" >>confdefs.h + + elif test "$ac_cv_c_vararrays" = no; then + +printf "%s\n" "#define __STDC_NO_VLA__ 1" >>confdefs.h + + fi + + if test $ac_cv_func_vasnprintf = no; then @@ -32140,38 +33142,6 @@ - case "$host_os" in - mingw*) - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS windows-mutex.$ac_objext" - - ;; - esac - - case "$host_os" in - mingw*) - - - - - - - - - gl_LIBOBJS="$gl_LIBOBJS windows-once.$ac_objext" - - ;; - esac - - case "$host_os" in - mingw*) @@ -32179,26 +33149,64 @@ + if case "$host_os" in mingw*) true;; *) false;; esac; then + GL_COND_OBJ_WINDOWS_MUTEX_TRUE= + GL_COND_OBJ_WINDOWS_MUTEX_FALSE='#' +else + GL_COND_OBJ_WINDOWS_MUTEX_TRUE='#' + GL_COND_OBJ_WINDOWS_MUTEX_FALSE= +fi +: + if test -z "${GL_COND_OBJ_WINDOWS_MUTEX_TRUE}" && test -z "${GL_COND_OBJ_WINDOWS_MUTEX_FALSE}"; then + GL_COND_OBJ_WINDOWS_MUTEX_TRUE='#' + GL_COND_OBJ_WINDOWS_MUTEX_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS windows-recmutex.$ac_objext" - - ;; - esac - - case "$host_os" in - mingw*) + if case "$host_os" in mingw*) true;; *) false;; esac; then + GL_COND_OBJ_WINDOWS_ONCE_TRUE= + GL_COND_OBJ_WINDOWS_ONCE_FALSE='#' +else + GL_COND_OBJ_WINDOWS_ONCE_TRUE='#' + GL_COND_OBJ_WINDOWS_ONCE_FALSE= +fi +: + if test -z "${GL_COND_OBJ_WINDOWS_ONCE_TRUE}" && test -z "${GL_COND_OBJ_WINDOWS_ONCE_FALSE}"; then + GL_COND_OBJ_WINDOWS_ONCE_TRUE='#' + GL_COND_OBJ_WINDOWS_ONCE_FALSE='#' + fi + if case "$host_os" in mingw*) true;; *) false;; esac; then + GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE= + GL_COND_OBJ_WINDOWS_RECMUTEX_FALSE='#' +else + GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE='#' + GL_COND_OBJ_WINDOWS_RECMUTEX_FALSE= +fi +: + if test -z "${GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE}" && test -z "${GL_COND_OBJ_WINDOWS_RECMUTEX_FALSE}"; then + GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE='#' + GL_COND_OBJ_WINDOWS_RECMUTEX_FALSE='#' + fi - gl_LIBOBJS="$gl_LIBOBJS windows-rwlock.$ac_objext" + if case "$host_os" in mingw*) true;; *) false;; esac; then + GL_COND_OBJ_WINDOWS_RWLOCK_TRUE= + GL_COND_OBJ_WINDOWS_RWLOCK_FALSE='#' +else + GL_COND_OBJ_WINDOWS_RWLOCK_TRUE='#' + GL_COND_OBJ_WINDOWS_RWLOCK_FALSE= +fi +: + if test -z "${GL_COND_OBJ_WINDOWS_RWLOCK_TRUE}" && test -z "${GL_COND_OBJ_WINDOWS_RWLOCK_FALSE}"; then + GL_COND_OBJ_WINDOWS_RWLOCK_TRUE='#' + GL_COND_OBJ_WINDOWS_RWLOCK_FALSE='#' + fi - ;; - esac : @@ -32251,6 +33259,7 @@ gl_source_base='tests' + gl_source_base_prefix= gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/^A-Z0-9_/_/g'`_GNULIB_TESTS gl_module_indicator_condition=$gltests_WITNESS @@ -32265,6 +33274,7 @@ + LIBGZIP_LIBDEPS="$gl_libdeps" LIBGZIP_LTLIBDEPS="$gl_ltlibdeps" @@ -32277,20 +33287,54 @@ printf "%s\n" "#define GNULIB_NO_VLA 1" >>confdefs.h +# gl_GCC_VERSION_IFELSE(major, minor, run-if-found, run-if-not-found) +# ------------------------------------------------ +# If $CPP is gcc-MAJOR.MINOR or newer, then run RUN-IF-FOUND. +# Otherwise, run RUN-IF-NOT-FOUND. + + # Check whether --enable-gcc-warnings was given. if test ${enable_gcc_warnings+y} then : enableval=$enable_gcc_warnings; case $enableval in - yes|no) ;; + no|yes|expensive) ;; *) as_fn_error $? "bad value $enableval for gcc-warnings option" "$LINENO" 5 ;; esac gl_gcc_warnings=$enableval else $as_nop - if test -d "$srcdir"/.git; then - gl_gcc_warnings=yes - else - gl_gcc_warnings=no - fi + + # GCC provides fine-grained control over diagnostics which + # is used in gnulib for example to suppress warnings from + # certain sections of code. So if this is available and + # we're running from a git repo, then auto enable the warnings. + gl_gcc_warnings=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#if (4) < __GNUC__ || ((4) == __GNUC__ && (6) <= __GNUC_MINOR__) +/* ok */ +#else +# error "your version of gcc is older than 4.6" +#endif + +int +main (void) +{ + + ; + return 0; +}, + +_ACEOF +if ac_fn_c_try_cpp "$LINENO" +then : + test -d "$srcdir"/.git \ + && ! test -f "$srcdir"/.tarball-version \ + && gl_gcc_warnings=yes +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + fi @@ -32308,12 +33352,6 @@ fi -# gl_GCC_VERSION_IFELSE(major, minor, run-if-found, run-if-not-found) -# ------------------------------------------------ -# If $CPP is gcc-MAJOR.MINOR or newer, then run RUN-IF-FOUND. -# Otherwise, run RUN-IF-NOT-FOUND. - - if test "$gl_gcc_warnings" = yes; then ac_ext=c @@ -32413,8 +33451,16 @@ - nw= + ew= + if test $gl_gcc_warnings != expensive +then : + # -fanalyzer and related options slow GCC considerably. + ew="$ew -fanalyzer -Wno-analyzer-double-free -Wno-analyzer-malloc-leak" + ew="$ew -Wno-analyzer-null-dereference -Wno-analyzer-use-after-free" +fi + # This, $nw, is the list of warnings we disable. + nw=$ew nw="$nw -Wdeclaration-after-statement" # too useful to forbid nw="$nw -Waggregate-return" # anachronistic nw="$nw -Wlong-long" # C90 is anachronistic (lib/gethrxtime.h) @@ -32781,6 +33827,47 @@ # Too many warnings for now +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-type-limits" >&5 +printf %s "checking whether C compiler handles -Wno-type-limits... " >&6; } +if test ${gl_cv_warn_c__Wno_type_limits+y} +then : + printf %s "(cached) " >&6 +else $as_nop + + gl_save_compiler_FLAGS="$CFLAGS" + as_fn_append CFLAGS " $gl_unknown_warnings_are_errors -Wtype-limits" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main (void) +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO" +then : + gl_cv_warn_c__Wno_type_limits=yes +else $as_nop + gl_cv_warn_c__Wno_type_limits=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.beam \ + conftest$ac_exeext conftest.$ac_ext + CFLAGS="$gl_save_compiler_FLAGS" + +fi +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $gl_cv_warn_c__Wno_type_limits" >&5 +printf "%s\n" "$gl_cv_warn_c__Wno_type_limits" >&6; } +if test "x$gl_cv_warn_c__Wno_type_limits" = xyes +then : + as_fn_append WARN_CFLAGS " -Wno-type-limits" +fi + + # false alarms if 32-bit long, 64-bit time_t + + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether C compiler handles -Wno-unused-parameter" >&5 printf %s "checking whether C compiler handles -Wno-unused-parameter... " >&6; } if test ${gl_cv_warn_c__Wno_unused_parameter+y} @@ -33284,6 +34371,37 @@ fi +GZIP_TRANSFORMED=` echo gzip | sed "$program_transform_name"` +ZDIFF_TRANSFORMED=`echo zdiff | sed "$program_transform_name"` +ZGREP_TRANSFORMED=`echo zgrep | sed "$program_transform_name"` + + + + if test "$GZIP_TRANSFORMED" != gzip; then + GZIP_IS_TRANSFORMED_TRUE= + GZIP_IS_TRANSFORMED_FALSE='#' +else + GZIP_IS_TRANSFORMED_TRUE='#' + GZIP_IS_TRANSFORMED_FALSE= +fi + + if test "$ZDIFF_TRANSFORMED" != zdiff; then + ZDIFF_IS_TRANSFORMED_TRUE= + ZDIFF_IS_TRANSFORMED_FALSE='#' +else + ZDIFF_IS_TRANSFORMED_TRUE='#' + ZDIFF_IS_TRANSFORMED_FALSE= +fi + + if test "$ZGREP_TRANSFORMED" != zgrep; then + ZGREP_IS_TRANSFORMED_TRUE= + ZGREP_IS_TRANSFORMED_FALSE='#' +else + ZGREP_IS_TRANSFORMED_TRUE='#' + ZGREP_IS_TRANSFORMED_FALSE= +fi + + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 printf %s "checking for an ANSI C-conforming const... " >&6; } if test ${ac_cv_c_const+y} @@ -33699,20 +34817,12 @@ as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then - as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_ALLOCA_H_TRUE}" && test -z "${GL_GENERATE_ALLOCA_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_ALLOCA_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_ERRNO_H_TRUE}" && test -z "${GL_GENERATE_ERRNO_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_ERRNO_H\" was never defined. +if test -z "${LESS_TRUE}" && test -z "${LESS_FALSE}"; then + as_fn_error $? "conditional \"LESS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -if test -z "${GL_GENERATE_FLOAT_H_TRUE}" && test -z "${GL_GENERATE_FLOAT_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_FLOAT_H\" was never defined. +if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then + as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi @@ -33721,72 +34831,78 @@ as_fn_error $? "conditional \"GNU_MAKE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -if test -z "${GL_GENERATE_LIMITS_H_TRUE}" && test -z "${GL_GENERATE_LIMITS_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_LIMITS_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_LIMITS_H_TRUE}" && test -z "${GL_GENERATE_LIMITS_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_LIMITS_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_STDINT_H_TRUE}" && test -z "${GL_GENERATE_STDINT_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_STDINT_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi CONFIG_INCLUDE=lib/config.h -if test -z "${GL_GENERATE_STDALIGN_H_TRUE}" && test -z "${GL_GENERATE_STDALIGN_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_STDALIGN_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_STDBOOL_H_TRUE}" && test -z "${GL_GENERATE_STDBOOL_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_STDBOOL_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_STDDEF_H_TRUE}" && test -z "${GL_GENERATE_STDDEF_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_STDDEF_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi -if test -z "${GL_GENERATE_STDNORETURN_H_TRUE}" && test -z "${GL_GENERATE_STDNORETURN_H_FALSE}"; then - as_fn_error $? "conditional \"GL_GENERATE_STDNORETURN_H\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi gl_libobjs= gl_ltlibobjs= + gl_libobjdeps= if test -n "$gl_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' + sed_dirname1='s,//*,/,g' + sed_dirname2='s,\(.\)/$,\1,' + sed_dirname3='s,^^/*$,.,' + sed_dirname4='s,\(.\)/^/*$,\1,' + sed_basename1='s,.*/,,' for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" + i_dir=`echo "$i" | sed -e "$sed_dirname1" -e "$sed_dirname2" -e "$sed_dirname3" -e "$sed_dirname4"` + i_base=`echo "$i" | sed -e "$sed_basename1"` + gl_libobjdeps="$gl_libobjdeps $i_dir/\$(DEPDIR)/$i_base.Po" done fi gl_LIBOBJS=$gl_libobjs gl_LTLIBOBJS=$gl_ltlibobjs + gl_LIBOBJDEPS=$gl_libobjdeps + gltests_libobjs= gltests_ltlibobjs= + gltests_libobjdeps= if test -n "$gltests_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' + sed_dirname1='s,//*,/,g' + sed_dirname2='s,\(.\)/$,\1,' + sed_dirname3='s,^^/*$,.,' + sed_dirname4='s,\(.\)/^/*$,\1,' + sed_basename1='s,.*/,,' for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" + i_dir=`echo "$i" | sed -e "$sed_dirname1" -e "$sed_dirname2" -e "$sed_dirname3" -e "$sed_dirname4"` + i_base=`echo "$i" | sed -e "$sed_basename1"` + gltests_libobjdeps="$gltests_libobjdeps $i_dir/\$(DEPDIR)/$i_base.Po" done fi gltests_LIBOBJS=$gltests_libobjs gltests_LTLIBOBJS=$gltests_ltlibobjs + gltests_LIBOBJDEPS=$gltests_libobjdeps + if test -z "${IBM_Z_DFLTCC_TRUE}" && test -z "${IBM_Z_DFLTCC_FALSE}"; then as_fn_error $? "conditional \"IBM_Z_DFLTCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi +if test -z "${GZIP_IS_TRANSFORMED_TRUE}" && test -z "${GZIP_IS_TRANSFORMED_FALSE}"; then + as_fn_error $? "conditional \"GZIP_IS_TRANSFORMED\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ZDIFF_IS_TRANSFORMED_TRUE}" && test -z "${ZDIFF_IS_TRANSFORMED_FALSE}"; then + as_fn_error $? "conditional \"ZDIFF_IS_TRANSFORMED\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${ZGREP_IS_TRANSFORMED_TRUE}" && test -z "${ZGREP_IS_TRANSFORMED_FALSE}"; then + as_fn_error $? "conditional \"ZGREP_IS_TRANSFORMED\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 @@ -34177,7 +35293,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by gzip $as_me 1.11, which was +This file was extended by gzip $as_me 1.12, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34249,7 +35365,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -gzip config.status 1.11 +gzip config.status 1.12 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\"
View file
_service:tar_scm:gzip-1.11.tar.xz/configure.ac -> _service:tar_scm:gzip-1.12.tar.xz/configure.ac
Changed
@@ -1,6 +1,6 @@ # Configure template for gzip. -# Copyright (C) 1999-2002, 2006-2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 1999-2002, 2006-2007, 2009-2022 Free Software Foundation, Inc. # Copyright (C) 1992-1993 Jean-loup Gailly @@ -50,6 +50,8 @@ AM_PROG_CC_C_O AC_PROG_CPP AC_PROG_GREP +AC_CHECK_PROG(LESS, less, less) +AM_CONDITIONAL(LESS, test "$LESS") AC_CHECK_TOOL(NM, nm, nm) AC_PROG_LN_S AC_PROG_RANLIB @@ -63,31 +65,6 @@ # Note -Wvla is implicitly added by gl_MANYWARN_ALL_GCC AC_DEFINE(GNULIB_NO_VLA, 1, Define to 1 to disable use of VLAs) -AC_ARG_ENABLE(gcc-warnings, - AS_HELP_STRING(--enable-gcc-warnings, - turn on many GCC warnings (for developers; best with GNU make)), - case $enableval in - yes|no) ;; - *) AC_MSG_ERROR(bad value $enableval for gcc-warnings option) ;; - esac - gl_gcc_warnings=$enableval, - if test -d "$srcdir"/.git; then - gl_gcc_warnings=yes - else - gl_gcc_warnings=no - fi -) - -AC_ARG_ENABLE(dfltcc, - AS_HELP_STRING(--enable-dfltcc, - use DEFLATE COMPRESSION CALL instruction on IBM Z), - case $enableval in - yes|no) gl_dfltcc=$enableval ;; - *) AC_MSG_ERROR(bad value $enableval for dfltcc option) ;; - esac, - gl_dfltcc=no -) - # gl_GCC_VERSION_IFELSE(major, minor, run-if-found, run-if-not-found) # ------------------------------------------------ # If $CPP is gcc-MAJOR.MINOR or newer, then run RUN-IF-FOUND. @@ -106,12 +83,52 @@ ) +AC_ARG_ENABLE(gcc-warnings, + AS_HELP_STRING(--enable-gcc-warnings@<:@=TYPE@:>@, + control generation of GCC warnings. The TYPE 'no' disables + warnings (default for non-developer builds); 'yes' generates + cheap warnings if available (default for developer builds); + 'expensive' in addition generates expensive-to-compute warnings + if available.), + case $enableval in + no|yes|expensive) ;; + *) AC_MSG_ERROR(bad value $enableval for gcc-warnings option) ;; + esac + gl_gcc_warnings=$enableval, + + # GCC provides fine-grained control over diagnostics which + # is used in gnulib for example to suppress warnings from + # certain sections of code. So if this is available and + # we're running from a git repo, then auto enable the warnings. + gl_gcc_warnings=no + gl_GCC_VERSION_IFELSE(4, 6, + test -d "$srcdir"/.git \ + && ! test -f "$srcdir"/.tarball-version \ + && gl_gcc_warnings=yes) +) + +AC_ARG_ENABLE(dfltcc, + AS_HELP_STRING(--enable-dfltcc, + use DEFLATE COMPRESSION CALL instruction on IBM Z), + case $enableval in + yes|no) gl_dfltcc=$enableval ;; + *) AC_MSG_ERROR(bad value $enableval for dfltcc option) ;; + esac, + gl_dfltcc=no +) + if test "$gl_gcc_warnings" = yes; then gl_WARN_ADD(-Werror, WERROR_CFLAGS) AC_SUBST(WERROR_CFLAGS) - nw= + ew= + AS_IF(test $gl_gcc_warnings != expensive, + # -fanalyzer and related options slow GCC considerably. + ew="$ew -fanalyzer -Wno-analyzer-double-free -Wno-analyzer-malloc-leak" + ew="$ew -Wno-analyzer-null-dereference -Wno-analyzer-use-after-free") + # This, $nw, is the list of warnings we disable. + nw=$ew nw="$nw -Wdeclaration-after-statement" # too useful to forbid nw="$nw -Waggregate-return" # anachronistic nw="$nw -Wlong-long" # C90 is anachronistic (lib/gethrxtime.h) @@ -154,6 +171,7 @@ gl_WARN_ADD($w) done gl_WARN_ADD(-Wno-sign-compare) # Too many warnings for now + gl_WARN_ADD(-Wno-type-limits) # false alarms if 32-bit long, 64-bit time_t gl_WARN_ADD(-Wno-unused-parameter) # Too many warnings for now gl_WARN_ADD(-Wsuggest-attribute=const) gl_WARN_ADD(-Wsuggest-attribute=noreturn) @@ -261,6 +279,16 @@ fi AC_SUBST(ASFLAGS_config) +GZIP_TRANSFORMED=` echo gzip | sed "$program_transform_name"` +ZDIFF_TRANSFORMED=`echo zdiff | sed "$program_transform_name"` +ZGREP_TRANSFORMED=`echo zgrep | sed "$program_transform_name"` +AC_SUBST(GZIP_TRANSFORMED) +AC_SUBST(ZDIFF_TRANSFORMED) +AC_SUBST(ZGREP_TRANSFORMED) +AM_CONDITIONAL(GZIP_IS_TRANSFORMED, test "$GZIP_TRANSFORMED" != gzip) +AM_CONDITIONAL(ZDIFF_IS_TRANSFORMED, test "$ZDIFF_TRANSFORMED" != zdiff) +AM_CONDITIONAL(ZGREP_IS_TRANSFORMED, test "$ZGREP_TRANSFORMED" != zgrep) + AC_C_CONST AC_CHECK_HEADERS_ONCE(fcntl.h limits.h memory.h time.h sys/sdt.h) AC_CHECK_FUNCS_ONCE(chown fchmod fchown lstat siginterrupt)
View file
_service:tar_scm:gzip-1.11.tar.xz/deflate.c -> _service:tar_scm:gzip-1.12.tar.xz/deflate.c
Changed
@@ -1,6 +1,6 @@ /* deflate.c -- compress data using the deflation algorithm - Copyright (C) 1999, 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1999, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify @@ -300,9 +300,10 @@ /* =========================================================================== * Initialize the "longest match" routines for a new file + * PACK_LEVEL values: 0: store, 1: best speed, 9: best compression */ -void lm_init (pack_level) - int pack_level; /* 0: store, 1: best speed, 9: best compression */ +static void +lm_init (int pack_level) { register unsigned j;
View file
_service:tar_scm:gzip-1.11.tar.xz/dfltcc.c -> _service:tar_scm:gzip-1.12.tar.xz/dfltcc.c
Changed
@@ -1,6 +1,6 @@ /* dfltcc.c -- compress data using IBM Z DEFLATE COMPRESSION CALL - Copyright (C) 2019-2021 Free Software Foundation, Inc. + Copyright (C) 2019-2022 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/Makefile.am -> _service:tar_scm:gzip-1.12.tar.xz/doc/Makefile.am
Changed
@@ -1,6 +1,6 @@ # Make gzip documentation. -*-Makefile-*- -# Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/Makefile.in -> _service:tar_scm:gzip-1.12.tar.xz/doc/Makefile.in
Changed
@@ -16,7 +16,7 @@ # Make gzip documentation. -*-Makefile-*- -# Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -131,13 +131,12 @@ $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/frexp.m4 \ $(top_srcdir)/m4/frexpl.m4 $(top_srcdir)/m4/fseek.m4 \ $(top_srcdir)/m4/fseeko.m4 $(top_srcdir)/m4/fseterr.m4 \ - $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fstatat.m4 \ - $(top_srcdir)/m4/fsync.m4 $(top_srcdir)/m4/ftell.m4 \ - $(top_srcdir)/m4/ftello.m4 $(top_srcdir)/m4/getcwd.m4 \ - $(top_srcdir)/m4/getdtablesize.m4 $(top_srcdir)/m4/getopt.m4 \ - $(top_srcdir)/m4/getprogname.m4 $(top_srcdir)/m4/gettime.m4 \ - $(top_srcdir)/m4/gettimeofday.m4 $(top_srcdir)/m4/gnu-make.m4 \ - $(top_srcdir)/m4/gnulib-common.m4 \ + $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fsync.m4 \ + $(top_srcdir)/m4/ftell.m4 $(top_srcdir)/m4/ftello.m4 \ + $(top_srcdir)/m4/getcwd.m4 $(top_srcdir)/m4/getdtablesize.m4 \ + $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/getprogname.m4 \ + $(top_srcdir)/m4/gettime.m4 $(top_srcdir)/m4/gettimeofday.m4 \ + $(top_srcdir)/m4/gnu-make.m4 $(top_srcdir)/m4/gnulib-common.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/intmax_t.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ @@ -341,6 +340,8 @@ FLOAT_H = @FLOAT_H@ GETOPT_CDEFS_H = @GETOPT_CDEFS_H@ GETOPT_H = @GETOPT_H@ +GL_CFLAG_ALLOW_WARNINGS = @GL_CFLAG_ALLOW_WARNINGS@ +GL_CFLAG_GNULIB_WARNINGS = @GL_CFLAG_GNULIB_WARNINGS@ GL_GNULIB_ACCESS = @GL_GNULIB_ACCESS@ GL_GNULIB_ACOSF = @GL_GNULIB_ACOSF@ GL_GNULIB_ACOSL = @GL_GNULIB_ACOSL@ @@ -353,6 +354,7 @@ GL_GNULIB_ATANL = @GL_GNULIB_ATANL@ GL_GNULIB_ATOLL = @GL_GNULIB_ATOLL@ GL_GNULIB_BTOWC = @GL_GNULIB_BTOWC@ +GL_GNULIB_CALLOC_GNU = @GL_GNULIB_CALLOC_GNU@ GL_GNULIB_CALLOC_POSIX = @GL_GNULIB_CALLOC_POSIX@ GL_GNULIB_CANONICALIZE_FILE_NAME = @GL_GNULIB_CANONICALIZE_FILE_NAME@ GL_GNULIB_CBRT = @GL_GNULIB_CBRT@ @@ -423,6 +425,7 @@ GL_GNULIB_FMODF = @GL_GNULIB_FMODF@ GL_GNULIB_FMODL = @GL_GNULIB_FMODL@ GL_GNULIB_FOPEN = @GL_GNULIB_FOPEN@ +GL_GNULIB_FOPEN_GNU = @GL_GNULIB_FOPEN_GNU@ GL_GNULIB_FPRINTF = @GL_GNULIB_FPRINTF@ GL_GNULIB_FPRINTF_POSIX = @GL_GNULIB_FPRINTF_POSIX@ GL_GNULIB_FPURGE = @GL_GNULIB_FPURGE@ @@ -461,6 +464,7 @@ GL_GNULIB_GETOPT_POSIX = @GL_GNULIB_GETOPT_POSIX@ GL_GNULIB_GETPAGESIZE = @GL_GNULIB_GETPAGESIZE@ GL_GNULIB_GETPASS = @GL_GNULIB_GETPASS@ +GL_GNULIB_GETPASS_GNU = @GL_GNULIB_GETPASS_GNU@ GL_GNULIB_GETSUBOPT = @GL_GNULIB_GETSUBOPT@ GL_GNULIB_GETTIMEOFDAY = @GL_GNULIB_GETTIMEOFDAY@ GL_GNULIB_GETUMASK = @GL_GNULIB_GETUMASK@ @@ -506,6 +510,7 @@ GL_GNULIB_LOGL = @GL_GNULIB_LOGL@ GL_GNULIB_LSEEK = @GL_GNULIB_LSEEK@ GL_GNULIB_LSTAT = @GL_GNULIB_LSTAT@ +GL_GNULIB_MALLOC_GNU = @GL_GNULIB_MALLOC_GNU@ GL_GNULIB_MALLOC_POSIX = @GL_GNULIB_MALLOC_POSIX@ GL_GNULIB_MBRLEN = @GL_GNULIB_MBRLEN@ GL_GNULIB_MBRTOWC = @GL_GNULIB_MBRTOWC@ @@ -631,6 +636,7 @@ GL_GNULIB_READLINK = @GL_GNULIB_READLINK@ GL_GNULIB_READLINKAT = @GL_GNULIB_READLINKAT@ GL_GNULIB_REALLOCARRAY = @GL_GNULIB_REALLOCARRAY@ +GL_GNULIB_REALLOC_GNU = @GL_GNULIB_REALLOC_GNU@ GL_GNULIB_REALLOC_POSIX = @GL_GNULIB_REALLOC_POSIX@ GL_GNULIB_REALPATH = @GL_GNULIB_REALPATH@ GL_GNULIB_REMAINDER = @GL_GNULIB_REMAINDER@ @@ -705,6 +711,7 @@ GL_GNULIB_TANL = @GL_GNULIB_TANL@ GL_GNULIB_TIMEGM = @GL_GNULIB_TIMEGM@ GL_GNULIB_TIMESPEC_GET = @GL_GNULIB_TIMESPEC_GET@ +GL_GNULIB_TIMESPEC_GETRES = @GL_GNULIB_TIMESPEC_GETRES@ GL_GNULIB_TIME_R = @GL_GNULIB_TIME_R@ GL_GNULIB_TIME_RZ = @GL_GNULIB_TIME_RZ@ GL_GNULIB_TMPFILE = @GL_GNULIB_TMPFILE@ @@ -776,6 +783,7 @@ GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@ GNULIB_WARN_CFLAGS = @GNULIB_WARN_CFLAGS@ GREP = @GREP@ +GZIP_TRANSFORMED = @GZIP_TRANSFORMED@ HAVE_ACOSF = @HAVE_ACOSF@ HAVE_ACOSL = @HAVE_ACOSL@ HAVE_ALIGNED_ALLOC = @HAVE_ALIGNED_ALLOC@ @@ -1069,6 +1077,7 @@ HAVE_TANL = @HAVE_TANL@ HAVE_TIMEGM = @HAVE_TIMEGM@ HAVE_TIMESPEC_GET = @HAVE_TIMESPEC_GET@ +HAVE_TIMESPEC_GETRES = @HAVE_TIMESPEC_GETRES@ HAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@ HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ @@ -1130,6 +1139,7 @@ INT32_MAX_LT_INTMAX_MAX = @INT32_MAX_LT_INTMAX_MAX@ INT64_MAX_EQ_LONG_MAX = @INT64_MAX_EQ_LONG_MAX@ LDFLAGS = @LDFLAGS@ +LESS = @LESS@ LIBGZIP_LIBDEPS = @LIBGZIP_LIBDEPS@ LIBGZIP_LTLIBDEPS = @LIBGZIP_LTLIBDEPS@ LIBINTL = @LIBINTL@ @@ -1216,7 +1226,8 @@ REPLACE_ATAN2F = @REPLACE_ATAN2F@ REPLACE_ATANF = @REPLACE_ATANF@ REPLACE_BTOWC = @REPLACE_BTOWC@ -REPLACE_CALLOC = @REPLACE_CALLOC@ +REPLACE_CALLOC_FOR_CALLOC_GNU = @REPLACE_CALLOC_FOR_CALLOC_GNU@ +REPLACE_CALLOC_FOR_CALLOC_POSIX = @REPLACE_CALLOC_FOR_CALLOC_POSIX@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CBRTF = @REPLACE_CBRTF@ REPLACE_CBRTL = @REPLACE_CBRTL@ @@ -1226,6 +1237,7 @@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@ +REPLACE_COPY_FILE_RANGE = @REPLACE_COPY_FILE_RANGE@ REPLACE_COSF = @REPLACE_COSF@ REPLACE_COSHF = @REPLACE_COSHF@ REPLACE_CREAT = @REPLACE_CREAT@ @@ -1268,6 +1280,7 @@ REPLACE_FMODF = @REPLACE_FMODF@ REPLACE_FMODL = @REPLACE_FMODL@ REPLACE_FOPEN = @REPLACE_FOPEN@ +REPLACE_FOPEN_FOR_FOPEN_GNU = @REPLACE_FOPEN_FOR_FOPEN_GNU@ REPLACE_FPRINTF = @REPLACE_FPRINTF@ REPLACE_FPURGE = @REPLACE_FPURGE@ REPLACE_FREE = @REPLACE_FREE@ @@ -1292,6 +1305,7 @@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_GETPASS = @REPLACE_GETPASS@ +REPLACE_GETPASS_FOR_GETPASS_GNU = @REPLACE_GETPASS_FOR_GETPASS_GNU@ REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@ REPLACE_GMTIME = @REPLACE_GMTIME@ REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@ @@ -1330,7 +1344,8 @@ REPLACE_LOGL = @REPLACE_LOGL@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_LSTAT = @REPLACE_LSTAT@ -REPLACE_MALLOC = @REPLACE_MALLOC@ +REPLACE_MALLOC_FOR_MALLOC_GNU = @REPLACE_MALLOC_FOR_MALLOC_GNU@ +REPLACE_MALLOC_FOR_MALLOC_POSIX = @REPLACE_MALLOC_FOR_MALLOC_POSIX@ REPLACE_MBRLEN = @REPLACE_MBRLEN@ REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ REPLACE_MBSINIT = @REPLACE_MBSINIT@ @@ -1374,8 +1389,9 @@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_READLINKAT = @REPLACE_READLINKAT@ -REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALLOCARRAY = @REPLACE_REALLOCARRAY@ +REPLACE_REALLOC_FOR_REALLOC_GNU = @REPLACE_REALLOC_FOR_REALLOC_GNU@ +REPLACE_REALLOC_FOR_REALLOC_POSIX = @REPLACE_REALLOC_FOR_REALLOC_POSIX@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_REMAINDER = @REPLACE_REMAINDER@ REPLACE_REMAINDERF = @REPLACE_REMAINDERF@ @@ -1489,6 +1505,8 @@ WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINDOWS_STAT_TIMESPEC = @WINDOWS_STAT_TIMESPEC@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ +ZDIFF_TRANSFORMED = @ZDIFF_TRANSFORMED@ +ZGREP_TRANSFORMED = @ZGREP_TRANSFORMED@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -1511,8 +1529,10 @@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ +gl_LIBOBJDEPS = @gl_LIBOBJDEPS@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ +gltests_LIBOBJDEPS = @gltests_LIBOBJDEPS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/gzip.info -> _service:tar_scm:gzip-1.12.tar.xz/doc/gzip.info
Changed
@@ -1,9 +1,9 @@ This is gzip.info, produced by makeinfo version 6.8 from gzip.texi. -This manual is for GNU Gzip (version 1.11, 2 January 2021), and -documents commands for compressing and decompressing data. +This manual is for GNU Gzip (version 1.12, 2 April 2022), and documents +commands for compressing and decompressing data. - Copyright © 1998–1999, 2001–2002, 2006–2007, 2009–2021 Free Software + Copyright © 1998–1999, 2001–2002, 2006–2007, 2009–2022 Free Software Foundation, Inc. Copyright © 1992, 1993 Jean-loup Gailly @@ -36,10 +36,10 @@ GNU Gzip: General file (de)compression ************************************** -This manual is for GNU Gzip (version 1.11, 2 January 2021), and -documents commands for compressing and decompressing data. +This manual is for GNU Gzip (version 1.12, 2 April 2022), and documents +commands for compressing and decompressing data. - Copyright © 1998–1999, 2001–2002, 2006–2007, 2009–2021 Free Software + Copyright © 1998–1999, 2001–2002, 2006–2007, 2009–2022 Free Software Foundation, Inc. Copyright © 1992, 1993 Jean-loup Gailly @@ -148,11 +148,13 @@ Compression is always performed, even if the compressed file is slightly larger than the original. The worst case expansion is a few -bytes for the ‘gzip’ file header, plus 5 bytes every 32K block, or an -expansion ratio of 0.015% for large files. Note that the actual number -of used disk blocks almost never increases. ‘gzip’ normally preserves -the mode, ownership and timestamps of files when compressing or -decompressing. +bytes for the ‘gzip’ file header, plus 5 bytes per 32 KiB block, or an +expansion ratio of 0.015% for large files. The actual number of used +disk blocks almost never increases. + + ‘gzip’ normally preserves the mode and modification timestamp of a +file when compressing or decompressing. If you have appropriate +privileges, it also preserves the file’s owner and group. The ‘gzip’ file format is specified in P. Deutsch, GZIP file format specification version 4.3, Internet RFC 1952 @@ -271,12 +273,6 @@ ratio: compression ratio (0.0% if unknown) uncompressed_name: name of the uncompressed file - The uncompressed size is given as −1 for files not in ‘gzip’ - format, such as compressed ‘.Z’ files. To get the uncompressed - size for such a file, you can use: - - zcat file.Z | wc -c - In combination with the ‘--verbose’ option, the following fields are also displayed: @@ -290,14 +286,6 @@ files is also displayed, unless some sizes are unknown. With ‘--quiet’, the title and totals lines are not displayed. - The ‘gzip’ format represents the input size modulo 2^32, so the - uncompressed size and compression ratio are listed incorrectly for - uncompressed files 4 GiB and larger. To work around this problem, - you can use the following command to discover a large uncompressed - file’s true size: - - zcat file.gz | wc -c - ‘--license’ ‘-L’ Display the ‘gzip’ license then quit. @@ -315,11 +303,14 @@ ‘--name’ ‘-N’ When compressing, always save the original file name, and save the - original timestamp if the original is a regular file; this is the - default. When decompressing, restore the original file name and - timestamp if present. This option is useful on systems which have - a limit on file name length or when the timestamp has been lost - after a file transfer. + seconds part of the original modification timestamp if the original + is a regular file and its timestamp is at least 1 (1970-01-01 + 00:00:01 UTC) and is less than 2^{32} (2106-02-07 06:28:16 UTC, + assuming leap seconds are not counted); this is the default. When + decompressing, restore from the saved file name and timestamp if + present. This option is useful on systems which have a limit on + file name length or when the timestamp has been lost after a file + transfer. ‘--quiet’ ‘-q’ @@ -1030,16 +1021,16 @@  Tag Table: -Node: Top1481 -Node: Overview2706 -Node: Sample8314 -Node: Invoking gzip10458 -Node: Advanced usage16798 -Node: Environment18429 -Node: Tapes21175 -Node: Problems21733 -Node: GNU Free Documentation License22219 -Node: Concept index47573 +Node: Top1479 +Node: Overview2702 +Node: Sample8391 +Node: Invoking gzip10535 +Node: Advanced usage16508 +Node: Environment18139 +Node: Tapes20885 +Node: Problems21443 +Node: GNU Free Documentation License21929 +Node: Concept index47283  End Tag Table
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/gzip.texi -> _service:tar_scm:gzip-1.12.tar.xz/doc/gzip.texi
Changed
@@ -12,7 +12,7 @@ (version @value{VERSION}, @value{UPDATED}), and documents commands for compressing and decompressing data. -Copyright @copyright{} 1998--1999, 2001--2002, 2006--2007, 2009--2021 Free +Copyright @copyright{} 1998--1999, 2001--2002, 2006--2007, 2009--2022 Free Software Foundation, Inc. Copyright @copyright{} 1992, 1993 Jean-loup Gailly @@ -170,10 +170,13 @@ Compression is always performed, even if the compressed file is slightly larger than the original. The worst case expansion is a few bytes for -the @command{gzip} file header, plus 5 bytes every 32K block, or an expansion -ratio of 0.015% for large files. Note that the actual number of used -disk blocks almost never increases. @command{gzip} normally preserves the mode, -ownership and timestamps of files when compressing or decompressing. +the @command{gzip} file header, plus 5 bytes per 32@tie{}KiB block, or +an expansion ratio of 0.015% for large files. The actual number of +used disk blocks almost never increases. + +@command{gzip} normally preserves the mode and modification timestamp +of a file when compressing or decompressing. If you have appropriate +privileges, it also preserves the file's owner and group. The @command{gzip} file format is specified in P. Deutsch, GZIP file format specification version 4.3, @@ -300,14 +303,6 @@ uncompressed_name: name of the uncompressed file @end example -The uncompressed size is given as @minus{}1 for files not in @command{gzip} -format, such as compressed @samp{.Z} files. To get the uncompressed size for -such a file, you can use: - -@example -zcat file.Z | wc -c -@end example - In combination with the @option{--verbose} option, the following fields are also displayed: @@ -323,16 +318,6 @@ is also displayed, unless some sizes are unknown. With @option{--quiet}, the title and totals lines are not displayed. -The @command{gzip} format represents the input size modulo -@math{2^32}, so the uncompressed size and compression ratio are listed -incorrectly for uncompressed files 4 GiB and larger. To work around -this problem, you can use the following command to discover a large -uncompressed file's true size: - -@example -zcat file.gz | wc -c -@end example - @item --license @itemx -L Display the @command{gzip} license then quit. @@ -350,8 +335,11 @@ @item --name @itemx -N When compressing, always save the original file name, and save -the original timestamp if the original is a regular file; this -is the default. When decompressing, restore the original file name and +the seconds part of the original modification timestamp if the +original is a regular file and its timestamp is at least 1 (1970-01-01 +00:00:01 UTC) and is less than 2@sup{32} (2106-02-07 06:28:16 UTC, +assuming leap seconds are not counted); this +is the default. When decompressing, restore from the saved file name and timestamp if present. This option is useful on systems which have a limit on file name length or when the timestamp has been lost after a file transfer. @@ -577,7 +565,7 @@ @command{gzip}, a description of the bug behavior, and the input to @command{gzip} that triggered -the bug.@refill +the bug. @node GNU Free Documentation License @appendix GNU Free Documentation License
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/stamp-vti -> _service:tar_scm:gzip-1.12.tar.xz/doc/stamp-vti
Changed
@@ -1,4 +1,4 @@ -@set UPDATED 2 January 2021 -@set UPDATED-MONTH January 2021 -@set EDITION 1.11 -@set VERSION 1.11 +@set UPDATED 2 April 2022 +@set UPDATED-MONTH April 2022 +@set EDITION 1.12 +@set VERSION 1.12
View file
_service:tar_scm:gzip-1.11.tar.xz/doc/version.texi -> _service:tar_scm:gzip-1.12.tar.xz/doc/version.texi
Changed
@@ -1,4 +1,4 @@ -@set UPDATED 2 January 2021 -@set UPDATED-MONTH January 2021 -@set EDITION 1.11 -@set VERSION 1.11 +@set UPDATED 2 April 2022 +@set UPDATED-MONTH April 2022 +@set EDITION 1.12 +@set VERSION 1.12
View file
_service:tar_scm:gzip-1.11.tar.xz/gunzip.in -> _service:tar_scm:gzip-1.12.tar.xz/gunzip.in
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Uncompress files. This is the inverse of gzip. -# Copyright (C) 2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2007, 2010-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -54,4 +54,4 @@ --version) printf '%s\n' "$version" || exit 1; exit;; esac -exec gzip -d "$@" +exec 'gzip' -d "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/gzexe.1 -> _service:tar_scm:gzip-1.12.tar.xz/gzexe.1
Changed
@@ -26,7 +26,11 @@ .B \-d Decompress the given executables instead of compressing them. .SH "SEE ALSO" -gzip(1), znew(1), zmore(1), zcmp(1), zforce(1) +.BR gzip (1), +.BR znew (1), +.BR zmore (1), +.BR zcmp (1), +.BR zforce (1) .SH CAVEATS The compressed executable is a shell script. This may create some security holes. In particular, the compressed executable relies
View file
_service:tar_scm:gzip-1.11.tar.xz/gzexe.in -> _service:tar_scm:gzip-1.12.tar.xz/gzexe.in
Changed
@@ -13,7 +13,7 @@ # On Ultrix, /bin/sh is too buggy, change the first line to: #!/bin/sh5 -# Copyright (C) 1998, 2002, 2004, 2006-2007, 2010-2021 Free Software +# Copyright (C) 1998, 2002, 2004, 2006-2007, 2010-2022 Free Software # Foundation, Inc. # Copyright (C) 1993 Jean-loup Gailly @@ -91,10 +91,11 @@ continue fi if test $decomp -eq 0; then - if sed -e 1d -e 2q "$file" | grep "^skip=0-90-9*$" >/dev/null; then + case `LC_ALL=C sed -n -e 1d -e '/^skip=0-90-9*$/p' -e 2q "$file"` in + skip=0-9 | skip=0-90-9 | skip=0-90-90-9) printf >&2 '%s\n' "$0: $i is already gzexe'd" - continue - fi + continue;; + esac fi if test -u "$file"; then printf >&2 '%s\n' "$0: $i has setuid permission, unchanged" @@ -106,7 +107,7 @@ fi case /$file in */basename | */bash | */cat | */chmod | */cp | \ - */dirname | */expr | */gzip | \ + */dirname | */expr | */'gzip' | \ */ln | */mkdir | */mktemp | */mv | */printf | */rm | \ */sed | */sh | */sleep | */test | */tail) printf >&2 '%s\n' "$0: $i might depend on itself"; continue;; @@ -183,7 +184,7 @@ X) tail_n=-n;; *) tail_n=;; esac -if tail $tail_n +$skip <"$0" | gzip -cd > "$gztmp"; then +if tail $tail_n +$skip <"$0" | 'gzip' -cd > "$gztmp"; then umask $umask chmod 700 "$gztmp" (sleep 5; rm -fr "$gztmpdir") 2>/dev/null & @@ -193,7 +194,7 @@ (exit 127); res=127 fi; exit $res EOF - gzip -cv9 "$file") > "$tmp" || { + 'gzip' -cv9 "$file") > "$tmp" || { res=$? printf >&2 '%s\n' "$0: compression not possible for $i, file unchanged." continue @@ -202,7 +203,7 @@ else # decompression skip=44 - skip_line=`sed -e 1d -e 2q "$file"` + skip_line=`LC_ALL=C sed -e 1d -e 2q "$file"` case $skip_line in skip=0-9 | skip=0-90-9 | skip=0-90-90-9) eval "$skip_line";; @@ -211,7 +212,7 @@ X) tail_n=-n;; *) tail_n=;; esac - tail $tail_n +$skip "$file" | gzip -cd > "$tmp" || { + tail $tail_n +$skip "$file" | 'gzip' -cd > "$tmp" || { res=$? printf >&2 '%s\n' "$0: $i probably not in gzexe format, file unchanged." continue
View file
_service:tar_scm:gzip-1.11.tar.xz/gzip.1 -> _service:tar_scm:gzip-1.12.tar.xz/gzip.1
Changed
@@ -183,12 +183,14 @@ .PP Compression is always performed, even if the compressed file is slightly larger than the original. The worst case expansion is -a few bytes for the gzip file header, plus 5 bytes every 32K block, -or an expansion ratio of 0.015% for large files. Note that the actual +a few bytes for the gzip file header, plus 5 bytes per 32\ KiB block, +or an expansion ratio of 0.015% for large files. The actual number of used disk blocks almost never increases. +.PP .B gzip -preserves the mode, ownership and timestamps of files when compressing -or decompressing. +normally preserves the mode and modification timestamp +of a file when compressing or decompressing. If you have appropriate +privileges, it also preserves the file's owner and group. .SH OPTIONS .TP .B \-a --ascii @@ -277,8 +279,12 @@ is the default when decompressing. .TP .B \-N --name -When compressing, always save the original file name and timestamp; this -is the default. When decompressing, restore the original file name and +When compressing, always save the original file name, and save +the seconds part of the original modification timestamp if the +original is a regular file and its timestamp is at least 1 (1970-01-01 +00:00:01 UTC) and is less than 2**32 (2106-02-07 06:28:16 UTC, +assuming leap seconds are not counted); this +is the default. When decompressing, restore from the saved file name and timestamp if present. This option is useful on systems which have a limit on file name length or when the timestamp has been lost after a file transfer. @@ -412,7 +418,14 @@ export PATH=/usr/bin exec gzip \-9 "$@" .SH "SEE ALSO" -znew(1), zcmp(1), zmore(1), zforce(1), gzexe(1), zip(1), unzip(1), compress(1) +.BR znew (1), +.BR zcmp (1), +.BR zmore (1), +.BR zforce (1), +.BR gzexe (1), +.BR zip (1), +.BR unzip (1), +.BR compress (1) .PP The .B gzip @@ -492,17 +505,6 @@ and emits a warning by default. You can use the --quiet option to suppress the warning. .SH BUGS -The gzip format represents the input size modulo 2^32, so the ---list option reports incorrect uncompressed sizes and compression -ratios for uncompressed files 4 GB and larger. To work around this -problem, you can use the following command to discover a large -uncompressed file's true size: - - zcat file.gz | wc -c - -The --list option reports sizes as -1 and crc as ffffffff if the -compressed file is on a non seekable media. - In some rare cases, the --best option gives worse compression than the default compression level (-6). On some highly redundant files, .B compress @@ -515,7 +517,7 @@ .br General help using GNU software: <https://www.gnu.org/gethelp/> .SH "COPYRIGHT NOTICE" -Copyright \(co 1998-1999, 2001-2002, 2012, 2015-2021 Free Software Foundation, +Copyright \(co 1998-1999, 2001-2002, 2012, 2015-2022 Free Software Foundation, Inc. .br Copyright \(co 1992, 1993 Jean-loup Gailly
View file
_service:tar_scm:gzip-1.11.tar.xz/gzip.c -> _service:tar_scm:gzip-1.12.tar.xz/gzip.c
Changed
@@ -1,6 +1,6 @@ /* gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface - Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2021 Free Software + Copyright (C) 1999, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly @@ -173,9 +173,11 @@ static int no_time = -1; /* don't save or restore the original file time */ static int recursive = 0; /* recurse through directories (-r) */ static int list = 0; /* list the file contents (-l) */ +#ifndef DEBUG +static +#endif int verbose = 0; /* be verbose (-v) */ int quiet = 0; /* be very quiet (-q) */ -static int do_lzw = 0; /* generate output compatible with old compress (-Z) */ int test = 0; /* test .gz file integrity */ static int foreground = 0; /* set if program run in foreground */ char *program_name; /* program name */ @@ -228,7 +230,7 @@ unsigned insize; /* valid bytes in inbuf */ unsigned inptr; /* index of next byte to be processed in inbuf */ unsigned outcnt; /* bytes in output buffer */ -int rsync = 0; /* make ryncable chunks */ +int rsync = 0; /* make rsyncable chunks */ static int handled_sig = { @@ -317,7 +319,7 @@ local int make_ofname (void); local void shorten_name (char *name); local int get_method (int in); -local void do_list (int ifd, int method); +local void do_list (int method); local int check_ofname (void); local void copy_stat (struct stat *ifstat); local void install_signal_handlers (void); @@ -380,10 +382,6 @@ " -V, --version display version number", " -1, --fast compress faster", " -9, --best compress better", -#ifdef LZW - " -Z, --lzw produce output compatible with old compress", - " -b, --bits=BITS max number of bits per code (implies -Z)", -#endif "", "With no FILE, or when FILE is -, read standard input.", "", @@ -537,7 +535,7 @@ case 'k': keep = 1; break; case 'l': - list = decompress = to_stdout = 1; break; + list = decompress = test = to_stdout = 1; break; case 'L': license (); finish_out (); break; case 'm': /* undocumented, may change later */ @@ -588,14 +586,10 @@ case 'V': version (); finish_out (); break; case 'Z': -#ifdef LZW - do_lzw = 1; break; -#else fprintf(stderr, "%s: -Z not supported in this version\n", program_name); try_help (); break; -#endif case '1' + ENV_OPTION: case '2' + ENV_OPTION: case '3' + ENV_OPTION: case '4' + ENV_OPTION: case '5' + ENV_OPTION: case '6' + ENV_OPTION: case '7' + ENV_OPTION: case '8' + ENV_OPTION: case '9' + ENV_OPTION: @@ -642,8 +636,6 @@ do_exit(ERROR); } - if (do_lzw && !decompress) work = lzw; - /* Allocate all global buffers (for DYN_ALLOC option) */ ALLOC(uch, inbuf, INBUFSIZ +INBUF_EXTRA); ALLOC(uch, outbuf, OUTBUFSIZ+OUTBUF_EXTRA); @@ -663,7 +655,7 @@ /* And get to work */ if (file_count != 0) { - if (to_stdout && !test && !list && (!decompress || !ascii)) { + if (to_stdout && !test && (!decompress || !ascii)) { SET_BINARY_MODE (STDOUT_FILENO); } while (optind < argc) { @@ -681,7 +673,7 @@ { /* Output any totals, and check for output errors. */ if (!quiet && 1 < file_count) - do_list (-1, -1); + do_list (-1); if (fflush (stdout) != 0) write_error (); } @@ -767,7 +759,7 @@ if (decompress || !ascii) { SET_BINARY_MODE (STDIN_FILENO); } - if (!test && !list && (!decompress || !ascii)) { + if (!test && (!decompress || !ascii)) { SET_BINARY_MODE (STDOUT_FILENO); } strcpy(ifname, "stdin"); @@ -794,10 +786,6 @@ do_exit(exit_code); /* error message already emitted */ } } - if (list) { - do_list(ifd, method); - return; - } /* Actually do the compression/decompression. Loop over zipped members. */ @@ -813,6 +801,12 @@ bytes_out = 0; /* required for length check */ } + if (list) + { + do_list (method); + return; + } + if (verbose) { if (test) { fprintf(stderr, " OK\n"); @@ -957,7 +951,7 @@ /* Generate output file name. For -r and (-t or -l), skip files * without a valid gzip suffix (check done in make_ofname). */ - if (to_stdout && !list && !test) { + if (to_stdout && !test) { strcpy(ofname, "stdout"); } else if (make_ofname() != OK) { @@ -975,12 +969,6 @@ return; /* error message already emitted */ } } - if (list) { - do_list(ifd, method); - if (close (ifd) != 0) - read_error (); - return; - } /* If compressing to a file, check if ofname is not ambiguous * because the operating system truncates names. Otherwise, generate @@ -1000,7 +988,7 @@ /* Keep the name even if not truncated except with --no-name: */ if (!save_orig_name) save_orig_name = !no_name; - if (verbose) { + if (verbose && !list) { fprintf(stderr, "%s:\t", ifname); } @@ -1023,6 +1011,12 @@ if (close (ifd) != 0) read_error (); + if (list) + { + do_list (method); + return; + } + if (!to_stdout) { copy_stat (&istat); @@ -1074,7 +1068,7 @@ } else { display_ratio(bytes_in-(bytes_out-header_bytes), bytes_in, stderr); } - if (!test && !to_stdout) + if (!test) fprintf(stderr, " -- %s %s", keep ? "created" : "replaced with", ofname); fprintf(stderr, "\n"); @@ -1403,7 +1397,8 @@ /* With -t or -l, try all files (even without .gz suffix) * except with -r (behave as with just -dr). */ - if (!recursive && (list || test)) return OK; + if (!recursive && test) + return OK; /* Avoid annoying messages with -r */ if (verbose || (!recursive && !quiet)) { @@ -1696,7 +1691,6 @@ last_member = 1; if (imagic0 != EOF) { write_buf (STDOUT_FILENO, magic, 1); - bytes_out++; } } if (method >= 0) return method; @@ -1732,9 +1726,8 @@ * If the given method is < 0, display the accumulated totals. * IN assertions: time_stamp, header_bytes and ifile_size are initialized. */ -local void do_list(ifd, method) - int ifd; /* input file descriptor */ - int method; /* compression method */ +static void +do_list (int method) { ulg crc; /* original crc */ static int first_time = 1; @@ -1776,26 +1769,9 @@ return; } crc = (ulg)~0; /* unknown */ - bytes_out = -1L; - bytes_in = ifile_size; if (method == DEFLATED && !last_member) { - /* Get the crc and uncompressed size for gzip'ed (not zip'ed) files. - * If the lseek fails, we could use read() to get to the end, but - * --list is used to get quick results. - * Use "gunzip < foo.gz | wc -c" to get the uncompressed size if - * you are not concerned about speed. - */ - bytes_in = lseek(ifd, (off_t)(-8), SEEK_END); - if (bytes_in != -1L) { - uch buf8; - bytes_in += 8L; - if (read(ifd, (char*)buf, sizeof(buf)) != sizeof(buf)) { - read_error(); - } - crc = LG(buf); - bytes_out = LG(buf+4); - } + crc = unzip_crc; } if (verbose)
View file
_service:tar_scm:gzip-1.11.tar.xz/gzip.doc -> _service:tar_scm:gzip-1.12.tar.xz/gzip.doc
Changed
@@ -79,23 +79,26 @@ Compression is always performed, even if the compressed file is slightly larger than the original. The worst case expansion is a few - bytes for the gzip file header, plus 5 bytes every 32K block, or an ex- - pansion ratio of 0.015% for large files. Note that the actual number of - used disk blocks almost never increases. 1mgzip 22mpreserves the mode, own- - ership and timestamps of files when compressing or decompressing. + bytes for the gzip file header, plus 5 bytes per 32 KiB block, or an + expansion ratio of 0.015% for large files. The actual number of used + disk blocks almost never increases. + + 1mgzip 22mnormally preserves the mode and modification timestamp of a file + when compressing or decompressing. If you have appropriate privileges, + it also preserves the file's owner and group. 1mOPTIONS0m 1m-a --ascii0m - Ascii text mode: convert end-of-lines using local conventions. - This option is supported only on some non-Unix systems. For MS- - DOS, CR LF is converted to LF when compressing, and LF is con- + Ascii text mode: convert end-of-lines using local conventions. + This option is supported only on some non-Unix systems. For MS- + DOS, CR LF is converted to LF when compressing, and LF is con- verted to CR LF when decompressing. 1m-c --stdout --to-stdout0m - Write output on standard output; keep original files unchanged. - If there are several input files, the output consists of a se- - quence of independently compressed members. To obtain better - compression, concatenate all input files before compressing + Write output on standard output; keep original files unchanged. + If there are several input files, the output consists of a se- + quence of independently compressed members. To obtain better + compression, concatenate all input files before compressing them. 1m-d --decompress --uncompress0m @@ -103,12 +106,12 @@ 1m-f --force0m Force compression or decompression even if the file has multiple - links or the corresponding file already exists, or if the com- + links or the corresponding file already exists, or if the com- pressed data is read from or written to a terminal. If the input - data is not in a format recognized by 1mgzip22m, and if the option - --stdout is also given, copy the input data without change to - the standard output: let 1mzcat 22mbehave as 1mcat22m. If 1m-f 22mis not - given, and when not running in the background, 1mgzip 22mprompts to + data is not in a format recognized by 1mgzip22m, and if the option + --stdout is also given, copy the input data without change to + the standard output: let 1mzcat 22mbehave as 1mcat22m. If 1m-f 22mis not + given, and when not running in the background, 1mgzip 22mprompts to verify whether an existing file should be overwritten. 1m-h --help0m @@ -126,71 +129,75 @@ ratio: compression ratio (0.0% if unknown) uncompressed_name: name of the uncompressed file - The uncompressed size is given as -1 for files not in gzip for- - mat, such as compressed .Z files. To get the uncompressed size + The uncompressed size is given as -1 for files not in gzip for- + mat, such as compressed .Z files. To get the uncompressed size for such a file, you can use: zcat file.Z | wc -c - In combination with the --verbose option, the following fields + In combination with the --verbose option, the following fields are also displayed: method: compression method crc: the 32-bit CRC of the uncompressed data date & time: timestamp for the uncompressed file - The compression methods currently supported are deflate, com- - press, lzh (SCO compress -H) and pack. The crc is given as + The compression methods currently supported are deflate, com- + press, lzh (SCO compress -H) and pack. The crc is given as ffffffff for a file not in gzip format. - With --name, the uncompressed name, date and time are those + With --name, the uncompressed name, date and time are those stored within the compress file if present. - With --verbose, the size totals and compression ratio for all - files is also displayed, unless some sizes are unknown. With + With --verbose, the size totals and compression ratio for all + files is also displayed, unless some sizes are unknown. With --quiet, the title and totals lines are not displayed. 1m-L --license0m Display the 1mgzip 22mlicense and quit. 1m-n --no-name0m - When compressing, do not save the original file name and time- + When compressing, do not save the original file name and time- stamp by default. (The original name is always saved if the name - had to be truncated.) When decompressing, do not restore the - original file name if present (remove only the 1mgzip 22msuffix from - the compressed file name) and do not restore the original time- + had to be truncated.) When decompressing, do not restore the + original file name if present (remove only the 1mgzip 22msuffix from + the compressed file name) and do not restore the original time- stamp if present (copy it from the compressed file). This option is the default when decompressing. 1m-N --name0m - When compressing, always save the original file name and time- - stamp; this is the default. When decompressing, restore the - original file name and timestamp if present. This option is use- - ful on systems which have a limit on file name length or when - the timestamp has been lost after a file transfer. + When compressing, always save the original file name, and save + the seconds part of the original modification timestamp if the + original is a regular file and its timestamp is at least 1 + (1970-01-01 00:00:01 UTC) and is less than 2**32 (2106-02-07 + 06:28:16 UTC, assuming leap seconds are not counted); this is + the default. When decompressing, restore from the saved file + name and timestamp if present. This option is useful on systems + which have a limit on file name length or when the timestamp has + been lost after a file transfer. 1m-q --quiet0m Suppress all warnings. 1m-r --recursive0m - Travel the directory structure recursively. If any of the file - names specified on the command line are directories, 1mgzip 22mwill - descend into the directory and compress all the files it finds + Travel the directory structure recursively. If any of the file + names specified on the command line are directories, 1mgzip 22mwill + descend into the directory and compress all the files it finds there (or decompress them in the case of 1mgunzip 22m). 1m-S .suf --suffix .suf0m When compressing, use suffix .suf instead of .gz. Any non-empty - suffix can be given, but suffixes other than .z and .gz should - be avoided to avoid confusion when files are transferred to + suffix can be given, but suffixes other than .z and .gz should + be avoided to avoid confusion when files are transferred to other systems. - When decompressing, add .suf to the beginning of the list of + When decompressing, add .suf to the beginning of the list of suffixes to try, when deriving an output file name from an input file name. 1m--synchronous0m - Use synchronous output. With this option, 1mgzip 22mis less likely - to lose data during a system crash, but it can be considerably + Use synchronous output. With this option, 1mgzip 22mis less likely + to lose data during a system crash, but it can be considerably slower. 1m-t --test0m @@ -205,28 +212,28 @@ quit. 1m-# --fast --best0m - Regulate the speed of compression using the specified digit 1m#22m, - where 1m-1 22mor 1m--fast 22mindicates the fastest compression method - (less compression) and 1m-9 22mor 1m--best 22mindicates the slowest com- - pression method (best compression). The default compression + Regulate the speed of compression using the specified digit 1m#22m, + where 1m-1 22mor 1m--fast 22mindicates the fastest compression method + (less compression) and 1m-9 22mor 1m--best 22mindicates the slowest com- + pression method (best compression). The default compression level is 1m-6 22m(that is, biased towards high compression at expense of speed). 1m--rsyncable0m - When you synchronize a compressed file between two computers, - this option allows rsync to transfer only files that were + When you synchronize a compressed file between two computers, + this option allows rsync to transfer only files that were changed in the archive instead of the entire archive. Normally, - after a change is made to any file in the archive, the compres- - sion algorithm can generate a new version of the archive that - does not match the previous version of the archive. In this - case, rsync transfers the entire new version of the archive to - the remote computer. With this option, rsync can transfer only - the changed files as well as a small amount of metadata that is - required to update the archive structure in the area that was + after a change is made to any file in the archive, the compres- + sion algorithm can generate a new version of the archive that + does not match the previous version of the archive. In this + case, rsync transfers the entire new version of the archive to + the remote computer. With this option, rsync can transfer only + the changed files as well as a small amount of metadata that is + required to update the archive structure in the area that was changed. 1mADVANCED USAGE0m - Multiple compressed files can be concatenated. In this case, 1mgunzip0m + Multiple compressed files can be concatenated. In this case, 1mgunzip0m will extract all members at once. For example: gzip -c file1 > foo.gz @@ -240,8 +247,8 @@ cat file1 file2 - In case of damage to one member of a .gz file, other members can still - be recovered (if the damaged member is removed). However, you can get + In case of damage to one member of a .gz file, other members can still + be recovered (if the damaged member is removed). However, you can get better compression by compressing all members at once: cat file1 file2 | gzip > foo.gz @@ -256,23 +263,23 @@ gzip -cd old.gz | gzip > new.gz If a compressed file consists of several members, the uncompressed size - and CRC reported by the --list option applies to the last member only. + and CRC reported by the --list option applies to the last member only. If you need the uncompressed size for all members, you can use: gzip -cd file.gz | wc -c - If you wish to create a single archive file with multiple members so + If you wish to create a single archive file with multiple members so that members can later be extracted independently, use an archiver such - as tar or zip. GNU tar supports the -z option to invoke gzip transpar- + as tar or zip. GNU tar supports the -z option to invoke gzip transpar- ently. gzip is designed as a complement to tar, not as a replacement. 1mENVIRONMENT0m The obsolescent environment variable 1mGZIP 22mcan hold a set of default op- - tions for 1mgzip22m. These options are interpreted first and can be over- - written by explicit command line parameters. As this can cause prob- - lems when using scripts, this feature is supported only for options - that are reasonably likely to not cause too much harm, and 1mgzip 22mwarns - if it is used. This feature will be removed in a future release of + tions for 1mgzip22m. These options are interpreted first and can be over- + written by explicit command line parameters. As this can cause prob- + lems when using scripts, this feature is supported only for options + that are reasonably likely to not cause too much harm, and 1mgzip 22mwarns + if it is used. This feature will be removed in a future release of 1mgzip22m. You can use an alias or script instead. For example, if 1mgzip 22mis in the @@ -284,17 +291,17 @@ exec gzip -9 "$@" 1mSEE ALSO0m - znew(1), zcmp(1), zmore(1), zforce(1), gzexe(1), zip(1), unzip(1), com- - press(1) + 1mznew22m(1), 1mzcmp22m(1), 1mzmore22m(1), 1mzforce22m(1), 1mgzexe22m(1), 1mzip22m(1), 1munzip22m(1), 1mcom-0m + 1mpress22m(1) The 1mgzip 22mfile format is specified in P. Deutsch, GZIP file format spec- ification version 4.3, 1m<https://www.ietf.org/rfc/rfc1952.txt>22m, Internet - RFC 1952 (May 1996). The 1mzip 22mdeflation format is specified in P. - Deutsch, DEFLATE Compressed Data Format Specification version 1.3, + RFC 1952 (May 1996). The 1mzip 22mdeflation format is specified in P. + Deutsch, DEFLATE Compressed Data Format Specification version 1.3, 1m<https://www.ietf.org/rfc/rfc1951.txt>22m, Internet RFC 1951 (May 1996). 1mDIAGNOSTICS0m - Exit status is normally 0; if an error occurs, exit status is 1. If a + Exit status is normally 0; if an error occurs, exit status is 1. If a warning occurs, exit status is 2. Usage: gzip -cdfhklLnNrtvV19 -S suffix file ... @@ -304,61 +311,50 @@ The file specified to 1mgunzip 22mhas not been compressed. 4mfile24m: Corrupt input. Use zcat to recover some data. - The compressed file has been damaged. The data up to the point + The compressed file has been damaged. The data up to the point of failure can be recovered using zcat 4mfile24m > recover 4mfile24m: compressed with 4mxx24m bits, can only handle 4myy24m bits - 1mFile 22mwas compressed (using LZW) by a program that could deal + 1mFile 22mwas compressed (using LZW) by a program that could deal with more bits than the decompress code on this machine. Recom- - press the file with gzip, which compresses better and uses less + press the file with gzip, which compresses better and uses less memory. 4mfile24m: already has .gz suffix -- unchanged - The file is assumed to be already compressed. Rename the file + The file is assumed to be already compressed. Rename the file and try again. 4mfile24m already exists; do you wish to overwrite (y or n)? - Respond "y" if you want the output file to be replaced; "n" if + Respond "y" if you want the output file to be replaced; "n" if not. gunzip: corrupt input - A SIGSEGV violation was detected which usually means that the + A SIGSEGV violation was detected which usually means that the input file has been corrupted. 4mxx.x%24m Percentage of the input saved by compression. (Relevant only for 1m-v 22mand 1m-l22m.) -- not a regular file or directory: ignored - When the input file is not a regular file or directory, (e.g. a + When the input file is not a regular file or directory, (e.g. a symbolic link, socket, FIFO, device file), it is left unaltered. -- has 4mxx24m other links: unchanged - The input file has links; it is left unchanged. See 1mln22m(1) for + The input file has links; it is left unchanged. See 1mln22m(1) for more information. Use the 1m-f 22mflag to force compression of multi- ply-linked files. 1mCAVEATS0m - When writing compressed data to a tape, it is generally necessary to - pad the output with zeroes up to a block boundary. When the data is - read and the whole block is passed to 1mgunzip 22mfor decompression, 1mgunzip0m - detects that there is extra trailing garbage after the compressed data + When writing compressed data to a tape, it is generally necessary to + pad the output with zeroes up to a block boundary. When the data is + read and the whole block is passed to 1mgunzip 22mfor decompression, 1mgunzip0m + detects that there is extra trailing garbage after the compressed data and emits a warning by default. You can use the --quiet option to sup- press the warning. 1mBUGS0m - The gzip format represents the input size modulo 2^32, so the --list - option reports incorrect uncompressed sizes and compression ratios for - uncompressed files 4 GB and larger. To work around this problem, you - can use the following command to discover a large uncompressed file's - true size: - - zcat file.gz | wc -c - - The --list option reports sizes as -1 and crc as ffffffff if the com- - pressed file is on a non seekable media. - In some rare cases, the --best option gives worse compression than the default compression level (-6). On some highly redundant files, 1mcom-0m 1mpress 22mcompresses better than 1mgzip22m. @@ -369,7 +365,7 @@ General help using GNU software: <https://www.gnu.org/gethelp/> 1mCOPYRIGHT NOTICE0m - Copyright (C) 1998-1999, 2001-2002, 2012, 2015-2021 Free Software Foun- + Copyright (C) 1998-1999, 2001-2002, 2012, 2015-2022 Free Software Foun- dation, Inc. Copyright (C) 1992, 1993 Jean-loup Gailly
View file
_service:tar_scm:gzip-1.11.tar.xz/gzip.h -> _service:tar_scm:gzip-1.12.tar.xz/gzip.h
Changed
@@ -1,6 +1,6 @@ /* gzip.h -- common declarations for all gzip modules - Copyright (C) 1997-1999, 2001, 2006-2007, 2009-2021 Free Software + Copyright (C) 1997-1999, 2001, 2006-2007, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly. @@ -191,7 +191,6 @@ */ extern int exit_code; /* program exit code */ -extern int verbose; /* be verbose (-v) */ extern int quiet; /* be quiet (-q) */ extern int level; /* compression level */ extern int test; /* check .z file integrity */ @@ -239,6 +238,7 @@ /* Diagnostic functions */ #ifdef DEBUG +extern int verbose; /* be verbose (-v) */ # define Assert(cond,msg) {if (!(cond)) gzip_error (msg);} # define Trace(x) fprintf x # define Tracev(x) {if (verbose) fprintf x ;} @@ -262,6 +262,7 @@ extern int file_read (char *buf, unsigned size); /* in unzip.c */ +extern ulg unzip_crc; extern int unzip (int in, int out); extern int check_zipfile (int in); @@ -275,7 +276,6 @@ extern noreturn void abort_gzip (void); /* in deflate.c */ -extern void lm_init (int pack_level); extern off_t deflate (int pack_level); /* in trees.c */ @@ -284,8 +284,10 @@ extern off_t flush_block (char *buf, ulg stored_len, int pad, int eof); /* in bits.c */ +#ifdef IBM_Z_DFLTCC extern unsigned short bi_buf; extern int bi_valid; +#endif extern void bi_init (file_t zipfile); extern void send_bits (int value, int length); extern unsigned bi_reverse (unsigned value, int length) _GL_ATTRIBUTE_CONST;
View file
_service:tar_scm:gzip-1.11.tar.xz/inflate.c -> _service:tar_scm:gzip-1.12.tar.xz/inflate.c
Changed
@@ -1,6 +1,6 @@ /* Inflate deflated data - Copyright (C) 1997-1999, 2002, 2006, 2009-2021 Free Software Foundation, + Copyright (C) 1997-1999, 2002, 2006, 2009-2022 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/Makefile.am -> _service:tar_scm:gzip-1.12.tar.xz/lib/Makefile.am
Changed
@@ -1,6 +1,6 @@ # Make gzip/lib -*-Makefile-*- -# Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/Makefile.in -> _service:tar_scm:gzip-1.12.tar.xz/lib/Makefile.in
Changed
@@ -16,7 +16,7 @@ # Make gzip/lib -*-Makefile-*- -# Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -32,11 +32,11 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2022 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This file is distributed in the hope that it will be useful, @@ -190,6 +190,67 @@ POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ +@GL_COND_OBJ_CHDIR_LONG_TRUE@am__append_1 = chdir-long.c +@GL_COND_OBJ_CLOSE_TRUE@am__append_2 = close.c +@GL_COND_OBJ_CLOSEDIR_TRUE@am__append_3 = closedir.c +@GL_COND_OBJ_DIRFD_TRUE@am__append_4 = dirfd.c +@GL_COND_OBJ_DUP_TRUE@am__append_5 = dup.c +@GL_COND_OBJ_DUP2_TRUE@am__append_6 = dup2.c +@GL_COND_OBJ_ERROR_TRUE@am__append_7 = error.c +@GL_COND_OBJ_FCHDIR_TRUE@am__append_8 = fchdir.c +@GL_COND_OBJ_FCLOSE_TRUE@am__append_9 = fclose.c +@GL_COND_OBJ_FCNTL_TRUE@am__append_10 = fcntl.c +@GL_COND_OBJ_FDATASYNC_TRUE@am__append_11 = fdatasync.c +@GL_COND_OBJ_FDOPENDIR_TRUE@am__append_12 = fdopendir.c +@GL_COND_OBJ_FFLUSH_TRUE@am__append_13 = fflush.c +@GL_COND_OBJ_FLOAT_TRUE@am__append_14 = float.c +@GL_COND_OBJ_ITOLD_TRUE@am__append_15 = itold.c +@GL_COND_OBJ_FPURGE_TRUE@am__append_16 = fpurge.c +@GL_COND_OBJ_FREE_TRUE@am__append_17 = free.c +@GL_COND_OBJ_FSEEK_TRUE@am__append_18 = fseek.c +@GL_COND_OBJ_FSEEKO_TRUE@am__append_19 = fseeko.c +@GL_COND_OBJ_FSETERR_TRUE@am__append_20 = fseterr.c +@GL_COND_OBJ_FSTAT_TRUE@am__append_21 = fstat.c +@GL_COND_OBJ_FSYNC_TRUE@am__append_22 = fsync.c +@GL_COND_OBJ_FTELL_TRUE@am__append_23 = ftell.c +@GL_COND_OBJ_FTELLO_TRUE@am__append_24 = ftello.c +@GL_COND_OBJ_GETCWD_LGPL_TRUE@am__append_25 = getcwd-lgpl.c +@GL_COND_OBJ_GETDTABLESIZE_TRUE@am__append_26 = getdtablesize.c +@GL_COND_OBJ_GETOPT_TRUE@am__append_27 = getopt.c getopt1.c +@GL_COND_OBJ_GETTIMEOFDAY_TRUE@am__append_28 = gettimeofday.c +@GL_COND_OBJ_LSEEK_TRUE@am__append_29 = lseek.c +@GL_COND_OBJ_LSTAT_TRUE@am__append_30 = lstat.c +@GL_COND_OBJ_MEMCHR_TRUE@am__append_31 = memchr.c +@GL_COND_OBJ_MEMPCPY_TRUE@am__append_32 = mempcpy.c +@GL_COND_OBJ_MEMRCHR_TRUE@am__append_33 = memrchr.c +@GL_COND_OBJ_MSVC_INVAL_TRUE@am__append_34 = msvc-inval.c +@GL_COND_OBJ_MSVC_NOTHROW_TRUE@am__append_35 = msvc-nothrow.c +@GL_COND_OBJ_OPEN_TRUE@am__append_36 = open.c +@GL_COND_OBJ_OPENAT_TRUE@am__append_37 = openat.c +@GL_COND_OBJ_OPENDIR_TRUE@am__append_38 = opendir.c +@GL_COND_OBJ_PERROR_TRUE@am__append_39 = perror.c +@GL_COND_OBJ_PIPE_TRUE@am__append_40 = pipe.c +@GL_COND_OBJ_RAISE_TRUE@am__append_41 = raise.c +@GL_COND_OBJ_READDIR_TRUE@am__append_42 = readdir.c +@GL_COND_OBJ_REALLOCARRAY_TRUE@am__append_43 = reallocarray.c +@GL_COND_OBJ_RMDIR_TRUE@am__append_44 = rmdir.c +@GL_COND_OBJ_SIGACTION_TRUE@am__append_45 = sigaction.c +@GL_COND_OBJ_SIGNBIT3_TRUE@am__append_46 = signbitf.c signbitd.c signbitl.c +@GL_COND_OBJ_SIGPROCMASK_TRUE@am__append_47 = sigprocmask.c +@GL_COND_OBJ_STAT_TRUE@am__append_48 = stat.c +@GL_COND_OBJ_STDIO_READ_TRUE@am__append_49 = stdio-read.c +@GL_COND_OBJ_STDIO_WRITE_TRUE@am__append_50 = stdio-write.c +@GL_COND_OBJ_STPCPY_TRUE@am__append_51 = stpcpy.c +@GL_COND_OBJ_STRDUP_TRUE@am__append_52 = strdup.c +@GL_COND_OBJ_STRERROR_TRUE@am__append_53 = strerror.c +@GL_COND_OBJ_STRERROR_OVERRIDE_TRUE@am__append_54 = strerror-override.c +@GL_COND_OBJ_UNLINK_TRUE@am__append_55 = unlink.c +@GL_COND_OBJ_UNLINKAT_TRUE@am__append_56 = unlinkat.c +@GL_COND_OBJ_UTIME_TRUE@am__append_57 = utime.c +@GL_COND_OBJ_WINDOWS_MUTEX_TRUE@am__append_58 = windows-mutex.c +@GL_COND_OBJ_WINDOWS_ONCE_TRUE@am__append_59 = windows-once.c +@GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE@am__append_60 = windows-recmutex.c +@GL_COND_OBJ_WINDOWS_RWLOCK_TRUE@am__append_61 = windows-rwlock.c subdir = lib ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \ @@ -215,13 +276,12 @@ $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/frexp.m4 \ $(top_srcdir)/m4/frexpl.m4 $(top_srcdir)/m4/fseek.m4 \ $(top_srcdir)/m4/fseeko.m4 $(top_srcdir)/m4/fseterr.m4 \ - $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fstatat.m4 \ - $(top_srcdir)/m4/fsync.m4 $(top_srcdir)/m4/ftell.m4 \ - $(top_srcdir)/m4/ftello.m4 $(top_srcdir)/m4/getcwd.m4 \ - $(top_srcdir)/m4/getdtablesize.m4 $(top_srcdir)/m4/getopt.m4 \ - $(top_srcdir)/m4/getprogname.m4 $(top_srcdir)/m4/gettime.m4 \ - $(top_srcdir)/m4/gettimeofday.m4 $(top_srcdir)/m4/gnu-make.m4 \ - $(top_srcdir)/m4/gnulib-common.m4 \ + $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fsync.m4 \ + $(top_srcdir)/m4/ftell.m4 $(top_srcdir)/m4/ftello.m4 \ + $(top_srcdir)/m4/getcwd.m4 $(top_srcdir)/m4/getdtablesize.m4 \ + $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/getprogname.m4 \ + $(top_srcdir)/m4/gettime.m4 $(top_srcdir)/m4/gettimeofday.m4 \ + $(top_srcdir)/m4/gnu-make.m4 $(top_srcdir)/m4/gnulib-common.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/intmax_t.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ @@ -290,23 +350,158 @@ am__v_AR_1 = libgzip_a_AR = $(AR) $(ARFLAGS) am__DEPENDENCIES_1 = +am__libgzip_a_SOURCES_DIST = openat-priv.h openat-proc.c \ + basename-lgpl.c chdir-long.c cloexec.c close.c closedir.c \ + opendir-safer.c dirfd.c dirname-lgpl.c stripslash.c dup.c \ + dup2.c error.c exitfail.c fchdir.c fclose.c fcntl.c \ + creat-safer.c open-safer.c fd-hook.c fd-safer-flag.c \ + dup-safer-flag.c fdatasync.c fdopendir.c fflush.c \ + filenamecat-lgpl.c float.c itold.c fpurge.c freading.c free.c \ + fseek.c fseeko.c fseterr.c fstat.c fsync.c ftell.c ftello.c \ + getcwd-lgpl.c getdtablesize.c getopt.c getopt1.c getprogname.h \ + getprogname.c gettext.h gettime.c gettimeofday.c ialloc.c \ + idx.h glthread/lock.h glthread/lock.c lseek.c lstat.c \ + malloca.c math.c memchr.c mempcpy.c memrchr.c minmax.h \ + msvc-inval.c msvc-nothrow.c open.c openat.c openat-die.c \ + openat-safer.c opendir.c perror.c pipe.c printf-frexp.c \ + printf-frexpl.c raise.c readdir.c reallocarray.c rmdir.c \ + save-cwd.c savedir.c sigaction.c sig-handler.c signbitf.c \ + signbitd.c signbitl.c sigprocmask.c size_max.h stat.c \ + stat-time.c stdio-read.c stdio-write.c stpcpy.c strdup.c \ + strerror.c strerror-override.c glthread/threadlib.c timespec.c \ + unistd.c dup-safer.c fd-safer.c pipe-safer.c unlink.c \ + unlinkat.c utime.c utimens.c windows-mutex.c windows-once.c \ + windows-recmutex.c windows-rwlock.c xmalloc.c xalloc-die.c \ + xsize.h xsize.c yesno.c +@GL_COND_OBJ_CHDIR_LONG_TRUE@am__objects_1 = \ +@GL_COND_OBJ_CHDIR_LONG_TRUE@ libgzip_a-chdir-long.$(OBJEXT) +@GL_COND_OBJ_CLOSE_TRUE@am__objects_2 = libgzip_a-close.$(OBJEXT) +@GL_COND_OBJ_CLOSEDIR_TRUE@am__objects_3 = \ +@GL_COND_OBJ_CLOSEDIR_TRUE@ libgzip_a-closedir.$(OBJEXT) +@GL_COND_OBJ_DIRFD_TRUE@am__objects_4 = libgzip_a-dirfd.$(OBJEXT) +@GL_COND_OBJ_DUP_TRUE@am__objects_5 = libgzip_a-dup.$(OBJEXT) +@GL_COND_OBJ_DUP2_TRUE@am__objects_6 = libgzip_a-dup2.$(OBJEXT) +@GL_COND_OBJ_ERROR_TRUE@am__objects_7 = libgzip_a-error.$(OBJEXT) +@GL_COND_OBJ_FCHDIR_TRUE@am__objects_8 = libgzip_a-fchdir.$(OBJEXT) +@GL_COND_OBJ_FCLOSE_TRUE@am__objects_9 = libgzip_a-fclose.$(OBJEXT) +@GL_COND_OBJ_FCNTL_TRUE@am__objects_10 = libgzip_a-fcntl.$(OBJEXT) +@GL_COND_OBJ_FDATASYNC_TRUE@am__objects_11 = \ +@GL_COND_OBJ_FDATASYNC_TRUE@ libgzip_a-fdatasync.$(OBJEXT) +@GL_COND_OBJ_FDOPENDIR_TRUE@am__objects_12 = \ +@GL_COND_OBJ_FDOPENDIR_TRUE@ libgzip_a-fdopendir.$(OBJEXT) +@GL_COND_OBJ_FFLUSH_TRUE@am__objects_13 = libgzip_a-fflush.$(OBJEXT) +@GL_COND_OBJ_FLOAT_TRUE@am__objects_14 = libgzip_a-float.$(OBJEXT) +@GL_COND_OBJ_ITOLD_TRUE@am__objects_15 = libgzip_a-itold.$(OBJEXT) +@GL_COND_OBJ_FPURGE_TRUE@am__objects_16 = libgzip_a-fpurge.$(OBJEXT) +@GL_COND_OBJ_FREE_TRUE@am__objects_17 = libgzip_a-free.$(OBJEXT) +@GL_COND_OBJ_FSEEK_TRUE@am__objects_18 = libgzip_a-fseek.$(OBJEXT) +@GL_COND_OBJ_FSEEKO_TRUE@am__objects_19 = libgzip_a-fseeko.$(OBJEXT) +@GL_COND_OBJ_FSETERR_TRUE@am__objects_20 = \ +@GL_COND_OBJ_FSETERR_TRUE@ libgzip_a-fseterr.$(OBJEXT) +@GL_COND_OBJ_FSTAT_TRUE@am__objects_21 = libgzip_a-fstat.$(OBJEXT) +@GL_COND_OBJ_FSYNC_TRUE@am__objects_22 = libgzip_a-fsync.$(OBJEXT) +@GL_COND_OBJ_FTELL_TRUE@am__objects_23 = libgzip_a-ftell.$(OBJEXT) +@GL_COND_OBJ_FTELLO_TRUE@am__objects_24 = libgzip_a-ftello.$(OBJEXT) +@GL_COND_OBJ_GETCWD_LGPL_TRUE@am__objects_25 = \ +@GL_COND_OBJ_GETCWD_LGPL_TRUE@ libgzip_a-getcwd-lgpl.$(OBJEXT) +@GL_COND_OBJ_GETDTABLESIZE_TRUE@am__objects_26 = libgzip_a-getdtablesize.$(OBJEXT) +@GL_COND_OBJ_GETOPT_TRUE@am__objects_27 = libgzip_a-getopt.$(OBJEXT) \ +@GL_COND_OBJ_GETOPT_TRUE@ libgzip_a-getopt1.$(OBJEXT) +@GL_COND_OBJ_GETTIMEOFDAY_TRUE@am__objects_28 = libgzip_a-gettimeofday.$(OBJEXT) am__dirstamp = $(am__leading_dot)dirstamp -am_libgzip_a_OBJECTS = openat-proc.$(OBJEXT) basename-lgpl.$(OBJEXT) \ - cloexec.$(OBJEXT) opendir-safer.$(OBJEXT) \ - dirname-lgpl.$(OBJEXT) stripslash.$(OBJEXT) exitfail.$(OBJEXT) \ - creat-safer.$(OBJEXT) open-safer.$(OBJEXT) fd-hook.$(OBJEXT) \ - fd-safer-flag.$(OBJEXT) dup-safer-flag.$(OBJEXT) \ - filenamecat-lgpl.$(OBJEXT) freading.$(OBJEXT) \ - getprogname.$(OBJEXT) gettime.$(OBJEXT) ialloc.$(OBJEXT) \ - glthread/lock.$(OBJEXT) malloca.$(OBJEXT) math.$(OBJEXT) \ - openat-die.$(OBJEXT) openat-safer.$(OBJEXT) \ - printf-frexp.$(OBJEXT) printf-frexpl.$(OBJEXT) \ - save-cwd.$(OBJEXT) savedir.$(OBJEXT) sig-handler.$(OBJEXT) \ - stat-time.$(OBJEXT) statat.$(OBJEXT) \ - glthread/threadlib.$(OBJEXT) timespec.$(OBJEXT) \ - unistd.$(OBJEXT) dup-safer.$(OBJEXT) fd-safer.$(OBJEXT) \ - pipe-safer.$(OBJEXT) utimens.$(OBJEXT) xmalloc.$(OBJEXT) \ - xalloc-die.$(OBJEXT) xsize.$(OBJEXT) yesno.$(OBJEXT) +@GL_COND_OBJ_LSEEK_TRUE@am__objects_29 = libgzip_a-lseek.$(OBJEXT) +@GL_COND_OBJ_LSTAT_TRUE@am__objects_30 = libgzip_a-lstat.$(OBJEXT) +@GL_COND_OBJ_MEMCHR_TRUE@am__objects_31 = libgzip_a-memchr.$(OBJEXT) +@GL_COND_OBJ_MEMPCPY_TRUE@am__objects_32 = \ +@GL_COND_OBJ_MEMPCPY_TRUE@ libgzip_a-mempcpy.$(OBJEXT) +@GL_COND_OBJ_MEMRCHR_TRUE@am__objects_33 = \ +@GL_COND_OBJ_MEMRCHR_TRUE@ libgzip_a-memrchr.$(OBJEXT) +@GL_COND_OBJ_MSVC_INVAL_TRUE@am__objects_34 = \ +@GL_COND_OBJ_MSVC_INVAL_TRUE@ libgzip_a-msvc-inval.$(OBJEXT) +@GL_COND_OBJ_MSVC_NOTHROW_TRUE@am__objects_35 = libgzip_a-msvc-nothrow.$(OBJEXT) +@GL_COND_OBJ_OPEN_TRUE@am__objects_36 = libgzip_a-open.$(OBJEXT) +@GL_COND_OBJ_OPENAT_TRUE@am__objects_37 = libgzip_a-openat.$(OBJEXT) +@GL_COND_OBJ_OPENDIR_TRUE@am__objects_38 = \ +@GL_COND_OBJ_OPENDIR_TRUE@ libgzip_a-opendir.$(OBJEXT) +@GL_COND_OBJ_PERROR_TRUE@am__objects_39 = libgzip_a-perror.$(OBJEXT) +@GL_COND_OBJ_PIPE_TRUE@am__objects_40 = libgzip_a-pipe.$(OBJEXT) +@GL_COND_OBJ_RAISE_TRUE@am__objects_41 = libgzip_a-raise.$(OBJEXT) +@GL_COND_OBJ_READDIR_TRUE@am__objects_42 = \ +@GL_COND_OBJ_READDIR_TRUE@ libgzip_a-readdir.$(OBJEXT) +@GL_COND_OBJ_REALLOCARRAY_TRUE@am__objects_43 = libgzip_a-reallocarray.$(OBJEXT) +@GL_COND_OBJ_RMDIR_TRUE@am__objects_44 = libgzip_a-rmdir.$(OBJEXT) +@GL_COND_OBJ_SIGACTION_TRUE@am__objects_45 = \ +@GL_COND_OBJ_SIGACTION_TRUE@ libgzip_a-sigaction.$(OBJEXT) +@GL_COND_OBJ_SIGNBIT3_TRUE@am__objects_46 = \ +@GL_COND_OBJ_SIGNBIT3_TRUE@ libgzip_a-signbitf.$(OBJEXT) \ +@GL_COND_OBJ_SIGNBIT3_TRUE@ libgzip_a-signbitd.$(OBJEXT) \ +@GL_COND_OBJ_SIGNBIT3_TRUE@ libgzip_a-signbitl.$(OBJEXT) +@GL_COND_OBJ_SIGPROCMASK_TRUE@am__objects_47 = \ +@GL_COND_OBJ_SIGPROCMASK_TRUE@ libgzip_a-sigprocmask.$(OBJEXT) +@GL_COND_OBJ_STAT_TRUE@am__objects_48 = libgzip_a-stat.$(OBJEXT) +@GL_COND_OBJ_STDIO_READ_TRUE@am__objects_49 = \ +@GL_COND_OBJ_STDIO_READ_TRUE@ libgzip_a-stdio-read.$(OBJEXT) +@GL_COND_OBJ_STDIO_WRITE_TRUE@am__objects_50 = \ +@GL_COND_OBJ_STDIO_WRITE_TRUE@ libgzip_a-stdio-write.$(OBJEXT) +@GL_COND_OBJ_STPCPY_TRUE@am__objects_51 = libgzip_a-stpcpy.$(OBJEXT) +@GL_COND_OBJ_STRDUP_TRUE@am__objects_52 = libgzip_a-strdup.$(OBJEXT) +@GL_COND_OBJ_STRERROR_TRUE@am__objects_53 = \ +@GL_COND_OBJ_STRERROR_TRUE@ libgzip_a-strerror.$(OBJEXT) +@GL_COND_OBJ_STRERROR_OVERRIDE_TRUE@am__objects_54 = libgzip_a-strerror-override.$(OBJEXT) +@GL_COND_OBJ_UNLINK_TRUE@am__objects_55 = libgzip_a-unlink.$(OBJEXT) +@GL_COND_OBJ_UNLINKAT_TRUE@am__objects_56 = \ +@GL_COND_OBJ_UNLINKAT_TRUE@ libgzip_a-unlinkat.$(OBJEXT) +@GL_COND_OBJ_UTIME_TRUE@am__objects_57 = libgzip_a-utime.$(OBJEXT) +@GL_COND_OBJ_WINDOWS_MUTEX_TRUE@am__objects_58 = libgzip_a-windows-mutex.$(OBJEXT) +@GL_COND_OBJ_WINDOWS_ONCE_TRUE@am__objects_59 = libgzip_a-windows-once.$(OBJEXT) +@GL_COND_OBJ_WINDOWS_RECMUTEX_TRUE@am__objects_60 = libgzip_a-windows-recmutex.$(OBJEXT) +@GL_COND_OBJ_WINDOWS_RWLOCK_TRUE@am__objects_61 = libgzip_a-windows-rwlock.$(OBJEXT) +am_libgzip_a_OBJECTS = libgzip_a-openat-proc.$(OBJEXT) \ + libgzip_a-basename-lgpl.$(OBJEXT) $(am__objects_1) \ + libgzip_a-cloexec.$(OBJEXT) $(am__objects_2) $(am__objects_3) \ + libgzip_a-opendir-safer.$(OBJEXT) $(am__objects_4) \ + libgzip_a-dirname-lgpl.$(OBJEXT) \ + libgzip_a-stripslash.$(OBJEXT) $(am__objects_5) \ + $(am__objects_6) $(am__objects_7) libgzip_a-exitfail.$(OBJEXT) \ + $(am__objects_8) $(am__objects_9) $(am__objects_10) \ + libgzip_a-creat-safer.$(OBJEXT) libgzip_a-open-safer.$(OBJEXT) \ + libgzip_a-fd-hook.$(OBJEXT) libgzip_a-fd-safer-flag.$(OBJEXT) \ + libgzip_a-dup-safer-flag.$(OBJEXT) $(am__objects_11) \ + $(am__objects_12) $(am__objects_13) \ + libgzip_a-filenamecat-lgpl.$(OBJEXT) $(am__objects_14) \ + $(am__objects_15) $(am__objects_16) \ + libgzip_a-freading.$(OBJEXT) $(am__objects_17) \ + $(am__objects_18) $(am__objects_19) $(am__objects_20) \ + $(am__objects_21) $(am__objects_22) $(am__objects_23) \ + $(am__objects_24) $(am__objects_25) $(am__objects_26) \ + $(am__objects_27) libgzip_a-getprogname.$(OBJEXT) \ + libgzip_a-gettime.$(OBJEXT) $(am__objects_28) \ + libgzip_a-ialloc.$(OBJEXT) glthread/libgzip_a-lock.$(OBJEXT) \ + $(am__objects_29) $(am__objects_30) \ + libgzip_a-malloca.$(OBJEXT) libgzip_a-math.$(OBJEXT) \ + $(am__objects_31) $(am__objects_32) $(am__objects_33) \ + $(am__objects_34) $(am__objects_35) $(am__objects_36) \ + $(am__objects_37) libgzip_a-openat-die.$(OBJEXT) \ + libgzip_a-openat-safer.$(OBJEXT) $(am__objects_38) \ + $(am__objects_39) $(am__objects_40) \ + libgzip_a-printf-frexp.$(OBJEXT) \ + libgzip_a-printf-frexpl.$(OBJEXT) $(am__objects_41) \ + $(am__objects_42) $(am__objects_43) $(am__objects_44) \ + libgzip_a-save-cwd.$(OBJEXT) libgzip_a-savedir.$(OBJEXT) \ + $(am__objects_45) libgzip_a-sig-handler.$(OBJEXT) \ + $(am__objects_46) $(am__objects_47) $(am__objects_48) \ + libgzip_a-stat-time.$(OBJEXT) $(am__objects_49) \ + $(am__objects_50) $(am__objects_51) $(am__objects_52) \ + $(am__objects_53) $(am__objects_54) \ + glthread/libgzip_a-threadlib.$(OBJEXT) \ + libgzip_a-timespec.$(OBJEXT) libgzip_a-unistd.$(OBJEXT) \ + libgzip_a-dup-safer.$(OBJEXT) libgzip_a-fd-safer.$(OBJEXT) \ + libgzip_a-pipe-safer.$(OBJEXT) $(am__objects_55) \ + $(am__objects_56) $(am__objects_57) \ + libgzip_a-utimens.$(OBJEXT) $(am__objects_58) \ + $(am__objects_59) $(am__objects_60) $(am__objects_61) \ + libgzip_a-xmalloc.$(OBJEXT) libgzip_a-xalloc-die.$(OBJEXT) \ + libgzip_a-xsize.$(OBJEXT) libgzip_a-yesno.$(OBJEXT) libgzip_a_OBJECTS = $(am_libgzip_a_OBJECTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) @@ -323,68 +518,122 @@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__maybe_remake_depfiles = depfiles -am__depfiles_remade = $(DEPDIR)/match.Po ./$(DEPDIR)/asnprintf.Po \ - ./$(DEPDIR)/at-func.Po ./$(DEPDIR)/basename-lgpl.Po \ - ./$(DEPDIR)/calloc.Po ./$(DEPDIR)/chdir-long.Po \ - ./$(DEPDIR)/cloexec.Po ./$(DEPDIR)/close.Po \ - ./$(DEPDIR)/closedir.Po ./$(DEPDIR)/creat-safer.Po \ - ./$(DEPDIR)/dirfd.Po ./$(DEPDIR)/dirname-lgpl.Po \ - ./$(DEPDIR)/dup-safer-flag.Po ./$(DEPDIR)/dup-safer.Po \ - ./$(DEPDIR)/dup.Po ./$(DEPDIR)/dup2.Po ./$(DEPDIR)/error.Po \ - ./$(DEPDIR)/exitfail.Po ./$(DEPDIR)/fchdir.Po \ - ./$(DEPDIR)/fclose.Po ./$(DEPDIR)/fcntl.Po \ - ./$(DEPDIR)/fd-hook.Po ./$(DEPDIR)/fd-safer-flag.Po \ - ./$(DEPDIR)/fd-safer.Po ./$(DEPDIR)/fdatasync.Po \ - ./$(DEPDIR)/fdopendir.Po ./$(DEPDIR)/fflush.Po \ - ./$(DEPDIR)/filenamecat-lgpl.Po ./$(DEPDIR)/float.Po \ - ./$(DEPDIR)/fprintf.Po ./$(DEPDIR)/fpurge.Po \ - ./$(DEPDIR)/freading.Po ./$(DEPDIR)/free.Po \ - ./$(DEPDIR)/frexp.Po ./$(DEPDIR)/frexpl.Po \ - ./$(DEPDIR)/fseek.Po ./$(DEPDIR)/fseeko.Po \ - ./$(DEPDIR)/fseterr.Po ./$(DEPDIR)/fstat.Po \ - ./$(DEPDIR)/fstatat.Po ./$(DEPDIR)/fsync.Po \ - ./$(DEPDIR)/ftell.Po ./$(DEPDIR)/ftello.Po \ - ./$(DEPDIR)/getcwd-lgpl.Po ./$(DEPDIR)/getdtablesize.Po \ - ./$(DEPDIR)/getopt.Po ./$(DEPDIR)/getopt1.Po \ - ./$(DEPDIR)/getprogname.Po ./$(DEPDIR)/gettime.Po \ - ./$(DEPDIR)/gettimeofday.Po ./$(DEPDIR)/ialloc.Po \ - ./$(DEPDIR)/isnan.Po ./$(DEPDIR)/isnand.Po \ - ./$(DEPDIR)/isnanf.Po ./$(DEPDIR)/isnanl.Po \ - ./$(DEPDIR)/itold.Po ./$(DEPDIR)/lseek.Po ./$(DEPDIR)/lstat.Po \ - ./$(DEPDIR)/malloc.Po ./$(DEPDIR)/malloca.Po \ - ./$(DEPDIR)/math.Po ./$(DEPDIR)/memchr.Po \ - ./$(DEPDIR)/mempcpy.Po ./$(DEPDIR)/memrchr.Po \ - ./$(DEPDIR)/msvc-inval.Po ./$(DEPDIR)/msvc-nothrow.Po \ - ./$(DEPDIR)/open-safer.Po ./$(DEPDIR)/open.Po \ - ./$(DEPDIR)/openat-die.Po ./$(DEPDIR)/openat-proc.Po \ - ./$(DEPDIR)/openat-safer.Po ./$(DEPDIR)/openat.Po \ - ./$(DEPDIR)/opendir-safer.Po ./$(DEPDIR)/opendir.Po \ - ./$(DEPDIR)/perror.Po ./$(DEPDIR)/pipe-safer.Po \ - ./$(DEPDIR)/pipe.Po ./$(DEPDIR)/printf-args.Po \ - ./$(DEPDIR)/printf-frexp.Po ./$(DEPDIR)/printf-frexpl.Po \ - ./$(DEPDIR)/printf-parse.Po ./$(DEPDIR)/printf.Po \ - ./$(DEPDIR)/raise.Po ./$(DEPDIR)/readdir.Po \ - ./$(DEPDIR)/realloc.Po ./$(DEPDIR)/reallocarray.Po \ - ./$(DEPDIR)/rmdir.Po ./$(DEPDIR)/save-cwd.Po \ - ./$(DEPDIR)/savedir.Po ./$(DEPDIR)/sig-handler.Po \ - ./$(DEPDIR)/sigaction.Po ./$(DEPDIR)/signbitd.Po \ - ./$(DEPDIR)/signbitf.Po ./$(DEPDIR)/signbitl.Po \ - ./$(DEPDIR)/sigprocmask.Po ./$(DEPDIR)/stat-time.Po \ - ./$(DEPDIR)/stat-w32.Po ./$(DEPDIR)/stat.Po \ - ./$(DEPDIR)/statat.Po ./$(DEPDIR)/stpcpy.Po \ - ./$(DEPDIR)/strdup.Po ./$(DEPDIR)/strerror-override.Po \ - ./$(DEPDIR)/strerror.Po ./$(DEPDIR)/strerror_r.Po \ - ./$(DEPDIR)/stripslash.Po ./$(DEPDIR)/timespec.Po \ - ./$(DEPDIR)/unistd.Po ./$(DEPDIR)/unlink.Po \ - ./$(DEPDIR)/unlinkat.Po ./$(DEPDIR)/utime.Po \ - ./$(DEPDIR)/utimens.Po ./$(DEPDIR)/vasnprintf.Po \ - ./$(DEPDIR)/vfprintf.Po ./$(DEPDIR)/windows-mutex.Po \ - ./$(DEPDIR)/windows-once.Po ./$(DEPDIR)/windows-recmutex.Po \ - ./$(DEPDIR)/windows-rwlock.Po ./$(DEPDIR)/xalloc-die.Po \ - ./$(DEPDIR)/xmalloc.Po ./$(DEPDIR)/xsize.Po \ - ./$(DEPDIR)/yesno.Po glthread/$(DEPDIR)/lock.Po \ - glthread/$(DEPDIR)/threadlib.Po +am__depfiles_remade = $(DEPDIR)/match.Po \ + ./$(DEPDIR)/libgzip_a-asnprintf.Po \ + ./$(DEPDIR)/libgzip_a-at-func.Po \ + ./$(DEPDIR)/libgzip_a-basename-lgpl.Po \ + ./$(DEPDIR)/libgzip_a-calloc.Po \ + ./$(DEPDIR)/libgzip_a-chdir-long.Po \ + ./$(DEPDIR)/libgzip_a-cloexec.Po \ + ./$(DEPDIR)/libgzip_a-close.Po \ + ./$(DEPDIR)/libgzip_a-closedir.Po \ + ./$(DEPDIR)/libgzip_a-creat-safer.Po \ + ./$(DEPDIR)/libgzip_a-dirfd.Po \ + ./$(DEPDIR)/libgzip_a-dirname-lgpl.Po \ + ./$(DEPDIR)/libgzip_a-dup-safer-flag.Po \ + ./$(DEPDIR)/libgzip_a-dup-safer.Po \ + ./$(DEPDIR)/libgzip_a-dup.Po ./$(DEPDIR)/libgzip_a-dup2.Po \ + ./$(DEPDIR)/libgzip_a-error.Po \ + ./$(DEPDIR)/libgzip_a-exitfail.Po \ + ./$(DEPDIR)/libgzip_a-fchdir.Po \ + ./$(DEPDIR)/libgzip_a-fclose.Po ./$(DEPDIR)/libgzip_a-fcntl.Po \ + ./$(DEPDIR)/libgzip_a-fd-hook.Po \ + ./$(DEPDIR)/libgzip_a-fd-safer-flag.Po \ + ./$(DEPDIR)/libgzip_a-fd-safer.Po \ + ./$(DEPDIR)/libgzip_a-fdatasync.Po \ + ./$(DEPDIR)/libgzip_a-fdopendir.Po \ + ./$(DEPDIR)/libgzip_a-fflush.Po \ + ./$(DEPDIR)/libgzip_a-filenamecat-lgpl.Po \ + ./$(DEPDIR)/libgzip_a-float.Po \ + ./$(DEPDIR)/libgzip_a-fprintf.Po \ + ./$(DEPDIR)/libgzip_a-fpurge.Po \ + ./$(DEPDIR)/libgzip_a-freading.Po \ + ./$(DEPDIR)/libgzip_a-free.Po ./$(DEPDIR)/libgzip_a-frexp.Po \ + ./$(DEPDIR)/libgzip_a-frexpl.Po ./$(DEPDIR)/libgzip_a-fseek.Po \ + ./$(DEPDIR)/libgzip_a-fseeko.Po \ + ./$(DEPDIR)/libgzip_a-fseterr.Po \ + ./$(DEPDIR)/libgzip_a-fstat.Po ./$(DEPDIR)/libgzip_a-fsync.Po \ + ./$(DEPDIR)/libgzip_a-ftell.Po ./$(DEPDIR)/libgzip_a-ftello.Po \ + ./$(DEPDIR)/libgzip_a-getcwd-lgpl.Po \ + ./$(DEPDIR)/libgzip_a-getdtablesize.Po \ + ./$(DEPDIR)/libgzip_a-getopt.Po \ + ./$(DEPDIR)/libgzip_a-getopt1.Po \ + ./$(DEPDIR)/libgzip_a-getprogname.Po \ + ./$(DEPDIR)/libgzip_a-gettime.Po \ + ./$(DEPDIR)/libgzip_a-gettimeofday.Po \ + ./$(DEPDIR)/libgzip_a-ialloc.Po ./$(DEPDIR)/libgzip_a-isnan.Po \ + ./$(DEPDIR)/libgzip_a-isnand.Po \ + ./$(DEPDIR)/libgzip_a-isnanf.Po \ + ./$(DEPDIR)/libgzip_a-isnanl.Po ./$(DEPDIR)/libgzip_a-itold.Po \ + ./$(DEPDIR)/libgzip_a-lseek.Po ./$(DEPDIR)/libgzip_a-lstat.Po \ + ./$(DEPDIR)/libgzip_a-malloc.Po \ + ./$(DEPDIR)/libgzip_a-malloca.Po ./$(DEPDIR)/libgzip_a-math.Po \ + ./$(DEPDIR)/libgzip_a-memchr.Po \ + ./$(DEPDIR)/libgzip_a-mempcpy.Po \ + ./$(DEPDIR)/libgzip_a-memrchr.Po \ + ./$(DEPDIR)/libgzip_a-msvc-inval.Po \ + ./$(DEPDIR)/libgzip_a-msvc-nothrow.Po \ + ./$(DEPDIR)/libgzip_a-open-safer.Po \ + ./$(DEPDIR)/libgzip_a-open.Po \ + ./$(DEPDIR)/libgzip_a-openat-die.Po \ + ./$(DEPDIR)/libgzip_a-openat-proc.Po \ + ./$(DEPDIR)/libgzip_a-openat-safer.Po \ + ./$(DEPDIR)/libgzip_a-openat.Po \ + ./$(DEPDIR)/libgzip_a-opendir-safer.Po \ + ./$(DEPDIR)/libgzip_a-opendir.Po \ + ./$(DEPDIR)/libgzip_a-perror.Po \ + ./$(DEPDIR)/libgzip_a-pipe-safer.Po \ + ./$(DEPDIR)/libgzip_a-pipe.Po \ + ./$(DEPDIR)/libgzip_a-printf-args.Po \ + ./$(DEPDIR)/libgzip_a-printf-frexp.Po \ + ./$(DEPDIR)/libgzip_a-printf-frexpl.Po \ + ./$(DEPDIR)/libgzip_a-printf-parse.Po \ + ./$(DEPDIR)/libgzip_a-printf.Po ./$(DEPDIR)/libgzip_a-raise.Po \ + ./$(DEPDIR)/libgzip_a-readdir.Po \ + ./$(DEPDIR)/libgzip_a-realloc.Po \ + ./$(DEPDIR)/libgzip_a-reallocarray.Po \ + ./$(DEPDIR)/libgzip_a-rmdir.Po \ + ./$(DEPDIR)/libgzip_a-save-cwd.Po \ + ./$(DEPDIR)/libgzip_a-savedir.Po \ + ./$(DEPDIR)/libgzip_a-sig-handler.Po \ + ./$(DEPDIR)/libgzip_a-sigaction.Po \ + ./$(DEPDIR)/libgzip_a-signbitd.Po \ + ./$(DEPDIR)/libgzip_a-signbitf.Po \ + ./$(DEPDIR)/libgzip_a-signbitl.Po \ + ./$(DEPDIR)/libgzip_a-sigprocmask.Po \ + ./$(DEPDIR)/libgzip_a-stat-time.Po \ + ./$(DEPDIR)/libgzip_a-stat-w32.Po \ + ./$(DEPDIR)/libgzip_a-stat.Po \ + ./$(DEPDIR)/libgzip_a-stdio-read.Po \ + ./$(DEPDIR)/libgzip_a-stdio-write.Po \ + ./$(DEPDIR)/libgzip_a-stpcpy.Po \ + ./$(DEPDIR)/libgzip_a-strdup.Po \ + ./$(DEPDIR)/libgzip_a-strerror-override.Po \ + ./$(DEPDIR)/libgzip_a-strerror.Po \ + ./$(DEPDIR)/libgzip_a-strerror_r.Po \ + ./$(DEPDIR)/libgzip_a-stripslash.Po \ + ./$(DEPDIR)/libgzip_a-timespec.Po \ + ./$(DEPDIR)/libgzip_a-unistd.Po \ + ./$(DEPDIR)/libgzip_a-unlink.Po \ + ./$(DEPDIR)/libgzip_a-unlinkat.Po \ + ./$(DEPDIR)/libgzip_a-utime.Po \ + ./$(DEPDIR)/libgzip_a-utimens.Po \ + ./$(DEPDIR)/libgzip_a-vasnprintf.Po \ + ./$(DEPDIR)/libgzip_a-vfprintf.Po \ + ./$(DEPDIR)/libgzip_a-windows-mutex.Po \ + ./$(DEPDIR)/libgzip_a-windows-once.Po \ + ./$(DEPDIR)/libgzip_a-windows-recmutex.Po \ + ./$(DEPDIR)/libgzip_a-windows-rwlock.Po \ + ./$(DEPDIR)/libgzip_a-xalloc-die.Po \ + ./$(DEPDIR)/libgzip_a-xmalloc.Po \ + ./$(DEPDIR)/libgzip_a-xsize.Po ./$(DEPDIR)/libgzip_a-yesno.Po \ + glthread/$(DEPDIR)/libgzip_a-lock.Po \ + glthread/$(DEPDIR)/libgzip_a-threadlib.Po am__mv = mv -f +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) @@ -398,7 +647,8 @@ am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libgzip_a_SOURCES) $(EXTRA_libgzip_a_SOURCES) -DIST_SOURCES = $(libgzip_a_SOURCES) $(EXTRA_libgzip_a_SOURCES) +DIST_SOURCES = $(am__libgzip_a_SOURCES_DIST) \ + $(EXTRA_libgzip_a_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ @@ -473,6 +723,8 @@ FLOAT_H = @FLOAT_H@ GETOPT_CDEFS_H = @GETOPT_CDEFS_H@ GETOPT_H = @GETOPT_H@ +GL_CFLAG_ALLOW_WARNINGS = @GL_CFLAG_ALLOW_WARNINGS@ +GL_CFLAG_GNULIB_WARNINGS = @GL_CFLAG_GNULIB_WARNINGS@ GL_GNULIB_ACCESS = @GL_GNULIB_ACCESS@ GL_GNULIB_ACOSF = @GL_GNULIB_ACOSF@ GL_GNULIB_ACOSL = @GL_GNULIB_ACOSL@ @@ -485,6 +737,7 @@ GL_GNULIB_ATANL = @GL_GNULIB_ATANL@ GL_GNULIB_ATOLL = @GL_GNULIB_ATOLL@ GL_GNULIB_BTOWC = @GL_GNULIB_BTOWC@ +GL_GNULIB_CALLOC_GNU = @GL_GNULIB_CALLOC_GNU@ GL_GNULIB_CALLOC_POSIX = @GL_GNULIB_CALLOC_POSIX@ GL_GNULIB_CANONICALIZE_FILE_NAME = @GL_GNULIB_CANONICALIZE_FILE_NAME@ GL_GNULIB_CBRT = @GL_GNULIB_CBRT@ @@ -555,6 +808,7 @@ GL_GNULIB_FMODF = @GL_GNULIB_FMODF@ GL_GNULIB_FMODL = @GL_GNULIB_FMODL@ GL_GNULIB_FOPEN = @GL_GNULIB_FOPEN@ +GL_GNULIB_FOPEN_GNU = @GL_GNULIB_FOPEN_GNU@ GL_GNULIB_FPRINTF = @GL_GNULIB_FPRINTF@ GL_GNULIB_FPRINTF_POSIX = @GL_GNULIB_FPRINTF_POSIX@ GL_GNULIB_FPURGE = @GL_GNULIB_FPURGE@ @@ -593,6 +847,7 @@ GL_GNULIB_GETOPT_POSIX = @GL_GNULIB_GETOPT_POSIX@ GL_GNULIB_GETPAGESIZE = @GL_GNULIB_GETPAGESIZE@ GL_GNULIB_GETPASS = @GL_GNULIB_GETPASS@ +GL_GNULIB_GETPASS_GNU = @GL_GNULIB_GETPASS_GNU@ GL_GNULIB_GETSUBOPT = @GL_GNULIB_GETSUBOPT@ GL_GNULIB_GETTIMEOFDAY = @GL_GNULIB_GETTIMEOFDAY@ GL_GNULIB_GETUMASK = @GL_GNULIB_GETUMASK@ @@ -638,6 +893,7 @@ GL_GNULIB_LOGL = @GL_GNULIB_LOGL@ GL_GNULIB_LSEEK = @GL_GNULIB_LSEEK@ GL_GNULIB_LSTAT = @GL_GNULIB_LSTAT@ +GL_GNULIB_MALLOC_GNU = @GL_GNULIB_MALLOC_GNU@ GL_GNULIB_MALLOC_POSIX = @GL_GNULIB_MALLOC_POSIX@ GL_GNULIB_MBRLEN = @GL_GNULIB_MBRLEN@ GL_GNULIB_MBRTOWC = @GL_GNULIB_MBRTOWC@ @@ -763,6 +1019,7 @@ GL_GNULIB_READLINK = @GL_GNULIB_READLINK@ GL_GNULIB_READLINKAT = @GL_GNULIB_READLINKAT@ GL_GNULIB_REALLOCARRAY = @GL_GNULIB_REALLOCARRAY@ +GL_GNULIB_REALLOC_GNU = @GL_GNULIB_REALLOC_GNU@ GL_GNULIB_REALLOC_POSIX = @GL_GNULIB_REALLOC_POSIX@ GL_GNULIB_REALPATH = @GL_GNULIB_REALPATH@ GL_GNULIB_REMAINDER = @GL_GNULIB_REMAINDER@ @@ -837,6 +1094,7 @@ GL_GNULIB_TANL = @GL_GNULIB_TANL@ GL_GNULIB_TIMEGM = @GL_GNULIB_TIMEGM@ GL_GNULIB_TIMESPEC_GET = @GL_GNULIB_TIMESPEC_GET@ +GL_GNULIB_TIMESPEC_GETRES = @GL_GNULIB_TIMESPEC_GETRES@ GL_GNULIB_TIME_R = @GL_GNULIB_TIME_R@ GL_GNULIB_TIME_RZ = @GL_GNULIB_TIME_RZ@ GL_GNULIB_TMPFILE = @GL_GNULIB_TMPFILE@ @@ -908,6 +1166,7 @@ GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@ GNULIB_WARN_CFLAGS = @GNULIB_WARN_CFLAGS@ GREP = @GREP@ +GZIP_TRANSFORMED = @GZIP_TRANSFORMED@ HAVE_ACOSF = @HAVE_ACOSF@ HAVE_ACOSL = @HAVE_ACOSL@ HAVE_ALIGNED_ALLOC = @HAVE_ALIGNED_ALLOC@ @@ -1201,6 +1460,7 @@ HAVE_TANL = @HAVE_TANL@ HAVE_TIMEGM = @HAVE_TIMEGM@ HAVE_TIMESPEC_GET = @HAVE_TIMESPEC_GET@ +HAVE_TIMESPEC_GETRES = @HAVE_TIMESPEC_GETRES@ HAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@ HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ @@ -1262,6 +1522,7 @@ INT32_MAX_LT_INTMAX_MAX = @INT32_MAX_LT_INTMAX_MAX@ INT64_MAX_EQ_LONG_MAX = @INT64_MAX_EQ_LONG_MAX@ LDFLAGS = @LDFLAGS@ +LESS = @LESS@ LIBGZIP_LIBDEPS = @LIBGZIP_LIBDEPS@ LIBGZIP_LTLIBDEPS = @LIBGZIP_LTLIBDEPS@ LIBINTL = @LIBINTL@ @@ -1348,7 +1609,8 @@ REPLACE_ATAN2F = @REPLACE_ATAN2F@ REPLACE_ATANF = @REPLACE_ATANF@ REPLACE_BTOWC = @REPLACE_BTOWC@ -REPLACE_CALLOC = @REPLACE_CALLOC@ +REPLACE_CALLOC_FOR_CALLOC_GNU = @REPLACE_CALLOC_FOR_CALLOC_GNU@ +REPLACE_CALLOC_FOR_CALLOC_POSIX = @REPLACE_CALLOC_FOR_CALLOC_POSIX@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CBRTF = @REPLACE_CBRTF@ REPLACE_CBRTL = @REPLACE_CBRTL@ @@ -1358,6 +1620,7 @@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@ +REPLACE_COPY_FILE_RANGE = @REPLACE_COPY_FILE_RANGE@ REPLACE_COSF = @REPLACE_COSF@ REPLACE_COSHF = @REPLACE_COSHF@ REPLACE_CREAT = @REPLACE_CREAT@ @@ -1400,6 +1663,7 @@ REPLACE_FMODF = @REPLACE_FMODF@ REPLACE_FMODL = @REPLACE_FMODL@ REPLACE_FOPEN = @REPLACE_FOPEN@ +REPLACE_FOPEN_FOR_FOPEN_GNU = @REPLACE_FOPEN_FOR_FOPEN_GNU@ REPLACE_FPRINTF = @REPLACE_FPRINTF@ REPLACE_FPURGE = @REPLACE_FPURGE@ REPLACE_FREE = @REPLACE_FREE@ @@ -1424,6 +1688,7 @@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_GETPASS = @REPLACE_GETPASS@ +REPLACE_GETPASS_FOR_GETPASS_GNU = @REPLACE_GETPASS_FOR_GETPASS_GNU@ REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@ REPLACE_GMTIME = @REPLACE_GMTIME@ REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@ @@ -1462,7 +1727,8 @@ REPLACE_LOGL = @REPLACE_LOGL@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_LSTAT = @REPLACE_LSTAT@ -REPLACE_MALLOC = @REPLACE_MALLOC@ +REPLACE_MALLOC_FOR_MALLOC_GNU = @REPLACE_MALLOC_FOR_MALLOC_GNU@ +REPLACE_MALLOC_FOR_MALLOC_POSIX = @REPLACE_MALLOC_FOR_MALLOC_POSIX@ REPLACE_MBRLEN = @REPLACE_MBRLEN@ REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ REPLACE_MBSINIT = @REPLACE_MBSINIT@ @@ -1506,8 +1772,9 @@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_READLINKAT = @REPLACE_READLINKAT@ -REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALLOCARRAY = @REPLACE_REALLOCARRAY@ +REPLACE_REALLOC_FOR_REALLOC_GNU = @REPLACE_REALLOC_FOR_REALLOC_GNU@ +REPLACE_REALLOC_FOR_REALLOC_POSIX = @REPLACE_REALLOC_FOR_REALLOC_POSIX@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_REMAINDER = @REPLACE_REMAINDER@ REPLACE_REMAINDERF = @REPLACE_REMAINDERF@ @@ -1621,6 +1888,8 @@ WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINDOWS_STAT_TIMESPEC = @WINDOWS_STAT_TIMESPEC@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ +ZDIFF_TRANSFORMED = @ZDIFF_TRANSFORMED@ +ZGREP_TRANSFORMED = @ZGREP_TRANSFORMED@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -1643,8 +1912,10 @@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ +gl_LIBOBJDEPS = @gl_LIBOBJDEPS@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ +gltests_LIBOBJDEPS = @gltests_LIBOBJDEPS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ @@ -1693,22 +1964,18 @@ # for the POSIX specification #endif EXTRA_DIST = alloca.in.h $(top_srcdir)/build-aux/announce-gen assure.h \ - attribute.h basename-lgpl.h calloc.c calloc.c chdir-long.c \ - chdir-long.h cloexec.h close.c closedir.c dirent-private.h \ - dirent.in.h dirent--.h dirent-safer.h dirfd.c dirname.h \ + attribute.h basename-lgpl.h calloc.c calloc.c chdir-long.h \ + cloexec.h dirent-private.h dirent.in.h dirent--.h \ + dirent-safer.h dirname.h \ $(top_srcdir)/build-aux/do-release-commit-and-tag dosname.h \ - dup.c dup2.c errno.in.h error.c error.h exitfail.h fchdir.c \ - fclose.c fcntl.c fcntl.in.h fcntl--.h fcntl-safer.h fd-hook.h \ - fdatasync.c fdopendir.c fflush.c stdio-impl.h filename.h \ - filenamecat.h float.c float.in.h itold.c fprintf.c fpucw.h \ - fpurge.c stdio-impl.h freading.h stdio-impl.h free.c frexp.c \ - frexp.c frexpl.c fseek.c fseeko.c stdio-impl.h fseterr.c \ - fseterr.h stdio-impl.h fstat.c stat-w32.c stat-w32.h at-func.c \ - fstatat.c fsync.c ftell.c ftello.c stdio-impl.h \ - $(top_srcdir)/build-aux/gendocs.sh getcwd-lgpl.c \ - getdtablesize.c getopt-cdefs.in.h getopt-core.h getopt-ext.h \ - getopt-pfx-core.h getopt-pfx-ext.h getopt.c getopt.in.h \ - getopt1.c getopt_int.h gettimeofday.c \ + errno.in.h error.h exitfail.h fcntl.in.h fcntl--.h \ + fcntl-safer.h fd-hook.h stdio-impl.h filename.h filenamecat.h \ + float.in.h fprintf.c fpucw.h stdio-impl.h freading.h \ + stdio-impl.h frexp.c frexp.c frexpl.c stdio-impl.h fseterr.h \ + stdio-impl.h stat-w32.c stat-w32.h stdio-impl.h \ + $(top_srcdir)/build-aux/gendocs.sh getopt-cdefs.in.h \ + getopt-core.h getopt-ext.h getopt-pfx-core.h getopt-pfx-ext.h \ + getopt.in.h getopt_int.h \ $(top_srcdir)/build-aux/git-version-gen \ $(top_srcdir)/build-aux/gitlog-to-changelog \ $(top_srcdir)/build-aux/gnu-web-doc-update \ @@ -1716,33 +1983,26 @@ ialloc.h ignore-value.h intprops.h inttypes.in.h float+.h \ isnan.c isnand-nolibm.h isnand.c float+.h isnan.c \ isnanf-nolibm.h isnanf.c float+.h isnan.c isnanl-nolibm.h \ - isnanl.c limits.in.h lseek.c lstat.c $(top_srcdir)/maint.mk \ - malloc.c malloc.c malloca.h math.in.h memchr.c memchr.valgrind \ - mempcpy.c memrchr.c msvc-inval.c msvc-inval.h msvc-nothrow.c \ - msvc-nothrow.h open.c openat.c openat.h fcntl--.h \ - fcntl-safer.h dirent-private.h opendir.c pathmax.h perror.c \ - pipe.c printf-frexp.h printf-frexp.c printf-frexpl.h printf.c \ - raise.c dirent-private.h readdir.c realloc.c realloc.c \ - reallocarray.c rmdir.c save-cwd.h savedir.h sig-handler.h \ - sigaction.c signal.in.h float+.h signbitd.c signbitf.c \ - signbitl.c sigprocmask.c _Noreturn.h arg-nonnull.h c++defs.h \ - warn-on-use.h stat-w32.c stat-w32.h stat.c stat-time.h \ - stdalign.in.h stdbool.in.h stddef.in.h stdint.in.h stdio.in.h \ - stdlib.in.h stdnoreturn.in.h stpcpy.c strdup.c strerror.c \ - strerror-override.c strerror-override.h strerror_r.c \ - string.in.h sys_stat.in.h sys_time.in.h sys_types.in.h \ - time.in.h timespec.h unistd.in.h unistd--.h unistd-safer.h \ - unlink.c at-func.c unlinkat.c \ + isnanl.c limits.in.h $(top_srcdir)/maint.mk malloc.c malloc.c \ + malloca.h math.in.h memchr.valgrind msvc-inval.h \ + msvc-nothrow.h openat.h fcntl--.h fcntl-safer.h \ + dirent-private.h pathmax.h printf-frexp.h printf-frexp.c \ + printf-frexpl.h printf.c dirent-private.h realloc.c realloc.c \ + save-cwd.h savedir.h sig-handler.h signal.in.h float+.h \ + _Noreturn.h arg-nonnull.h c++defs.h warn-on-use.h stat-w32.c \ + stat-w32.h stat-time.h stdalign.in.h stdbool.in.h stddef.in.h \ + stdint.in.h stdio.in.h stdlib.in.h stdnoreturn.in.h \ + strerror-override.h strerror_r.c string.in.h sys_stat.in.h \ + sys_time.in.h sys_types.in.h time.in.h timespec.h unistd.in.h \ + unistd--.h unistd-safer.h at-func.c \ $(top_srcdir)/build-aux/update-copyright \ - $(top_srcdir)/build-aux/useless-if-before-free utime.c \ - utime.in.h utimens.h asnprintf.c float+.h printf-args.c \ - printf-args.h printf-parse.c printf-parse.h vasnprintf.c \ - vasnprintf.h $(top_srcdir)/build-aux/vc-list-files verify.h \ - vfprintf.c wchar.in.h windows-initguard.h windows-mutex.c \ - windows-mutex.h windows-once.c windows-once.h \ - windows-initguard.h windows-recmutex.c windows-recmutex.h \ - windows-initguard.h windows-rwlock.c windows-rwlock.h xalloc.h \ - xalloc.h xalloc-oversized.h yesno.h + $(top_srcdir)/build-aux/useless-if-before-free utime.in.h \ + utimens.h asnprintf.c float+.h printf-args.c printf-args.h \ + printf-parse.c printf-parse.h vasnprintf.c vasnprintf.h \ + $(top_srcdir)/build-aux/vc-list-files verify.h vfprintf.c \ + wchar.in.h windows-initguard.h windows-mutex.h windows-once.h \ + windows-initguard.h windows-recmutex.h windows-initguard.h \ + windows-rwlock.h xalloc.h xalloc.h xalloc-oversized.h yesno.h MOSTLYCLEANDIRS = sys MOSTLYCLEANFILES = core *.stackdump alloca.h alloca.h-t dirent.h \ dirent.h-t errno.h errno.h-t fcntl.h fcntl.h-t float.h \ @@ -1759,41 +2019,64 @@ # No GNU Make output. noinst_LIBRARIES = libgzip.a libgzip_a_SOURCES = openat-priv.h openat-proc.c basename-lgpl.c \ - cloexec.c opendir-safer.c dirname-lgpl.c stripslash.c \ - exitfail.c creat-safer.c open-safer.c fd-hook.c \ - fd-safer-flag.c dup-safer-flag.c filenamecat-lgpl.c freading.c \ - getprogname.h getprogname.c gettext.h gettime.c ialloc.c idx.h \ - glthread/lock.h glthread/lock.c malloca.c math.c minmax.h \ - openat-die.c openat-safer.c printf-frexp.c printf-frexpl.c \ - save-cwd.c savedir.c sig-handler.c size_max.h stat-time.c \ - statat.c glthread/threadlib.c timespec.c unistd.c dup-safer.c \ - fd-safer.c pipe-safer.c utimens.c xmalloc.c xalloc-die.c \ + $(am__append_1) cloexec.c $(am__append_2) $(am__append_3) \ + opendir-safer.c $(am__append_4) dirname-lgpl.c stripslash.c \ + $(am__append_5) $(am__append_6) $(am__append_7) exitfail.c \ + $(am__append_8) $(am__append_9) $(am__append_10) creat-safer.c \ + open-safer.c fd-hook.c fd-safer-flag.c dup-safer-flag.c \ + $(am__append_11) $(am__append_12) $(am__append_13) \ + filenamecat-lgpl.c $(am__append_14) $(am__append_15) \ + $(am__append_16) freading.c $(am__append_17) $(am__append_18) \ + $(am__append_19) $(am__append_20) $(am__append_21) \ + $(am__append_22) $(am__append_23) $(am__append_24) \ + $(am__append_25) $(am__append_26) $(am__append_27) \ + getprogname.h getprogname.c gettext.h gettime.c \ + $(am__append_28) ialloc.c idx.h glthread/lock.h \ + glthread/lock.c $(am__append_29) $(am__append_30) malloca.c \ + math.c $(am__append_31) $(am__append_32) $(am__append_33) \ + minmax.h $(am__append_34) $(am__append_35) $(am__append_36) \ + $(am__append_37) openat-die.c openat-safer.c $(am__append_38) \ + $(am__append_39) $(am__append_40) printf-frexp.c \ + printf-frexpl.c $(am__append_41) $(am__append_42) \ + $(am__append_43) $(am__append_44) save-cwd.c savedir.c \ + $(am__append_45) sig-handler.c $(am__append_46) \ + $(am__append_47) size_max.h $(am__append_48) stat-time.c \ + $(am__append_49) $(am__append_50) $(am__append_51) \ + $(am__append_52) $(am__append_53) $(am__append_54) \ + glthread/threadlib.c timespec.c unistd.c dup-safer.c \ + fd-safer.c pipe-safer.c $(am__append_55) $(am__append_56) \ + $(am__append_57) utimens.c $(am__append_58) $(am__append_59) \ + $(am__append_60) $(am__append_61) xmalloc.c xalloc-die.c \ xsize.h xsize.c yesno.c +libgzip_a_CFLAGS = $(AM_CFLAGS) $(GL_CFLAG_GNULIB_WARNINGS) libgzip_a_LIBADD = $(gl_LIBOBJS) $(LIBOBJS) libgzip_a_DEPENDENCIES = $(gl_LIBOBJS) $(LIBOBJS) -EXTRA_libgzip_a_SOURCES = calloc.c calloc.c chdir-long.c close.c \ - closedir.c dirfd.c dup.c dup2.c error.c fchdir.c fclose.c \ - fcntl.c fdatasync.c fdopendir.c fflush.c float.c itold.c \ - fprintf.c fpurge.c free.c frexp.c frexp.c frexpl.c fseek.c \ - fseeko.c fseterr.c fstat.c stat-w32.c at-func.c fstatat.c \ - fsync.c ftell.c ftello.c getcwd-lgpl.c getdtablesize.c \ - getopt.c getopt1.c gettimeofday.c isnan.c isnand.c isnan.c \ - isnanf.c isnan.c isnanl.c lseek.c lstat.c malloc.c malloc.c \ - memchr.c mempcpy.c memrchr.c msvc-inval.c msvc-nothrow.c \ - open.c openat.c opendir.c perror.c pipe.c printf-frexp.c \ - printf.c raise.c readdir.c realloc.c realloc.c reallocarray.c \ - rmdir.c sigaction.c signbitd.c signbitf.c signbitl.c \ - sigprocmask.c stat-w32.c stat.c stpcpy.c strdup.c strerror.c \ - strerror-override.c strerror_r.c unlink.c at-func.c unlinkat.c \ - utime.c asnprintf.c printf-args.c printf-parse.c vasnprintf.c \ - vfprintf.c windows-mutex.c windows-once.c windows-recmutex.c \ - windows-rwlock.c +EXTRA_libgzip_a_SOURCES = calloc.c calloc.c fprintf.c frexp.c frexp.c \ + frexpl.c stat-w32.c isnan.c isnand.c isnan.c isnanf.c isnan.c \ + isnanl.c malloc.c malloc.c printf-frexp.c printf.c realloc.c \ + realloc.c stat-w32.c strerror_r.c at-func.c asnprintf.c \ + printf-args.c printf-parse.c vasnprintf.c vfprintf.c # Use this preprocessor expression to decide whether #include_next works. # Do not rely on a 'configure'-time test for this, since the expression # might appear in an installed header, which is used by some other compiler. HAVE_INCLUDE_NEXT = (__GNUC__ || __clang__ || 60000000 <= __DECC_VER) +# In 'sed', replace the pattern space with a "DO NOT EDIT" comment. +SED_HEADER_NOEDIT = s,.*,/* DO NOT EDIT! GENERATED AUTOMATICALLY! */, + +# '$(SED_HEADER_STDOUT) -e "..."' runs 'sed' but first outputs "DO NOT EDIT". +SED_HEADER_STDOUT = sed -e 1h -e '1$(SED_HEADER_NOEDIT)' -e 1G + +# '$(SED_HEADER_TO_AT_t) FILE' copies FILE to $@-t, prepending a leading +# "DO_NOT_EDIT". Although this could be done more simply via: +# SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) > $@-t +# the -n and 'w' avoid a fork+exec, at least when GNU Make is used. +SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) -n -e 'w $@-t' + +# Use $(gl_V_at) instead of $(AM_V_GEN) or $(AM_V_at) on a line that +gl_V_at = $(AM_V_GEN) + # Because this Makefile snippet defines a variable used by other # gnulib Makefile snippets, it must be present in all makefiles that # need it. This is ensured by the applicability 'all' defined above. @@ -1872,9 +2155,9 @@ glthread/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) glthread/$(DEPDIR) @: > glthread/$(DEPDIR)/$(am__dirstamp) -glthread/lock.$(OBJEXT): glthread/$(am__dirstamp) \ +glthread/libgzip_a-lock.$(OBJEXT): glthread/$(am__dirstamp) \ glthread/$(DEPDIR)/$(am__dirstamp) -glthread/threadlib.$(OBJEXT): glthread/$(am__dirstamp) \ +glthread/libgzip_a-threadlib.$(OBJEXT): glthread/$(am__dirstamp) \ glthread/$(DEPDIR)/$(am__dirstamp) libgzip.a: $(libgzip_a_OBJECTS) $(libgzip_a_DEPENDENCIES) $(EXTRA_libgzip_a_DEPENDENCIES) @@ -1890,128 +2173,128 @@ -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/match.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/asnprintf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/at-func.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/basename-lgpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/calloc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chdir-long.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cloexec.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/close.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/closedir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/creat-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dirfd.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dirname-lgpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dup-safer-flag.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dup-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dup.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dup2.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/error.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exitfail.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fchdir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fclose.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fcntl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fd-hook.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fd-safer-flag.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fd-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fdatasync.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fdopendir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fflush.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filenamecat-lgpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/float.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fprintf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fpurge.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/freading.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/free.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frexp.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frexpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fseek.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fseeko.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fseterr.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fstat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fstatat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsync.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftell.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ftello.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getcwd-lgpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getdtablesize.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt1.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getprogname.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gettime.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gettimeofday.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ialloc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isnan.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isnand.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isnanf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isnanl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/itold.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lseek.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lstat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/malloc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/malloca.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/math.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memchr.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mempcpy.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memrchr.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msvc-inval.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msvc-nothrow.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/open-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/open.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/openat-die.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/openat-proc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/openat-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/openat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opendir-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opendir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/perror.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipe-safer.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipe.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printf-args.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printf-frexp.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printf-frexpl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printf-parse.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/printf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raise.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readdir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/realloc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reallocarray.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rmdir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/save-cwd.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/savedir.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sig-handler.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sigaction.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signbitd.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signbitf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signbitl.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sigprocmask.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stat-time.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stat-w32.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/statat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stpcpy.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strdup.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror-override.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror_r.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stripslash.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timespec.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unistd.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlink.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unlinkat.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utime.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utimens.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vasnprintf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vfprintf.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-mutex.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-once.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-recmutex.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-rwlock.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xalloc-die.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmalloc.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xsize.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yesno.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/lock.Po@am__quote@ # am--include-marker -@AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/threadlib.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-asnprintf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-at-func.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-basename-lgpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-calloc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-chdir-long.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-cloexec.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-close.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-closedir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-creat-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dirfd.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dirname-lgpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dup-safer-flag.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dup-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dup.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-dup2.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-error.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-exitfail.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fchdir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fclose.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fcntl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fd-hook.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fd-safer-flag.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fd-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fdatasync.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fdopendir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fflush.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-filenamecat-lgpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-float.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fprintf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fpurge.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-freading.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-free.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-frexp.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-frexpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fseek.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fseeko.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fseterr.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fstat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-fsync.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-ftell.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-ftello.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-getcwd-lgpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-getdtablesize.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-getopt.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-getopt1.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-getprogname.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-gettime.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-gettimeofday.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-ialloc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-isnan.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-isnand.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-isnanf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-isnanl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-itold.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-lseek.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-lstat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-malloc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-malloca.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-math.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-memchr.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-mempcpy.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-memrchr.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-msvc-inval.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-msvc-nothrow.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-open-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-open.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-openat-die.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-openat-proc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-openat-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-openat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-opendir-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-opendir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-perror.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-pipe-safer.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-pipe.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-printf-args.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-printf-frexp.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-printf-frexpl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-printf-parse.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-printf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-raise.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-readdir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-realloc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-reallocarray.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-rmdir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-save-cwd.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-savedir.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-sig-handler.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-sigaction.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-signbitd.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-signbitf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-signbitl.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-sigprocmask.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stat-time.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stat-w32.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stdio-read.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stdio-write.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stpcpy.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-strdup.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-strerror-override.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-strerror.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-strerror_r.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-stripslash.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-timespec.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-unistd.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-unlink.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-unlinkat.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-utime.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-utimens.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-vasnprintf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-vfprintf.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-windows-mutex.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-windows-once.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-windows-recmutex.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-windows-rwlock.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-xalloc-die.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-xmalloc.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-xsize.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgzip_a-yesno.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/libgzip_a-lock.Po@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/libgzip_a-threadlib.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @@ -2035,6 +2318,1714 @@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +libgzip_a-openat-proc.o: openat-proc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-proc.o -MD -MP -MF $(DEPDIR)/libgzip_a-openat-proc.Tpo -c -o libgzip_a-openat-proc.o `test -f 'openat-proc.c' || echo '$(srcdir)/'`openat-proc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-proc.Tpo $(DEPDIR)/libgzip_a-openat-proc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-proc.c' object='libgzip_a-openat-proc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-proc.o `test -f 'openat-proc.c' || echo '$(srcdir)/'`openat-proc.c + +libgzip_a-openat-proc.obj: openat-proc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-proc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-openat-proc.Tpo -c -o libgzip_a-openat-proc.obj `if test -f 'openat-proc.c'; then $(CYGPATH_W) 'openat-proc.c'; else $(CYGPATH_W) '$(srcdir)/openat-proc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-proc.Tpo $(DEPDIR)/libgzip_a-openat-proc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-proc.c' object='libgzip_a-openat-proc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-proc.obj `if test -f 'openat-proc.c'; then $(CYGPATH_W) 'openat-proc.c'; else $(CYGPATH_W) '$(srcdir)/openat-proc.c'; fi` + +libgzip_a-basename-lgpl.o: basename-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-basename-lgpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-basename-lgpl.Tpo -c -o libgzip_a-basename-lgpl.o `test -f 'basename-lgpl.c' || echo '$(srcdir)/'`basename-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-basename-lgpl.Tpo $(DEPDIR)/libgzip_a-basename-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='basename-lgpl.c' object='libgzip_a-basename-lgpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-basename-lgpl.o `test -f 'basename-lgpl.c' || echo '$(srcdir)/'`basename-lgpl.c + +libgzip_a-basename-lgpl.obj: basename-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-basename-lgpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-basename-lgpl.Tpo -c -o libgzip_a-basename-lgpl.obj `if test -f 'basename-lgpl.c'; then $(CYGPATH_W) 'basename-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/basename-lgpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-basename-lgpl.Tpo $(DEPDIR)/libgzip_a-basename-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='basename-lgpl.c' object='libgzip_a-basename-lgpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-basename-lgpl.obj `if test -f 'basename-lgpl.c'; then $(CYGPATH_W) 'basename-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/basename-lgpl.c'; fi` + +libgzip_a-chdir-long.o: chdir-long.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-chdir-long.o -MD -MP -MF $(DEPDIR)/libgzip_a-chdir-long.Tpo -c -o libgzip_a-chdir-long.o `test -f 'chdir-long.c' || echo '$(srcdir)/'`chdir-long.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-chdir-long.Tpo $(DEPDIR)/libgzip_a-chdir-long.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='chdir-long.c' object='libgzip_a-chdir-long.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-chdir-long.o `test -f 'chdir-long.c' || echo '$(srcdir)/'`chdir-long.c + +libgzip_a-chdir-long.obj: chdir-long.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-chdir-long.obj -MD -MP -MF $(DEPDIR)/libgzip_a-chdir-long.Tpo -c -o libgzip_a-chdir-long.obj `if test -f 'chdir-long.c'; then $(CYGPATH_W) 'chdir-long.c'; else $(CYGPATH_W) '$(srcdir)/chdir-long.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-chdir-long.Tpo $(DEPDIR)/libgzip_a-chdir-long.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='chdir-long.c' object='libgzip_a-chdir-long.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-chdir-long.obj `if test -f 'chdir-long.c'; then $(CYGPATH_W) 'chdir-long.c'; else $(CYGPATH_W) '$(srcdir)/chdir-long.c'; fi` + +libgzip_a-cloexec.o: cloexec.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-cloexec.o -MD -MP -MF $(DEPDIR)/libgzip_a-cloexec.Tpo -c -o libgzip_a-cloexec.o `test -f 'cloexec.c' || echo '$(srcdir)/'`cloexec.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-cloexec.Tpo $(DEPDIR)/libgzip_a-cloexec.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cloexec.c' object='libgzip_a-cloexec.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-cloexec.o `test -f 'cloexec.c' || echo '$(srcdir)/'`cloexec.c + +libgzip_a-cloexec.obj: cloexec.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-cloexec.obj -MD -MP -MF $(DEPDIR)/libgzip_a-cloexec.Tpo -c -o libgzip_a-cloexec.obj `if test -f 'cloexec.c'; then $(CYGPATH_W) 'cloexec.c'; else $(CYGPATH_W) '$(srcdir)/cloexec.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-cloexec.Tpo $(DEPDIR)/libgzip_a-cloexec.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cloexec.c' object='libgzip_a-cloexec.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-cloexec.obj `if test -f 'cloexec.c'; then $(CYGPATH_W) 'cloexec.c'; else $(CYGPATH_W) '$(srcdir)/cloexec.c'; fi` + +libgzip_a-close.o: close.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-close.o -MD -MP -MF $(DEPDIR)/libgzip_a-close.Tpo -c -o libgzip_a-close.o `test -f 'close.c' || echo '$(srcdir)/'`close.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-close.Tpo $(DEPDIR)/libgzip_a-close.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='close.c' object='libgzip_a-close.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-close.o `test -f 'close.c' || echo '$(srcdir)/'`close.c + +libgzip_a-close.obj: close.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-close.obj -MD -MP -MF $(DEPDIR)/libgzip_a-close.Tpo -c -o libgzip_a-close.obj `if test -f 'close.c'; then $(CYGPATH_W) 'close.c'; else $(CYGPATH_W) '$(srcdir)/close.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-close.Tpo $(DEPDIR)/libgzip_a-close.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='close.c' object='libgzip_a-close.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-close.obj `if test -f 'close.c'; then $(CYGPATH_W) 'close.c'; else $(CYGPATH_W) '$(srcdir)/close.c'; fi` + +libgzip_a-closedir.o: closedir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-closedir.o -MD -MP -MF $(DEPDIR)/libgzip_a-closedir.Tpo -c -o libgzip_a-closedir.o `test -f 'closedir.c' || echo '$(srcdir)/'`closedir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-closedir.Tpo $(DEPDIR)/libgzip_a-closedir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='closedir.c' object='libgzip_a-closedir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-closedir.o `test -f 'closedir.c' || echo '$(srcdir)/'`closedir.c + +libgzip_a-closedir.obj: closedir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-closedir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-closedir.Tpo -c -o libgzip_a-closedir.obj `if test -f 'closedir.c'; then $(CYGPATH_W) 'closedir.c'; else $(CYGPATH_W) '$(srcdir)/closedir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-closedir.Tpo $(DEPDIR)/libgzip_a-closedir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='closedir.c' object='libgzip_a-closedir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-closedir.obj `if test -f 'closedir.c'; then $(CYGPATH_W) 'closedir.c'; else $(CYGPATH_W) '$(srcdir)/closedir.c'; fi` + +libgzip_a-opendir-safer.o: opendir-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-opendir-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-opendir-safer.Tpo -c -o libgzip_a-opendir-safer.o `test -f 'opendir-safer.c' || echo '$(srcdir)/'`opendir-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-opendir-safer.Tpo $(DEPDIR)/libgzip_a-opendir-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='opendir-safer.c' object='libgzip_a-opendir-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-opendir-safer.o `test -f 'opendir-safer.c' || echo '$(srcdir)/'`opendir-safer.c + +libgzip_a-opendir-safer.obj: opendir-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-opendir-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-opendir-safer.Tpo -c -o libgzip_a-opendir-safer.obj `if test -f 'opendir-safer.c'; then $(CYGPATH_W) 'opendir-safer.c'; else $(CYGPATH_W) '$(srcdir)/opendir-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-opendir-safer.Tpo $(DEPDIR)/libgzip_a-opendir-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='opendir-safer.c' object='libgzip_a-opendir-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-opendir-safer.obj `if test -f 'opendir-safer.c'; then $(CYGPATH_W) 'opendir-safer.c'; else $(CYGPATH_W) '$(srcdir)/opendir-safer.c'; fi` + +libgzip_a-dirfd.o: dirfd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dirfd.o -MD -MP -MF $(DEPDIR)/libgzip_a-dirfd.Tpo -c -o libgzip_a-dirfd.o `test -f 'dirfd.c' || echo '$(srcdir)/'`dirfd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dirfd.Tpo $(DEPDIR)/libgzip_a-dirfd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dirfd.c' object='libgzip_a-dirfd.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dirfd.o `test -f 'dirfd.c' || echo '$(srcdir)/'`dirfd.c + +libgzip_a-dirfd.obj: dirfd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dirfd.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dirfd.Tpo -c -o libgzip_a-dirfd.obj `if test -f 'dirfd.c'; then $(CYGPATH_W) 'dirfd.c'; else $(CYGPATH_W) '$(srcdir)/dirfd.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dirfd.Tpo $(DEPDIR)/libgzip_a-dirfd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dirfd.c' object='libgzip_a-dirfd.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dirfd.obj `if test -f 'dirfd.c'; then $(CYGPATH_W) 'dirfd.c'; else $(CYGPATH_W) '$(srcdir)/dirfd.c'; fi` + +libgzip_a-dirname-lgpl.o: dirname-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dirname-lgpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-dirname-lgpl.Tpo -c -o libgzip_a-dirname-lgpl.o `test -f 'dirname-lgpl.c' || echo '$(srcdir)/'`dirname-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dirname-lgpl.Tpo $(DEPDIR)/libgzip_a-dirname-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dirname-lgpl.c' object='libgzip_a-dirname-lgpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dirname-lgpl.o `test -f 'dirname-lgpl.c' || echo '$(srcdir)/'`dirname-lgpl.c + +libgzip_a-dirname-lgpl.obj: dirname-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dirname-lgpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dirname-lgpl.Tpo -c -o libgzip_a-dirname-lgpl.obj `if test -f 'dirname-lgpl.c'; then $(CYGPATH_W) 'dirname-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/dirname-lgpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dirname-lgpl.Tpo $(DEPDIR)/libgzip_a-dirname-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dirname-lgpl.c' object='libgzip_a-dirname-lgpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dirname-lgpl.obj `if test -f 'dirname-lgpl.c'; then $(CYGPATH_W) 'dirname-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/dirname-lgpl.c'; fi` + +libgzip_a-stripslash.o: stripslash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stripslash.o -MD -MP -MF $(DEPDIR)/libgzip_a-stripslash.Tpo -c -o libgzip_a-stripslash.o `test -f 'stripslash.c' || echo '$(srcdir)/'`stripslash.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stripslash.Tpo $(DEPDIR)/libgzip_a-stripslash.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stripslash.c' object='libgzip_a-stripslash.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stripslash.o `test -f 'stripslash.c' || echo '$(srcdir)/'`stripslash.c + +libgzip_a-stripslash.obj: stripslash.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stripslash.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stripslash.Tpo -c -o libgzip_a-stripslash.obj `if test -f 'stripslash.c'; then $(CYGPATH_W) 'stripslash.c'; else $(CYGPATH_W) '$(srcdir)/stripslash.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stripslash.Tpo $(DEPDIR)/libgzip_a-stripslash.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stripslash.c' object='libgzip_a-stripslash.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stripslash.obj `if test -f 'stripslash.c'; then $(CYGPATH_W) 'stripslash.c'; else $(CYGPATH_W) '$(srcdir)/stripslash.c'; fi` + +libgzip_a-dup.o: dup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup.o -MD -MP -MF $(DEPDIR)/libgzip_a-dup.Tpo -c -o libgzip_a-dup.o `test -f 'dup.c' || echo '$(srcdir)/'`dup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup.Tpo $(DEPDIR)/libgzip_a-dup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup.c' object='libgzip_a-dup.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup.o `test -f 'dup.c' || echo '$(srcdir)/'`dup.c + +libgzip_a-dup.obj: dup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dup.Tpo -c -o libgzip_a-dup.obj `if test -f 'dup.c'; then $(CYGPATH_W) 'dup.c'; else $(CYGPATH_W) '$(srcdir)/dup.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup.Tpo $(DEPDIR)/libgzip_a-dup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup.c' object='libgzip_a-dup.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup.obj `if test -f 'dup.c'; then $(CYGPATH_W) 'dup.c'; else $(CYGPATH_W) '$(srcdir)/dup.c'; fi` + +libgzip_a-dup2.o: dup2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup2.o -MD -MP -MF $(DEPDIR)/libgzip_a-dup2.Tpo -c -o libgzip_a-dup2.o `test -f 'dup2.c' || echo '$(srcdir)/'`dup2.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup2.Tpo $(DEPDIR)/libgzip_a-dup2.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup2.c' object='libgzip_a-dup2.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup2.o `test -f 'dup2.c' || echo '$(srcdir)/'`dup2.c + +libgzip_a-dup2.obj: dup2.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup2.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dup2.Tpo -c -o libgzip_a-dup2.obj `if test -f 'dup2.c'; then $(CYGPATH_W) 'dup2.c'; else $(CYGPATH_W) '$(srcdir)/dup2.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup2.Tpo $(DEPDIR)/libgzip_a-dup2.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup2.c' object='libgzip_a-dup2.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup2.obj `if test -f 'dup2.c'; then $(CYGPATH_W) 'dup2.c'; else $(CYGPATH_W) '$(srcdir)/dup2.c'; fi` + +libgzip_a-error.o: error.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-error.o -MD -MP -MF $(DEPDIR)/libgzip_a-error.Tpo -c -o libgzip_a-error.o `test -f 'error.c' || echo '$(srcdir)/'`error.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-error.Tpo $(DEPDIR)/libgzip_a-error.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='error.c' object='libgzip_a-error.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-error.o `test -f 'error.c' || echo '$(srcdir)/'`error.c + +libgzip_a-error.obj: error.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-error.obj -MD -MP -MF $(DEPDIR)/libgzip_a-error.Tpo -c -o libgzip_a-error.obj `if test -f 'error.c'; then $(CYGPATH_W) 'error.c'; else $(CYGPATH_W) '$(srcdir)/error.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-error.Tpo $(DEPDIR)/libgzip_a-error.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='error.c' object='libgzip_a-error.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-error.obj `if test -f 'error.c'; then $(CYGPATH_W) 'error.c'; else $(CYGPATH_W) '$(srcdir)/error.c'; fi` + +libgzip_a-exitfail.o: exitfail.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-exitfail.o -MD -MP -MF $(DEPDIR)/libgzip_a-exitfail.Tpo -c -o libgzip_a-exitfail.o `test -f 'exitfail.c' || echo '$(srcdir)/'`exitfail.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-exitfail.Tpo $(DEPDIR)/libgzip_a-exitfail.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='exitfail.c' object='libgzip_a-exitfail.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-exitfail.o `test -f 'exitfail.c' || echo '$(srcdir)/'`exitfail.c + +libgzip_a-exitfail.obj: exitfail.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-exitfail.obj -MD -MP -MF $(DEPDIR)/libgzip_a-exitfail.Tpo -c -o libgzip_a-exitfail.obj `if test -f 'exitfail.c'; then $(CYGPATH_W) 'exitfail.c'; else $(CYGPATH_W) '$(srcdir)/exitfail.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-exitfail.Tpo $(DEPDIR)/libgzip_a-exitfail.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='exitfail.c' object='libgzip_a-exitfail.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-exitfail.obj `if test -f 'exitfail.c'; then $(CYGPATH_W) 'exitfail.c'; else $(CYGPATH_W) '$(srcdir)/exitfail.c'; fi` + +libgzip_a-fchdir.o: fchdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fchdir.o -MD -MP -MF $(DEPDIR)/libgzip_a-fchdir.Tpo -c -o libgzip_a-fchdir.o `test -f 'fchdir.c' || echo '$(srcdir)/'`fchdir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fchdir.Tpo $(DEPDIR)/libgzip_a-fchdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fchdir.c' object='libgzip_a-fchdir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fchdir.o `test -f 'fchdir.c' || echo '$(srcdir)/'`fchdir.c + +libgzip_a-fchdir.obj: fchdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fchdir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fchdir.Tpo -c -o libgzip_a-fchdir.obj `if test -f 'fchdir.c'; then $(CYGPATH_W) 'fchdir.c'; else $(CYGPATH_W) '$(srcdir)/fchdir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fchdir.Tpo $(DEPDIR)/libgzip_a-fchdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fchdir.c' object='libgzip_a-fchdir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fchdir.obj `if test -f 'fchdir.c'; then $(CYGPATH_W) 'fchdir.c'; else $(CYGPATH_W) '$(srcdir)/fchdir.c'; fi` + +libgzip_a-fclose.o: fclose.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fclose.o -MD -MP -MF $(DEPDIR)/libgzip_a-fclose.Tpo -c -o libgzip_a-fclose.o `test -f 'fclose.c' || echo '$(srcdir)/'`fclose.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fclose.Tpo $(DEPDIR)/libgzip_a-fclose.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fclose.c' object='libgzip_a-fclose.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fclose.o `test -f 'fclose.c' || echo '$(srcdir)/'`fclose.c + +libgzip_a-fclose.obj: fclose.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fclose.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fclose.Tpo -c -o libgzip_a-fclose.obj `if test -f 'fclose.c'; then $(CYGPATH_W) 'fclose.c'; else $(CYGPATH_W) '$(srcdir)/fclose.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fclose.Tpo $(DEPDIR)/libgzip_a-fclose.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fclose.c' object='libgzip_a-fclose.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fclose.obj `if test -f 'fclose.c'; then $(CYGPATH_W) 'fclose.c'; else $(CYGPATH_W) '$(srcdir)/fclose.c'; fi` + +libgzip_a-fcntl.o: fcntl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fcntl.o -MD -MP -MF $(DEPDIR)/libgzip_a-fcntl.Tpo -c -o libgzip_a-fcntl.o `test -f 'fcntl.c' || echo '$(srcdir)/'`fcntl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fcntl.Tpo $(DEPDIR)/libgzip_a-fcntl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fcntl.c' object='libgzip_a-fcntl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fcntl.o `test -f 'fcntl.c' || echo '$(srcdir)/'`fcntl.c + +libgzip_a-fcntl.obj: fcntl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fcntl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fcntl.Tpo -c -o libgzip_a-fcntl.obj `if test -f 'fcntl.c'; then $(CYGPATH_W) 'fcntl.c'; else $(CYGPATH_W) '$(srcdir)/fcntl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fcntl.Tpo $(DEPDIR)/libgzip_a-fcntl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fcntl.c' object='libgzip_a-fcntl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fcntl.obj `if test -f 'fcntl.c'; then $(CYGPATH_W) 'fcntl.c'; else $(CYGPATH_W) '$(srcdir)/fcntl.c'; fi` + +libgzip_a-creat-safer.o: creat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-creat-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-creat-safer.Tpo -c -o libgzip_a-creat-safer.o `test -f 'creat-safer.c' || echo '$(srcdir)/'`creat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-creat-safer.Tpo $(DEPDIR)/libgzip_a-creat-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='creat-safer.c' object='libgzip_a-creat-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-creat-safer.o `test -f 'creat-safer.c' || echo '$(srcdir)/'`creat-safer.c + +libgzip_a-creat-safer.obj: creat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-creat-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-creat-safer.Tpo -c -o libgzip_a-creat-safer.obj `if test -f 'creat-safer.c'; then $(CYGPATH_W) 'creat-safer.c'; else $(CYGPATH_W) '$(srcdir)/creat-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-creat-safer.Tpo $(DEPDIR)/libgzip_a-creat-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='creat-safer.c' object='libgzip_a-creat-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-creat-safer.obj `if test -f 'creat-safer.c'; then $(CYGPATH_W) 'creat-safer.c'; else $(CYGPATH_W) '$(srcdir)/creat-safer.c'; fi` + +libgzip_a-open-safer.o: open-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-open-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-open-safer.Tpo -c -o libgzip_a-open-safer.o `test -f 'open-safer.c' || echo '$(srcdir)/'`open-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-open-safer.Tpo $(DEPDIR)/libgzip_a-open-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='open-safer.c' object='libgzip_a-open-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-open-safer.o `test -f 'open-safer.c' || echo '$(srcdir)/'`open-safer.c + +libgzip_a-open-safer.obj: open-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-open-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-open-safer.Tpo -c -o libgzip_a-open-safer.obj `if test -f 'open-safer.c'; then $(CYGPATH_W) 'open-safer.c'; else $(CYGPATH_W) '$(srcdir)/open-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-open-safer.Tpo $(DEPDIR)/libgzip_a-open-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='open-safer.c' object='libgzip_a-open-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-open-safer.obj `if test -f 'open-safer.c'; then $(CYGPATH_W) 'open-safer.c'; else $(CYGPATH_W) '$(srcdir)/open-safer.c'; fi` + +libgzip_a-fd-hook.o: fd-hook.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-hook.o -MD -MP -MF $(DEPDIR)/libgzip_a-fd-hook.Tpo -c -o libgzip_a-fd-hook.o `test -f 'fd-hook.c' || echo '$(srcdir)/'`fd-hook.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-hook.Tpo $(DEPDIR)/libgzip_a-fd-hook.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-hook.c' object='libgzip_a-fd-hook.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-hook.o `test -f 'fd-hook.c' || echo '$(srcdir)/'`fd-hook.c + +libgzip_a-fd-hook.obj: fd-hook.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-hook.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fd-hook.Tpo -c -o libgzip_a-fd-hook.obj `if test -f 'fd-hook.c'; then $(CYGPATH_W) 'fd-hook.c'; else $(CYGPATH_W) '$(srcdir)/fd-hook.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-hook.Tpo $(DEPDIR)/libgzip_a-fd-hook.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-hook.c' object='libgzip_a-fd-hook.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-hook.obj `if test -f 'fd-hook.c'; then $(CYGPATH_W) 'fd-hook.c'; else $(CYGPATH_W) '$(srcdir)/fd-hook.c'; fi` + +libgzip_a-fd-safer-flag.o: fd-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-safer-flag.o -MD -MP -MF $(DEPDIR)/libgzip_a-fd-safer-flag.Tpo -c -o libgzip_a-fd-safer-flag.o `test -f 'fd-safer-flag.c' || echo '$(srcdir)/'`fd-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-safer-flag.Tpo $(DEPDIR)/libgzip_a-fd-safer-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-safer-flag.c' object='libgzip_a-fd-safer-flag.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-safer-flag.o `test -f 'fd-safer-flag.c' || echo '$(srcdir)/'`fd-safer-flag.c + +libgzip_a-fd-safer-flag.obj: fd-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-safer-flag.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fd-safer-flag.Tpo -c -o libgzip_a-fd-safer-flag.obj `if test -f 'fd-safer-flag.c'; then $(CYGPATH_W) 'fd-safer-flag.c'; else $(CYGPATH_W) '$(srcdir)/fd-safer-flag.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-safer-flag.Tpo $(DEPDIR)/libgzip_a-fd-safer-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-safer-flag.c' object='libgzip_a-fd-safer-flag.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-safer-flag.obj `if test -f 'fd-safer-flag.c'; then $(CYGPATH_W) 'fd-safer-flag.c'; else $(CYGPATH_W) '$(srcdir)/fd-safer-flag.c'; fi` + +libgzip_a-dup-safer-flag.o: dup-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup-safer-flag.o -MD -MP -MF $(DEPDIR)/libgzip_a-dup-safer-flag.Tpo -c -o libgzip_a-dup-safer-flag.o `test -f 'dup-safer-flag.c' || echo '$(srcdir)/'`dup-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup-safer-flag.Tpo $(DEPDIR)/libgzip_a-dup-safer-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup-safer-flag.c' object='libgzip_a-dup-safer-flag.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup-safer-flag.o `test -f 'dup-safer-flag.c' || echo '$(srcdir)/'`dup-safer-flag.c + +libgzip_a-dup-safer-flag.obj: dup-safer-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup-safer-flag.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dup-safer-flag.Tpo -c -o libgzip_a-dup-safer-flag.obj `if test -f 'dup-safer-flag.c'; then $(CYGPATH_W) 'dup-safer-flag.c'; else $(CYGPATH_W) '$(srcdir)/dup-safer-flag.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup-safer-flag.Tpo $(DEPDIR)/libgzip_a-dup-safer-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup-safer-flag.c' object='libgzip_a-dup-safer-flag.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup-safer-flag.obj `if test -f 'dup-safer-flag.c'; then $(CYGPATH_W) 'dup-safer-flag.c'; else $(CYGPATH_W) '$(srcdir)/dup-safer-flag.c'; fi` + +libgzip_a-fdatasync.o: fdatasync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fdatasync.o -MD -MP -MF $(DEPDIR)/libgzip_a-fdatasync.Tpo -c -o libgzip_a-fdatasync.o `test -f 'fdatasync.c' || echo '$(srcdir)/'`fdatasync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fdatasync.Tpo $(DEPDIR)/libgzip_a-fdatasync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fdatasync.c' object='libgzip_a-fdatasync.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fdatasync.o `test -f 'fdatasync.c' || echo '$(srcdir)/'`fdatasync.c + +libgzip_a-fdatasync.obj: fdatasync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fdatasync.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fdatasync.Tpo -c -o libgzip_a-fdatasync.obj `if test -f 'fdatasync.c'; then $(CYGPATH_W) 'fdatasync.c'; else $(CYGPATH_W) '$(srcdir)/fdatasync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fdatasync.Tpo $(DEPDIR)/libgzip_a-fdatasync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fdatasync.c' object='libgzip_a-fdatasync.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fdatasync.obj `if test -f 'fdatasync.c'; then $(CYGPATH_W) 'fdatasync.c'; else $(CYGPATH_W) '$(srcdir)/fdatasync.c'; fi` + +libgzip_a-fdopendir.o: fdopendir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fdopendir.o -MD -MP -MF $(DEPDIR)/libgzip_a-fdopendir.Tpo -c -o libgzip_a-fdopendir.o `test -f 'fdopendir.c' || echo '$(srcdir)/'`fdopendir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fdopendir.Tpo $(DEPDIR)/libgzip_a-fdopendir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fdopendir.c' object='libgzip_a-fdopendir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fdopendir.o `test -f 'fdopendir.c' || echo '$(srcdir)/'`fdopendir.c + +libgzip_a-fdopendir.obj: fdopendir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fdopendir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fdopendir.Tpo -c -o libgzip_a-fdopendir.obj `if test -f 'fdopendir.c'; then $(CYGPATH_W) 'fdopendir.c'; else $(CYGPATH_W) '$(srcdir)/fdopendir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fdopendir.Tpo $(DEPDIR)/libgzip_a-fdopendir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fdopendir.c' object='libgzip_a-fdopendir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fdopendir.obj `if test -f 'fdopendir.c'; then $(CYGPATH_W) 'fdopendir.c'; else $(CYGPATH_W) '$(srcdir)/fdopendir.c'; fi` + +libgzip_a-fflush.o: fflush.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fflush.o -MD -MP -MF $(DEPDIR)/libgzip_a-fflush.Tpo -c -o libgzip_a-fflush.o `test -f 'fflush.c' || echo '$(srcdir)/'`fflush.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fflush.Tpo $(DEPDIR)/libgzip_a-fflush.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fflush.c' object='libgzip_a-fflush.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fflush.o `test -f 'fflush.c' || echo '$(srcdir)/'`fflush.c + +libgzip_a-fflush.obj: fflush.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fflush.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fflush.Tpo -c -o libgzip_a-fflush.obj `if test -f 'fflush.c'; then $(CYGPATH_W) 'fflush.c'; else $(CYGPATH_W) '$(srcdir)/fflush.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fflush.Tpo $(DEPDIR)/libgzip_a-fflush.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fflush.c' object='libgzip_a-fflush.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fflush.obj `if test -f 'fflush.c'; then $(CYGPATH_W) 'fflush.c'; else $(CYGPATH_W) '$(srcdir)/fflush.c'; fi` + +libgzip_a-filenamecat-lgpl.o: filenamecat-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-filenamecat-lgpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-filenamecat-lgpl.Tpo -c -o libgzip_a-filenamecat-lgpl.o `test -f 'filenamecat-lgpl.c' || echo '$(srcdir)/'`filenamecat-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-filenamecat-lgpl.Tpo $(DEPDIR)/libgzip_a-filenamecat-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='filenamecat-lgpl.c' object='libgzip_a-filenamecat-lgpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-filenamecat-lgpl.o `test -f 'filenamecat-lgpl.c' || echo '$(srcdir)/'`filenamecat-lgpl.c + +libgzip_a-filenamecat-lgpl.obj: filenamecat-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-filenamecat-lgpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-filenamecat-lgpl.Tpo -c -o libgzip_a-filenamecat-lgpl.obj `if test -f 'filenamecat-lgpl.c'; then $(CYGPATH_W) 'filenamecat-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/filenamecat-lgpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-filenamecat-lgpl.Tpo $(DEPDIR)/libgzip_a-filenamecat-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='filenamecat-lgpl.c' object='libgzip_a-filenamecat-lgpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-filenamecat-lgpl.obj `if test -f 'filenamecat-lgpl.c'; then $(CYGPATH_W) 'filenamecat-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/filenamecat-lgpl.c'; fi` + +libgzip_a-float.o: float.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-float.o -MD -MP -MF $(DEPDIR)/libgzip_a-float.Tpo -c -o libgzip_a-float.o `test -f 'float.c' || echo '$(srcdir)/'`float.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-float.Tpo $(DEPDIR)/libgzip_a-float.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='float.c' object='libgzip_a-float.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-float.o `test -f 'float.c' || echo '$(srcdir)/'`float.c + +libgzip_a-float.obj: float.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-float.obj -MD -MP -MF $(DEPDIR)/libgzip_a-float.Tpo -c -o libgzip_a-float.obj `if test -f 'float.c'; then $(CYGPATH_W) 'float.c'; else $(CYGPATH_W) '$(srcdir)/float.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-float.Tpo $(DEPDIR)/libgzip_a-float.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='float.c' object='libgzip_a-float.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-float.obj `if test -f 'float.c'; then $(CYGPATH_W) 'float.c'; else $(CYGPATH_W) '$(srcdir)/float.c'; fi` + +libgzip_a-itold.o: itold.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-itold.o -MD -MP -MF $(DEPDIR)/libgzip_a-itold.Tpo -c -o libgzip_a-itold.o `test -f 'itold.c' || echo '$(srcdir)/'`itold.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-itold.Tpo $(DEPDIR)/libgzip_a-itold.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='itold.c' object='libgzip_a-itold.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-itold.o `test -f 'itold.c' || echo '$(srcdir)/'`itold.c + +libgzip_a-itold.obj: itold.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-itold.obj -MD -MP -MF $(DEPDIR)/libgzip_a-itold.Tpo -c -o libgzip_a-itold.obj `if test -f 'itold.c'; then $(CYGPATH_W) 'itold.c'; else $(CYGPATH_W) '$(srcdir)/itold.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-itold.Tpo $(DEPDIR)/libgzip_a-itold.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='itold.c' object='libgzip_a-itold.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-itold.obj `if test -f 'itold.c'; then $(CYGPATH_W) 'itold.c'; else $(CYGPATH_W) '$(srcdir)/itold.c'; fi` + +libgzip_a-fpurge.o: fpurge.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fpurge.o -MD -MP -MF $(DEPDIR)/libgzip_a-fpurge.Tpo -c -o libgzip_a-fpurge.o `test -f 'fpurge.c' || echo '$(srcdir)/'`fpurge.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fpurge.Tpo $(DEPDIR)/libgzip_a-fpurge.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fpurge.c' object='libgzip_a-fpurge.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fpurge.o `test -f 'fpurge.c' || echo '$(srcdir)/'`fpurge.c + +libgzip_a-fpurge.obj: fpurge.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fpurge.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fpurge.Tpo -c -o libgzip_a-fpurge.obj `if test -f 'fpurge.c'; then $(CYGPATH_W) 'fpurge.c'; else $(CYGPATH_W) '$(srcdir)/fpurge.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fpurge.Tpo $(DEPDIR)/libgzip_a-fpurge.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fpurge.c' object='libgzip_a-fpurge.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fpurge.obj `if test -f 'fpurge.c'; then $(CYGPATH_W) 'fpurge.c'; else $(CYGPATH_W) '$(srcdir)/fpurge.c'; fi` + +libgzip_a-freading.o: freading.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-freading.o -MD -MP -MF $(DEPDIR)/libgzip_a-freading.Tpo -c -o libgzip_a-freading.o `test -f 'freading.c' || echo '$(srcdir)/'`freading.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-freading.Tpo $(DEPDIR)/libgzip_a-freading.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='freading.c' object='libgzip_a-freading.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-freading.o `test -f 'freading.c' || echo '$(srcdir)/'`freading.c + +libgzip_a-freading.obj: freading.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-freading.obj -MD -MP -MF $(DEPDIR)/libgzip_a-freading.Tpo -c -o libgzip_a-freading.obj `if test -f 'freading.c'; then $(CYGPATH_W) 'freading.c'; else $(CYGPATH_W) '$(srcdir)/freading.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-freading.Tpo $(DEPDIR)/libgzip_a-freading.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='freading.c' object='libgzip_a-freading.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-freading.obj `if test -f 'freading.c'; then $(CYGPATH_W) 'freading.c'; else $(CYGPATH_W) '$(srcdir)/freading.c'; fi` + +libgzip_a-free.o: free.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-free.o -MD -MP -MF $(DEPDIR)/libgzip_a-free.Tpo -c -o libgzip_a-free.o `test -f 'free.c' || echo '$(srcdir)/'`free.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-free.Tpo $(DEPDIR)/libgzip_a-free.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='free.c' object='libgzip_a-free.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-free.o `test -f 'free.c' || echo '$(srcdir)/'`free.c + +libgzip_a-free.obj: free.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-free.obj -MD -MP -MF $(DEPDIR)/libgzip_a-free.Tpo -c -o libgzip_a-free.obj `if test -f 'free.c'; then $(CYGPATH_W) 'free.c'; else $(CYGPATH_W) '$(srcdir)/free.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-free.Tpo $(DEPDIR)/libgzip_a-free.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='free.c' object='libgzip_a-free.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-free.obj `if test -f 'free.c'; then $(CYGPATH_W) 'free.c'; else $(CYGPATH_W) '$(srcdir)/free.c'; fi` + +libgzip_a-fseek.o: fseek.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseek.o -MD -MP -MF $(DEPDIR)/libgzip_a-fseek.Tpo -c -o libgzip_a-fseek.o `test -f 'fseek.c' || echo '$(srcdir)/'`fseek.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseek.Tpo $(DEPDIR)/libgzip_a-fseek.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseek.c' object='libgzip_a-fseek.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseek.o `test -f 'fseek.c' || echo '$(srcdir)/'`fseek.c + +libgzip_a-fseek.obj: fseek.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseek.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fseek.Tpo -c -o libgzip_a-fseek.obj `if test -f 'fseek.c'; then $(CYGPATH_W) 'fseek.c'; else $(CYGPATH_W) '$(srcdir)/fseek.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseek.Tpo $(DEPDIR)/libgzip_a-fseek.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseek.c' object='libgzip_a-fseek.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseek.obj `if test -f 'fseek.c'; then $(CYGPATH_W) 'fseek.c'; else $(CYGPATH_W) '$(srcdir)/fseek.c'; fi` + +libgzip_a-fseeko.o: fseeko.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseeko.o -MD -MP -MF $(DEPDIR)/libgzip_a-fseeko.Tpo -c -o libgzip_a-fseeko.o `test -f 'fseeko.c' || echo '$(srcdir)/'`fseeko.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseeko.Tpo $(DEPDIR)/libgzip_a-fseeko.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseeko.c' object='libgzip_a-fseeko.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseeko.o `test -f 'fseeko.c' || echo '$(srcdir)/'`fseeko.c + +libgzip_a-fseeko.obj: fseeko.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseeko.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fseeko.Tpo -c -o libgzip_a-fseeko.obj `if test -f 'fseeko.c'; then $(CYGPATH_W) 'fseeko.c'; else $(CYGPATH_W) '$(srcdir)/fseeko.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseeko.Tpo $(DEPDIR)/libgzip_a-fseeko.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseeko.c' object='libgzip_a-fseeko.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseeko.obj `if test -f 'fseeko.c'; then $(CYGPATH_W) 'fseeko.c'; else $(CYGPATH_W) '$(srcdir)/fseeko.c'; fi` + +libgzip_a-fseterr.o: fseterr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseterr.o -MD -MP -MF $(DEPDIR)/libgzip_a-fseterr.Tpo -c -o libgzip_a-fseterr.o `test -f 'fseterr.c' || echo '$(srcdir)/'`fseterr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseterr.Tpo $(DEPDIR)/libgzip_a-fseterr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseterr.c' object='libgzip_a-fseterr.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseterr.o `test -f 'fseterr.c' || echo '$(srcdir)/'`fseterr.c + +libgzip_a-fseterr.obj: fseterr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fseterr.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fseterr.Tpo -c -o libgzip_a-fseterr.obj `if test -f 'fseterr.c'; then $(CYGPATH_W) 'fseterr.c'; else $(CYGPATH_W) '$(srcdir)/fseterr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fseterr.Tpo $(DEPDIR)/libgzip_a-fseterr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fseterr.c' object='libgzip_a-fseterr.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fseterr.obj `if test -f 'fseterr.c'; then $(CYGPATH_W) 'fseterr.c'; else $(CYGPATH_W) '$(srcdir)/fseterr.c'; fi` + +libgzip_a-fstat.o: fstat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fstat.o -MD -MP -MF $(DEPDIR)/libgzip_a-fstat.Tpo -c -o libgzip_a-fstat.o `test -f 'fstat.c' || echo '$(srcdir)/'`fstat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fstat.Tpo $(DEPDIR)/libgzip_a-fstat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fstat.c' object='libgzip_a-fstat.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fstat.o `test -f 'fstat.c' || echo '$(srcdir)/'`fstat.c + +libgzip_a-fstat.obj: fstat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fstat.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fstat.Tpo -c -o libgzip_a-fstat.obj `if test -f 'fstat.c'; then $(CYGPATH_W) 'fstat.c'; else $(CYGPATH_W) '$(srcdir)/fstat.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fstat.Tpo $(DEPDIR)/libgzip_a-fstat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fstat.c' object='libgzip_a-fstat.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fstat.obj `if test -f 'fstat.c'; then $(CYGPATH_W) 'fstat.c'; else $(CYGPATH_W) '$(srcdir)/fstat.c'; fi` + +libgzip_a-fsync.o: fsync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fsync.o -MD -MP -MF $(DEPDIR)/libgzip_a-fsync.Tpo -c -o libgzip_a-fsync.o `test -f 'fsync.c' || echo '$(srcdir)/'`fsync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fsync.Tpo $(DEPDIR)/libgzip_a-fsync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fsync.c' object='libgzip_a-fsync.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fsync.o `test -f 'fsync.c' || echo '$(srcdir)/'`fsync.c + +libgzip_a-fsync.obj: fsync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fsync.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fsync.Tpo -c -o libgzip_a-fsync.obj `if test -f 'fsync.c'; then $(CYGPATH_W) 'fsync.c'; else $(CYGPATH_W) '$(srcdir)/fsync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fsync.Tpo $(DEPDIR)/libgzip_a-fsync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fsync.c' object='libgzip_a-fsync.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fsync.obj `if test -f 'fsync.c'; then $(CYGPATH_W) 'fsync.c'; else $(CYGPATH_W) '$(srcdir)/fsync.c'; fi` + +libgzip_a-ftell.o: ftell.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ftell.o -MD -MP -MF $(DEPDIR)/libgzip_a-ftell.Tpo -c -o libgzip_a-ftell.o `test -f 'ftell.c' || echo '$(srcdir)/'`ftell.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ftell.Tpo $(DEPDIR)/libgzip_a-ftell.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ftell.c' object='libgzip_a-ftell.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ftell.o `test -f 'ftell.c' || echo '$(srcdir)/'`ftell.c + +libgzip_a-ftell.obj: ftell.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ftell.obj -MD -MP -MF $(DEPDIR)/libgzip_a-ftell.Tpo -c -o libgzip_a-ftell.obj `if test -f 'ftell.c'; then $(CYGPATH_W) 'ftell.c'; else $(CYGPATH_W) '$(srcdir)/ftell.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ftell.Tpo $(DEPDIR)/libgzip_a-ftell.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ftell.c' object='libgzip_a-ftell.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ftell.obj `if test -f 'ftell.c'; then $(CYGPATH_W) 'ftell.c'; else $(CYGPATH_W) '$(srcdir)/ftell.c'; fi` + +libgzip_a-ftello.o: ftello.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ftello.o -MD -MP -MF $(DEPDIR)/libgzip_a-ftello.Tpo -c -o libgzip_a-ftello.o `test -f 'ftello.c' || echo '$(srcdir)/'`ftello.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ftello.Tpo $(DEPDIR)/libgzip_a-ftello.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ftello.c' object='libgzip_a-ftello.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ftello.o `test -f 'ftello.c' || echo '$(srcdir)/'`ftello.c + +libgzip_a-ftello.obj: ftello.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ftello.obj -MD -MP -MF $(DEPDIR)/libgzip_a-ftello.Tpo -c -o libgzip_a-ftello.obj `if test -f 'ftello.c'; then $(CYGPATH_W) 'ftello.c'; else $(CYGPATH_W) '$(srcdir)/ftello.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ftello.Tpo $(DEPDIR)/libgzip_a-ftello.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ftello.c' object='libgzip_a-ftello.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ftello.obj `if test -f 'ftello.c'; then $(CYGPATH_W) 'ftello.c'; else $(CYGPATH_W) '$(srcdir)/ftello.c'; fi` + +libgzip_a-getcwd-lgpl.o: getcwd-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getcwd-lgpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-getcwd-lgpl.Tpo -c -o libgzip_a-getcwd-lgpl.o `test -f 'getcwd-lgpl.c' || echo '$(srcdir)/'`getcwd-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getcwd-lgpl.Tpo $(DEPDIR)/libgzip_a-getcwd-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getcwd-lgpl.c' object='libgzip_a-getcwd-lgpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getcwd-lgpl.o `test -f 'getcwd-lgpl.c' || echo '$(srcdir)/'`getcwd-lgpl.c + +libgzip_a-getcwd-lgpl.obj: getcwd-lgpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getcwd-lgpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-getcwd-lgpl.Tpo -c -o libgzip_a-getcwd-lgpl.obj `if test -f 'getcwd-lgpl.c'; then $(CYGPATH_W) 'getcwd-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/getcwd-lgpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getcwd-lgpl.Tpo $(DEPDIR)/libgzip_a-getcwd-lgpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getcwd-lgpl.c' object='libgzip_a-getcwd-lgpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getcwd-lgpl.obj `if test -f 'getcwd-lgpl.c'; then $(CYGPATH_W) 'getcwd-lgpl.c'; else $(CYGPATH_W) '$(srcdir)/getcwd-lgpl.c'; fi` + +libgzip_a-getdtablesize.o: getdtablesize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getdtablesize.o -MD -MP -MF $(DEPDIR)/libgzip_a-getdtablesize.Tpo -c -o libgzip_a-getdtablesize.o `test -f 'getdtablesize.c' || echo '$(srcdir)/'`getdtablesize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getdtablesize.Tpo $(DEPDIR)/libgzip_a-getdtablesize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getdtablesize.c' object='libgzip_a-getdtablesize.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getdtablesize.o `test -f 'getdtablesize.c' || echo '$(srcdir)/'`getdtablesize.c + +libgzip_a-getdtablesize.obj: getdtablesize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getdtablesize.obj -MD -MP -MF $(DEPDIR)/libgzip_a-getdtablesize.Tpo -c -o libgzip_a-getdtablesize.obj `if test -f 'getdtablesize.c'; then $(CYGPATH_W) 'getdtablesize.c'; else $(CYGPATH_W) '$(srcdir)/getdtablesize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getdtablesize.Tpo $(DEPDIR)/libgzip_a-getdtablesize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getdtablesize.c' object='libgzip_a-getdtablesize.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getdtablesize.obj `if test -f 'getdtablesize.c'; then $(CYGPATH_W) 'getdtablesize.c'; else $(CYGPATH_W) '$(srcdir)/getdtablesize.c'; fi` + +libgzip_a-getopt.o: getopt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getopt.o -MD -MP -MF $(DEPDIR)/libgzip_a-getopt.Tpo -c -o libgzip_a-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getopt.Tpo $(DEPDIR)/libgzip_a-getopt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='libgzip_a-getopt.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getopt.o `test -f 'getopt.c' || echo '$(srcdir)/'`getopt.c + +libgzip_a-getopt.obj: getopt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getopt.obj -MD -MP -MF $(DEPDIR)/libgzip_a-getopt.Tpo -c -o libgzip_a-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getopt.Tpo $(DEPDIR)/libgzip_a-getopt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt.c' object='libgzip_a-getopt.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getopt.obj `if test -f 'getopt.c'; then $(CYGPATH_W) 'getopt.c'; else $(CYGPATH_W) '$(srcdir)/getopt.c'; fi` + +libgzip_a-getopt1.o: getopt1.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getopt1.o -MD -MP -MF $(DEPDIR)/libgzip_a-getopt1.Tpo -c -o libgzip_a-getopt1.o `test -f 'getopt1.c' || echo '$(srcdir)/'`getopt1.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getopt1.Tpo $(DEPDIR)/libgzip_a-getopt1.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt1.c' object='libgzip_a-getopt1.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getopt1.o `test -f 'getopt1.c' || echo '$(srcdir)/'`getopt1.c + +libgzip_a-getopt1.obj: getopt1.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getopt1.obj -MD -MP -MF $(DEPDIR)/libgzip_a-getopt1.Tpo -c -o libgzip_a-getopt1.obj `if test -f 'getopt1.c'; then $(CYGPATH_W) 'getopt1.c'; else $(CYGPATH_W) '$(srcdir)/getopt1.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getopt1.Tpo $(DEPDIR)/libgzip_a-getopt1.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getopt1.c' object='libgzip_a-getopt1.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getopt1.obj `if test -f 'getopt1.c'; then $(CYGPATH_W) 'getopt1.c'; else $(CYGPATH_W) '$(srcdir)/getopt1.c'; fi` + +libgzip_a-getprogname.o: getprogname.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getprogname.o -MD -MP -MF $(DEPDIR)/libgzip_a-getprogname.Tpo -c -o libgzip_a-getprogname.o `test -f 'getprogname.c' || echo '$(srcdir)/'`getprogname.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getprogname.Tpo $(DEPDIR)/libgzip_a-getprogname.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getprogname.c' object='libgzip_a-getprogname.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getprogname.o `test -f 'getprogname.c' || echo '$(srcdir)/'`getprogname.c + +libgzip_a-getprogname.obj: getprogname.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-getprogname.obj -MD -MP -MF $(DEPDIR)/libgzip_a-getprogname.Tpo -c -o libgzip_a-getprogname.obj `if test -f 'getprogname.c'; then $(CYGPATH_W) 'getprogname.c'; else $(CYGPATH_W) '$(srcdir)/getprogname.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-getprogname.Tpo $(DEPDIR)/libgzip_a-getprogname.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='getprogname.c' object='libgzip_a-getprogname.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-getprogname.obj `if test -f 'getprogname.c'; then $(CYGPATH_W) 'getprogname.c'; else $(CYGPATH_W) '$(srcdir)/getprogname.c'; fi` + +libgzip_a-gettime.o: gettime.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-gettime.o -MD -MP -MF $(DEPDIR)/libgzip_a-gettime.Tpo -c -o libgzip_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-gettime.Tpo $(DEPDIR)/libgzip_a-gettime.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gettime.c' object='libgzip_a-gettime.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-gettime.o `test -f 'gettime.c' || echo '$(srcdir)/'`gettime.c + +libgzip_a-gettime.obj: gettime.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-gettime.obj -MD -MP -MF $(DEPDIR)/libgzip_a-gettime.Tpo -c -o libgzip_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-gettime.Tpo $(DEPDIR)/libgzip_a-gettime.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gettime.c' object='libgzip_a-gettime.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-gettime.obj `if test -f 'gettime.c'; then $(CYGPATH_W) 'gettime.c'; else $(CYGPATH_W) '$(srcdir)/gettime.c'; fi` + +libgzip_a-gettimeofday.o: gettimeofday.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-gettimeofday.o -MD -MP -MF $(DEPDIR)/libgzip_a-gettimeofday.Tpo -c -o libgzip_a-gettimeofday.o `test -f 'gettimeofday.c' || echo '$(srcdir)/'`gettimeofday.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-gettimeofday.Tpo $(DEPDIR)/libgzip_a-gettimeofday.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gettimeofday.c' object='libgzip_a-gettimeofday.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-gettimeofday.o `test -f 'gettimeofday.c' || echo '$(srcdir)/'`gettimeofday.c + +libgzip_a-gettimeofday.obj: gettimeofday.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-gettimeofday.obj -MD -MP -MF $(DEPDIR)/libgzip_a-gettimeofday.Tpo -c -o libgzip_a-gettimeofday.obj `if test -f 'gettimeofday.c'; then $(CYGPATH_W) 'gettimeofday.c'; else $(CYGPATH_W) '$(srcdir)/gettimeofday.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-gettimeofday.Tpo $(DEPDIR)/libgzip_a-gettimeofday.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gettimeofday.c' object='libgzip_a-gettimeofday.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-gettimeofday.obj `if test -f 'gettimeofday.c'; then $(CYGPATH_W) 'gettimeofday.c'; else $(CYGPATH_W) '$(srcdir)/gettimeofday.c'; fi` + +libgzip_a-ialloc.o: ialloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ialloc.o -MD -MP -MF $(DEPDIR)/libgzip_a-ialloc.Tpo -c -o libgzip_a-ialloc.o `test -f 'ialloc.c' || echo '$(srcdir)/'`ialloc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ialloc.Tpo $(DEPDIR)/libgzip_a-ialloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ialloc.c' object='libgzip_a-ialloc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ialloc.o `test -f 'ialloc.c' || echo '$(srcdir)/'`ialloc.c + +libgzip_a-ialloc.obj: ialloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-ialloc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-ialloc.Tpo -c -o libgzip_a-ialloc.obj `if test -f 'ialloc.c'; then $(CYGPATH_W) 'ialloc.c'; else $(CYGPATH_W) '$(srcdir)/ialloc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-ialloc.Tpo $(DEPDIR)/libgzip_a-ialloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ialloc.c' object='libgzip_a-ialloc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-ialloc.obj `if test -f 'ialloc.c'; then $(CYGPATH_W) 'ialloc.c'; else $(CYGPATH_W) '$(srcdir)/ialloc.c'; fi` + +glthread/libgzip_a-lock.o: glthread/lock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT glthread/libgzip_a-lock.o -MD -MP -MF glthread/$(DEPDIR)/libgzip_a-lock.Tpo -c -o glthread/libgzip_a-lock.o `test -f 'glthread/lock.c' || echo '$(srcdir)/'`glthread/lock.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) glthread/$(DEPDIR)/libgzip_a-lock.Tpo glthread/$(DEPDIR)/libgzip_a-lock.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glthread/lock.c' object='glthread/libgzip_a-lock.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o glthread/libgzip_a-lock.o `test -f 'glthread/lock.c' || echo '$(srcdir)/'`glthread/lock.c + +glthread/libgzip_a-lock.obj: glthread/lock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT glthread/libgzip_a-lock.obj -MD -MP -MF glthread/$(DEPDIR)/libgzip_a-lock.Tpo -c -o glthread/libgzip_a-lock.obj `if test -f 'glthread/lock.c'; then $(CYGPATH_W) 'glthread/lock.c'; else $(CYGPATH_W) '$(srcdir)/glthread/lock.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) glthread/$(DEPDIR)/libgzip_a-lock.Tpo glthread/$(DEPDIR)/libgzip_a-lock.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glthread/lock.c' object='glthread/libgzip_a-lock.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o glthread/libgzip_a-lock.obj `if test -f 'glthread/lock.c'; then $(CYGPATH_W) 'glthread/lock.c'; else $(CYGPATH_W) '$(srcdir)/glthread/lock.c'; fi` + +libgzip_a-lseek.o: lseek.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-lseek.o -MD -MP -MF $(DEPDIR)/libgzip_a-lseek.Tpo -c -o libgzip_a-lseek.o `test -f 'lseek.c' || echo '$(srcdir)/'`lseek.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-lseek.Tpo $(DEPDIR)/libgzip_a-lseek.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lseek.c' object='libgzip_a-lseek.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-lseek.o `test -f 'lseek.c' || echo '$(srcdir)/'`lseek.c + +libgzip_a-lseek.obj: lseek.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-lseek.obj -MD -MP -MF $(DEPDIR)/libgzip_a-lseek.Tpo -c -o libgzip_a-lseek.obj `if test -f 'lseek.c'; then $(CYGPATH_W) 'lseek.c'; else $(CYGPATH_W) '$(srcdir)/lseek.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-lseek.Tpo $(DEPDIR)/libgzip_a-lseek.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lseek.c' object='libgzip_a-lseek.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-lseek.obj `if test -f 'lseek.c'; then $(CYGPATH_W) 'lseek.c'; else $(CYGPATH_W) '$(srcdir)/lseek.c'; fi` + +libgzip_a-lstat.o: lstat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-lstat.o -MD -MP -MF $(DEPDIR)/libgzip_a-lstat.Tpo -c -o libgzip_a-lstat.o `test -f 'lstat.c' || echo '$(srcdir)/'`lstat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-lstat.Tpo $(DEPDIR)/libgzip_a-lstat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lstat.c' object='libgzip_a-lstat.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-lstat.o `test -f 'lstat.c' || echo '$(srcdir)/'`lstat.c + +libgzip_a-lstat.obj: lstat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-lstat.obj -MD -MP -MF $(DEPDIR)/libgzip_a-lstat.Tpo -c -o libgzip_a-lstat.obj `if test -f 'lstat.c'; then $(CYGPATH_W) 'lstat.c'; else $(CYGPATH_W) '$(srcdir)/lstat.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-lstat.Tpo $(DEPDIR)/libgzip_a-lstat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lstat.c' object='libgzip_a-lstat.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-lstat.obj `if test -f 'lstat.c'; then $(CYGPATH_W) 'lstat.c'; else $(CYGPATH_W) '$(srcdir)/lstat.c'; fi` + +libgzip_a-malloca.o: malloca.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-malloca.o -MD -MP -MF $(DEPDIR)/libgzip_a-malloca.Tpo -c -o libgzip_a-malloca.o `test -f 'malloca.c' || echo '$(srcdir)/'`malloca.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-malloca.Tpo $(DEPDIR)/libgzip_a-malloca.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='malloca.c' object='libgzip_a-malloca.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-malloca.o `test -f 'malloca.c' || echo '$(srcdir)/'`malloca.c + +libgzip_a-malloca.obj: malloca.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-malloca.obj -MD -MP -MF $(DEPDIR)/libgzip_a-malloca.Tpo -c -o libgzip_a-malloca.obj `if test -f 'malloca.c'; then $(CYGPATH_W) 'malloca.c'; else $(CYGPATH_W) '$(srcdir)/malloca.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-malloca.Tpo $(DEPDIR)/libgzip_a-malloca.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='malloca.c' object='libgzip_a-malloca.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-malloca.obj `if test -f 'malloca.c'; then $(CYGPATH_W) 'malloca.c'; else $(CYGPATH_W) '$(srcdir)/malloca.c'; fi` + +libgzip_a-math.o: math.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-math.o -MD -MP -MF $(DEPDIR)/libgzip_a-math.Tpo -c -o libgzip_a-math.o `test -f 'math.c' || echo '$(srcdir)/'`math.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-math.Tpo $(DEPDIR)/libgzip_a-math.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='math.c' object='libgzip_a-math.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-math.o `test -f 'math.c' || echo '$(srcdir)/'`math.c + +libgzip_a-math.obj: math.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-math.obj -MD -MP -MF $(DEPDIR)/libgzip_a-math.Tpo -c -o libgzip_a-math.obj `if test -f 'math.c'; then $(CYGPATH_W) 'math.c'; else $(CYGPATH_W) '$(srcdir)/math.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-math.Tpo $(DEPDIR)/libgzip_a-math.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='math.c' object='libgzip_a-math.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-math.obj `if test -f 'math.c'; then $(CYGPATH_W) 'math.c'; else $(CYGPATH_W) '$(srcdir)/math.c'; fi` + +libgzip_a-memchr.o: memchr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-memchr.o -MD -MP -MF $(DEPDIR)/libgzip_a-memchr.Tpo -c -o libgzip_a-memchr.o `test -f 'memchr.c' || echo '$(srcdir)/'`memchr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-memchr.Tpo $(DEPDIR)/libgzip_a-memchr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memchr.c' object='libgzip_a-memchr.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-memchr.o `test -f 'memchr.c' || echo '$(srcdir)/'`memchr.c + +libgzip_a-memchr.obj: memchr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-memchr.obj -MD -MP -MF $(DEPDIR)/libgzip_a-memchr.Tpo -c -o libgzip_a-memchr.obj `if test -f 'memchr.c'; then $(CYGPATH_W) 'memchr.c'; else $(CYGPATH_W) '$(srcdir)/memchr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-memchr.Tpo $(DEPDIR)/libgzip_a-memchr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memchr.c' object='libgzip_a-memchr.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-memchr.obj `if test -f 'memchr.c'; then $(CYGPATH_W) 'memchr.c'; else $(CYGPATH_W) '$(srcdir)/memchr.c'; fi` + +libgzip_a-mempcpy.o: mempcpy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-mempcpy.o -MD -MP -MF $(DEPDIR)/libgzip_a-mempcpy.Tpo -c -o libgzip_a-mempcpy.o `test -f 'mempcpy.c' || echo '$(srcdir)/'`mempcpy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-mempcpy.Tpo $(DEPDIR)/libgzip_a-mempcpy.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mempcpy.c' object='libgzip_a-mempcpy.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-mempcpy.o `test -f 'mempcpy.c' || echo '$(srcdir)/'`mempcpy.c + +libgzip_a-mempcpy.obj: mempcpy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-mempcpy.obj -MD -MP -MF $(DEPDIR)/libgzip_a-mempcpy.Tpo -c -o libgzip_a-mempcpy.obj `if test -f 'mempcpy.c'; then $(CYGPATH_W) 'mempcpy.c'; else $(CYGPATH_W) '$(srcdir)/mempcpy.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-mempcpy.Tpo $(DEPDIR)/libgzip_a-mempcpy.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mempcpy.c' object='libgzip_a-mempcpy.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-mempcpy.obj `if test -f 'mempcpy.c'; then $(CYGPATH_W) 'mempcpy.c'; else $(CYGPATH_W) '$(srcdir)/mempcpy.c'; fi` + +libgzip_a-memrchr.o: memrchr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-memrchr.o -MD -MP -MF $(DEPDIR)/libgzip_a-memrchr.Tpo -c -o libgzip_a-memrchr.o `test -f 'memrchr.c' || echo '$(srcdir)/'`memrchr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-memrchr.Tpo $(DEPDIR)/libgzip_a-memrchr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memrchr.c' object='libgzip_a-memrchr.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-memrchr.o `test -f 'memrchr.c' || echo '$(srcdir)/'`memrchr.c + +libgzip_a-memrchr.obj: memrchr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-memrchr.obj -MD -MP -MF $(DEPDIR)/libgzip_a-memrchr.Tpo -c -o libgzip_a-memrchr.obj `if test -f 'memrchr.c'; then $(CYGPATH_W) 'memrchr.c'; else $(CYGPATH_W) '$(srcdir)/memrchr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-memrchr.Tpo $(DEPDIR)/libgzip_a-memrchr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memrchr.c' object='libgzip_a-memrchr.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-memrchr.obj `if test -f 'memrchr.c'; then $(CYGPATH_W) 'memrchr.c'; else $(CYGPATH_W) '$(srcdir)/memrchr.c'; fi` + +libgzip_a-msvc-inval.o: msvc-inval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-msvc-inval.o -MD -MP -MF $(DEPDIR)/libgzip_a-msvc-inval.Tpo -c -o libgzip_a-msvc-inval.o `test -f 'msvc-inval.c' || echo '$(srcdir)/'`msvc-inval.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-msvc-inval.Tpo $(DEPDIR)/libgzip_a-msvc-inval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='msvc-inval.c' object='libgzip_a-msvc-inval.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-msvc-inval.o `test -f 'msvc-inval.c' || echo '$(srcdir)/'`msvc-inval.c + +libgzip_a-msvc-inval.obj: msvc-inval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-msvc-inval.obj -MD -MP -MF $(DEPDIR)/libgzip_a-msvc-inval.Tpo -c -o libgzip_a-msvc-inval.obj `if test -f 'msvc-inval.c'; then $(CYGPATH_W) 'msvc-inval.c'; else $(CYGPATH_W) '$(srcdir)/msvc-inval.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-msvc-inval.Tpo $(DEPDIR)/libgzip_a-msvc-inval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='msvc-inval.c' object='libgzip_a-msvc-inval.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-msvc-inval.obj `if test -f 'msvc-inval.c'; then $(CYGPATH_W) 'msvc-inval.c'; else $(CYGPATH_W) '$(srcdir)/msvc-inval.c'; fi` + +libgzip_a-msvc-nothrow.o: msvc-nothrow.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-msvc-nothrow.o -MD -MP -MF $(DEPDIR)/libgzip_a-msvc-nothrow.Tpo -c -o libgzip_a-msvc-nothrow.o `test -f 'msvc-nothrow.c' || echo '$(srcdir)/'`msvc-nothrow.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-msvc-nothrow.Tpo $(DEPDIR)/libgzip_a-msvc-nothrow.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='msvc-nothrow.c' object='libgzip_a-msvc-nothrow.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-msvc-nothrow.o `test -f 'msvc-nothrow.c' || echo '$(srcdir)/'`msvc-nothrow.c + +libgzip_a-msvc-nothrow.obj: msvc-nothrow.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-msvc-nothrow.obj -MD -MP -MF $(DEPDIR)/libgzip_a-msvc-nothrow.Tpo -c -o libgzip_a-msvc-nothrow.obj `if test -f 'msvc-nothrow.c'; then $(CYGPATH_W) 'msvc-nothrow.c'; else $(CYGPATH_W) '$(srcdir)/msvc-nothrow.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-msvc-nothrow.Tpo $(DEPDIR)/libgzip_a-msvc-nothrow.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='msvc-nothrow.c' object='libgzip_a-msvc-nothrow.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-msvc-nothrow.obj `if test -f 'msvc-nothrow.c'; then $(CYGPATH_W) 'msvc-nothrow.c'; else $(CYGPATH_W) '$(srcdir)/msvc-nothrow.c'; fi` + +libgzip_a-open.o: open.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-open.o -MD -MP -MF $(DEPDIR)/libgzip_a-open.Tpo -c -o libgzip_a-open.o `test -f 'open.c' || echo '$(srcdir)/'`open.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-open.Tpo $(DEPDIR)/libgzip_a-open.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='open.c' object='libgzip_a-open.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-open.o `test -f 'open.c' || echo '$(srcdir)/'`open.c + +libgzip_a-open.obj: open.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-open.obj -MD -MP -MF $(DEPDIR)/libgzip_a-open.Tpo -c -o libgzip_a-open.obj `if test -f 'open.c'; then $(CYGPATH_W) 'open.c'; else $(CYGPATH_W) '$(srcdir)/open.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-open.Tpo $(DEPDIR)/libgzip_a-open.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='open.c' object='libgzip_a-open.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-open.obj `if test -f 'open.c'; then $(CYGPATH_W) 'open.c'; else $(CYGPATH_W) '$(srcdir)/open.c'; fi` + +libgzip_a-openat.o: openat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat.o -MD -MP -MF $(DEPDIR)/libgzip_a-openat.Tpo -c -o libgzip_a-openat.o `test -f 'openat.c' || echo '$(srcdir)/'`openat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat.Tpo $(DEPDIR)/libgzip_a-openat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat.c' object='libgzip_a-openat.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat.o `test -f 'openat.c' || echo '$(srcdir)/'`openat.c + +libgzip_a-openat.obj: openat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat.obj -MD -MP -MF $(DEPDIR)/libgzip_a-openat.Tpo -c -o libgzip_a-openat.obj `if test -f 'openat.c'; then $(CYGPATH_W) 'openat.c'; else $(CYGPATH_W) '$(srcdir)/openat.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat.Tpo $(DEPDIR)/libgzip_a-openat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat.c' object='libgzip_a-openat.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat.obj `if test -f 'openat.c'; then $(CYGPATH_W) 'openat.c'; else $(CYGPATH_W) '$(srcdir)/openat.c'; fi` + +libgzip_a-openat-die.o: openat-die.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-die.o -MD -MP -MF $(DEPDIR)/libgzip_a-openat-die.Tpo -c -o libgzip_a-openat-die.o `test -f 'openat-die.c' || echo '$(srcdir)/'`openat-die.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-die.Tpo $(DEPDIR)/libgzip_a-openat-die.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-die.c' object='libgzip_a-openat-die.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-die.o `test -f 'openat-die.c' || echo '$(srcdir)/'`openat-die.c + +libgzip_a-openat-die.obj: openat-die.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-die.obj -MD -MP -MF $(DEPDIR)/libgzip_a-openat-die.Tpo -c -o libgzip_a-openat-die.obj `if test -f 'openat-die.c'; then $(CYGPATH_W) 'openat-die.c'; else $(CYGPATH_W) '$(srcdir)/openat-die.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-die.Tpo $(DEPDIR)/libgzip_a-openat-die.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-die.c' object='libgzip_a-openat-die.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-die.obj `if test -f 'openat-die.c'; then $(CYGPATH_W) 'openat-die.c'; else $(CYGPATH_W) '$(srcdir)/openat-die.c'; fi` + +libgzip_a-openat-safer.o: openat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-openat-safer.Tpo -c -o libgzip_a-openat-safer.o `test -f 'openat-safer.c' || echo '$(srcdir)/'`openat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-safer.Tpo $(DEPDIR)/libgzip_a-openat-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-safer.c' object='libgzip_a-openat-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-safer.o `test -f 'openat-safer.c' || echo '$(srcdir)/'`openat-safer.c + +libgzip_a-openat-safer.obj: openat-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-openat-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-openat-safer.Tpo -c -o libgzip_a-openat-safer.obj `if test -f 'openat-safer.c'; then $(CYGPATH_W) 'openat-safer.c'; else $(CYGPATH_W) '$(srcdir)/openat-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-openat-safer.Tpo $(DEPDIR)/libgzip_a-openat-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='openat-safer.c' object='libgzip_a-openat-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-openat-safer.obj `if test -f 'openat-safer.c'; then $(CYGPATH_W) 'openat-safer.c'; else $(CYGPATH_W) '$(srcdir)/openat-safer.c'; fi` + +libgzip_a-opendir.o: opendir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-opendir.o -MD -MP -MF $(DEPDIR)/libgzip_a-opendir.Tpo -c -o libgzip_a-opendir.o `test -f 'opendir.c' || echo '$(srcdir)/'`opendir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-opendir.Tpo $(DEPDIR)/libgzip_a-opendir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='opendir.c' object='libgzip_a-opendir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-opendir.o `test -f 'opendir.c' || echo '$(srcdir)/'`opendir.c + +libgzip_a-opendir.obj: opendir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-opendir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-opendir.Tpo -c -o libgzip_a-opendir.obj `if test -f 'opendir.c'; then $(CYGPATH_W) 'opendir.c'; else $(CYGPATH_W) '$(srcdir)/opendir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-opendir.Tpo $(DEPDIR)/libgzip_a-opendir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='opendir.c' object='libgzip_a-opendir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-opendir.obj `if test -f 'opendir.c'; then $(CYGPATH_W) 'opendir.c'; else $(CYGPATH_W) '$(srcdir)/opendir.c'; fi` + +libgzip_a-perror.o: perror.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-perror.o -MD -MP -MF $(DEPDIR)/libgzip_a-perror.Tpo -c -o libgzip_a-perror.o `test -f 'perror.c' || echo '$(srcdir)/'`perror.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-perror.Tpo $(DEPDIR)/libgzip_a-perror.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='perror.c' object='libgzip_a-perror.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-perror.o `test -f 'perror.c' || echo '$(srcdir)/'`perror.c + +libgzip_a-perror.obj: perror.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-perror.obj -MD -MP -MF $(DEPDIR)/libgzip_a-perror.Tpo -c -o libgzip_a-perror.obj `if test -f 'perror.c'; then $(CYGPATH_W) 'perror.c'; else $(CYGPATH_W) '$(srcdir)/perror.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-perror.Tpo $(DEPDIR)/libgzip_a-perror.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='perror.c' object='libgzip_a-perror.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-perror.obj `if test -f 'perror.c'; then $(CYGPATH_W) 'perror.c'; else $(CYGPATH_W) '$(srcdir)/perror.c'; fi` + +libgzip_a-pipe.o: pipe.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-pipe.o -MD -MP -MF $(DEPDIR)/libgzip_a-pipe.Tpo -c -o libgzip_a-pipe.o `test -f 'pipe.c' || echo '$(srcdir)/'`pipe.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-pipe.Tpo $(DEPDIR)/libgzip_a-pipe.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pipe.c' object='libgzip_a-pipe.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-pipe.o `test -f 'pipe.c' || echo '$(srcdir)/'`pipe.c + +libgzip_a-pipe.obj: pipe.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-pipe.obj -MD -MP -MF $(DEPDIR)/libgzip_a-pipe.Tpo -c -o libgzip_a-pipe.obj `if test -f 'pipe.c'; then $(CYGPATH_W) 'pipe.c'; else $(CYGPATH_W) '$(srcdir)/pipe.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-pipe.Tpo $(DEPDIR)/libgzip_a-pipe.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pipe.c' object='libgzip_a-pipe.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-pipe.obj `if test -f 'pipe.c'; then $(CYGPATH_W) 'pipe.c'; else $(CYGPATH_W) '$(srcdir)/pipe.c'; fi` + +libgzip_a-printf-frexp.o: printf-frexp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-frexp.o -MD -MP -MF $(DEPDIR)/libgzip_a-printf-frexp.Tpo -c -o libgzip_a-printf-frexp.o `test -f 'printf-frexp.c' || echo '$(srcdir)/'`printf-frexp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-frexp.Tpo $(DEPDIR)/libgzip_a-printf-frexp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-frexp.c' object='libgzip_a-printf-frexp.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-frexp.o `test -f 'printf-frexp.c' || echo '$(srcdir)/'`printf-frexp.c + +libgzip_a-printf-frexp.obj: printf-frexp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-frexp.obj -MD -MP -MF $(DEPDIR)/libgzip_a-printf-frexp.Tpo -c -o libgzip_a-printf-frexp.obj `if test -f 'printf-frexp.c'; then $(CYGPATH_W) 'printf-frexp.c'; else $(CYGPATH_W) '$(srcdir)/printf-frexp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-frexp.Tpo $(DEPDIR)/libgzip_a-printf-frexp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-frexp.c' object='libgzip_a-printf-frexp.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-frexp.obj `if test -f 'printf-frexp.c'; then $(CYGPATH_W) 'printf-frexp.c'; else $(CYGPATH_W) '$(srcdir)/printf-frexp.c'; fi` + +libgzip_a-printf-frexpl.o: printf-frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-frexpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-printf-frexpl.Tpo -c -o libgzip_a-printf-frexpl.o `test -f 'printf-frexpl.c' || echo '$(srcdir)/'`printf-frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-frexpl.Tpo $(DEPDIR)/libgzip_a-printf-frexpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-frexpl.c' object='libgzip_a-printf-frexpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-frexpl.o `test -f 'printf-frexpl.c' || echo '$(srcdir)/'`printf-frexpl.c + +libgzip_a-printf-frexpl.obj: printf-frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-frexpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-printf-frexpl.Tpo -c -o libgzip_a-printf-frexpl.obj `if test -f 'printf-frexpl.c'; then $(CYGPATH_W) 'printf-frexpl.c'; else $(CYGPATH_W) '$(srcdir)/printf-frexpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-frexpl.Tpo $(DEPDIR)/libgzip_a-printf-frexpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-frexpl.c' object='libgzip_a-printf-frexpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-frexpl.obj `if test -f 'printf-frexpl.c'; then $(CYGPATH_W) 'printf-frexpl.c'; else $(CYGPATH_W) '$(srcdir)/printf-frexpl.c'; fi` + +libgzip_a-raise.o: raise.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-raise.o -MD -MP -MF $(DEPDIR)/libgzip_a-raise.Tpo -c -o libgzip_a-raise.o `test -f 'raise.c' || echo '$(srcdir)/'`raise.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-raise.Tpo $(DEPDIR)/libgzip_a-raise.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='raise.c' object='libgzip_a-raise.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-raise.o `test -f 'raise.c' || echo '$(srcdir)/'`raise.c + +libgzip_a-raise.obj: raise.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-raise.obj -MD -MP -MF $(DEPDIR)/libgzip_a-raise.Tpo -c -o libgzip_a-raise.obj `if test -f 'raise.c'; then $(CYGPATH_W) 'raise.c'; else $(CYGPATH_W) '$(srcdir)/raise.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-raise.Tpo $(DEPDIR)/libgzip_a-raise.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='raise.c' object='libgzip_a-raise.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-raise.obj `if test -f 'raise.c'; then $(CYGPATH_W) 'raise.c'; else $(CYGPATH_W) '$(srcdir)/raise.c'; fi` + +libgzip_a-readdir.o: readdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-readdir.o -MD -MP -MF $(DEPDIR)/libgzip_a-readdir.Tpo -c -o libgzip_a-readdir.o `test -f 'readdir.c' || echo '$(srcdir)/'`readdir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-readdir.Tpo $(DEPDIR)/libgzip_a-readdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='readdir.c' object='libgzip_a-readdir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-readdir.o `test -f 'readdir.c' || echo '$(srcdir)/'`readdir.c + +libgzip_a-readdir.obj: readdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-readdir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-readdir.Tpo -c -o libgzip_a-readdir.obj `if test -f 'readdir.c'; then $(CYGPATH_W) 'readdir.c'; else $(CYGPATH_W) '$(srcdir)/readdir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-readdir.Tpo $(DEPDIR)/libgzip_a-readdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='readdir.c' object='libgzip_a-readdir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-readdir.obj `if test -f 'readdir.c'; then $(CYGPATH_W) 'readdir.c'; else $(CYGPATH_W) '$(srcdir)/readdir.c'; fi` + +libgzip_a-reallocarray.o: reallocarray.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-reallocarray.o -MD -MP -MF $(DEPDIR)/libgzip_a-reallocarray.Tpo -c -o libgzip_a-reallocarray.o `test -f 'reallocarray.c' || echo '$(srcdir)/'`reallocarray.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-reallocarray.Tpo $(DEPDIR)/libgzip_a-reallocarray.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='reallocarray.c' object='libgzip_a-reallocarray.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-reallocarray.o `test -f 'reallocarray.c' || echo '$(srcdir)/'`reallocarray.c + +libgzip_a-reallocarray.obj: reallocarray.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-reallocarray.obj -MD -MP -MF $(DEPDIR)/libgzip_a-reallocarray.Tpo -c -o libgzip_a-reallocarray.obj `if test -f 'reallocarray.c'; then $(CYGPATH_W) 'reallocarray.c'; else $(CYGPATH_W) '$(srcdir)/reallocarray.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-reallocarray.Tpo $(DEPDIR)/libgzip_a-reallocarray.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='reallocarray.c' object='libgzip_a-reallocarray.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-reallocarray.obj `if test -f 'reallocarray.c'; then $(CYGPATH_W) 'reallocarray.c'; else $(CYGPATH_W) '$(srcdir)/reallocarray.c'; fi` + +libgzip_a-rmdir.o: rmdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-rmdir.o -MD -MP -MF $(DEPDIR)/libgzip_a-rmdir.Tpo -c -o libgzip_a-rmdir.o `test -f 'rmdir.c' || echo '$(srcdir)/'`rmdir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-rmdir.Tpo $(DEPDIR)/libgzip_a-rmdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rmdir.c' object='libgzip_a-rmdir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-rmdir.o `test -f 'rmdir.c' || echo '$(srcdir)/'`rmdir.c + +libgzip_a-rmdir.obj: rmdir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-rmdir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-rmdir.Tpo -c -o libgzip_a-rmdir.obj `if test -f 'rmdir.c'; then $(CYGPATH_W) 'rmdir.c'; else $(CYGPATH_W) '$(srcdir)/rmdir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-rmdir.Tpo $(DEPDIR)/libgzip_a-rmdir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rmdir.c' object='libgzip_a-rmdir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-rmdir.obj `if test -f 'rmdir.c'; then $(CYGPATH_W) 'rmdir.c'; else $(CYGPATH_W) '$(srcdir)/rmdir.c'; fi` + +libgzip_a-save-cwd.o: save-cwd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-save-cwd.o -MD -MP -MF $(DEPDIR)/libgzip_a-save-cwd.Tpo -c -o libgzip_a-save-cwd.o `test -f 'save-cwd.c' || echo '$(srcdir)/'`save-cwd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-save-cwd.Tpo $(DEPDIR)/libgzip_a-save-cwd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='save-cwd.c' object='libgzip_a-save-cwd.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-save-cwd.o `test -f 'save-cwd.c' || echo '$(srcdir)/'`save-cwd.c + +libgzip_a-save-cwd.obj: save-cwd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-save-cwd.obj -MD -MP -MF $(DEPDIR)/libgzip_a-save-cwd.Tpo -c -o libgzip_a-save-cwd.obj `if test -f 'save-cwd.c'; then $(CYGPATH_W) 'save-cwd.c'; else $(CYGPATH_W) '$(srcdir)/save-cwd.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-save-cwd.Tpo $(DEPDIR)/libgzip_a-save-cwd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='save-cwd.c' object='libgzip_a-save-cwd.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-save-cwd.obj `if test -f 'save-cwd.c'; then $(CYGPATH_W) 'save-cwd.c'; else $(CYGPATH_W) '$(srcdir)/save-cwd.c'; fi` + +libgzip_a-savedir.o: savedir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-savedir.o -MD -MP -MF $(DEPDIR)/libgzip_a-savedir.Tpo -c -o libgzip_a-savedir.o `test -f 'savedir.c' || echo '$(srcdir)/'`savedir.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-savedir.Tpo $(DEPDIR)/libgzip_a-savedir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='savedir.c' object='libgzip_a-savedir.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-savedir.o `test -f 'savedir.c' || echo '$(srcdir)/'`savedir.c + +libgzip_a-savedir.obj: savedir.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-savedir.obj -MD -MP -MF $(DEPDIR)/libgzip_a-savedir.Tpo -c -o libgzip_a-savedir.obj `if test -f 'savedir.c'; then $(CYGPATH_W) 'savedir.c'; else $(CYGPATH_W) '$(srcdir)/savedir.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-savedir.Tpo $(DEPDIR)/libgzip_a-savedir.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='savedir.c' object='libgzip_a-savedir.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-savedir.obj `if test -f 'savedir.c'; then $(CYGPATH_W) 'savedir.c'; else $(CYGPATH_W) '$(srcdir)/savedir.c'; fi` + +libgzip_a-sigaction.o: sigaction.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sigaction.o -MD -MP -MF $(DEPDIR)/libgzip_a-sigaction.Tpo -c -o libgzip_a-sigaction.o `test -f 'sigaction.c' || echo '$(srcdir)/'`sigaction.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sigaction.Tpo $(DEPDIR)/libgzip_a-sigaction.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sigaction.c' object='libgzip_a-sigaction.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sigaction.o `test -f 'sigaction.c' || echo '$(srcdir)/'`sigaction.c + +libgzip_a-sigaction.obj: sigaction.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sigaction.obj -MD -MP -MF $(DEPDIR)/libgzip_a-sigaction.Tpo -c -o libgzip_a-sigaction.obj `if test -f 'sigaction.c'; then $(CYGPATH_W) 'sigaction.c'; else $(CYGPATH_W) '$(srcdir)/sigaction.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sigaction.Tpo $(DEPDIR)/libgzip_a-sigaction.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sigaction.c' object='libgzip_a-sigaction.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sigaction.obj `if test -f 'sigaction.c'; then $(CYGPATH_W) 'sigaction.c'; else $(CYGPATH_W) '$(srcdir)/sigaction.c'; fi` + +libgzip_a-sig-handler.o: sig-handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sig-handler.o -MD -MP -MF $(DEPDIR)/libgzip_a-sig-handler.Tpo -c -o libgzip_a-sig-handler.o `test -f 'sig-handler.c' || echo '$(srcdir)/'`sig-handler.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sig-handler.Tpo $(DEPDIR)/libgzip_a-sig-handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sig-handler.c' object='libgzip_a-sig-handler.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sig-handler.o `test -f 'sig-handler.c' || echo '$(srcdir)/'`sig-handler.c + +libgzip_a-sig-handler.obj: sig-handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sig-handler.obj -MD -MP -MF $(DEPDIR)/libgzip_a-sig-handler.Tpo -c -o libgzip_a-sig-handler.obj `if test -f 'sig-handler.c'; then $(CYGPATH_W) 'sig-handler.c'; else $(CYGPATH_W) '$(srcdir)/sig-handler.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sig-handler.Tpo $(DEPDIR)/libgzip_a-sig-handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sig-handler.c' object='libgzip_a-sig-handler.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sig-handler.obj `if test -f 'sig-handler.c'; then $(CYGPATH_W) 'sig-handler.c'; else $(CYGPATH_W) '$(srcdir)/sig-handler.c'; fi` + +libgzip_a-signbitf.o: signbitf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitf.o -MD -MP -MF $(DEPDIR)/libgzip_a-signbitf.Tpo -c -o libgzip_a-signbitf.o `test -f 'signbitf.c' || echo '$(srcdir)/'`signbitf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitf.Tpo $(DEPDIR)/libgzip_a-signbitf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitf.c' object='libgzip_a-signbitf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitf.o `test -f 'signbitf.c' || echo '$(srcdir)/'`signbitf.c + +libgzip_a-signbitf.obj: signbitf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-signbitf.Tpo -c -o libgzip_a-signbitf.obj `if test -f 'signbitf.c'; then $(CYGPATH_W) 'signbitf.c'; else $(CYGPATH_W) '$(srcdir)/signbitf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitf.Tpo $(DEPDIR)/libgzip_a-signbitf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitf.c' object='libgzip_a-signbitf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitf.obj `if test -f 'signbitf.c'; then $(CYGPATH_W) 'signbitf.c'; else $(CYGPATH_W) '$(srcdir)/signbitf.c'; fi` + +libgzip_a-signbitd.o: signbitd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitd.o -MD -MP -MF $(DEPDIR)/libgzip_a-signbitd.Tpo -c -o libgzip_a-signbitd.o `test -f 'signbitd.c' || echo '$(srcdir)/'`signbitd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitd.Tpo $(DEPDIR)/libgzip_a-signbitd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitd.c' object='libgzip_a-signbitd.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitd.o `test -f 'signbitd.c' || echo '$(srcdir)/'`signbitd.c + +libgzip_a-signbitd.obj: signbitd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitd.obj -MD -MP -MF $(DEPDIR)/libgzip_a-signbitd.Tpo -c -o libgzip_a-signbitd.obj `if test -f 'signbitd.c'; then $(CYGPATH_W) 'signbitd.c'; else $(CYGPATH_W) '$(srcdir)/signbitd.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitd.Tpo $(DEPDIR)/libgzip_a-signbitd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitd.c' object='libgzip_a-signbitd.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitd.obj `if test -f 'signbitd.c'; then $(CYGPATH_W) 'signbitd.c'; else $(CYGPATH_W) '$(srcdir)/signbitd.c'; fi` + +libgzip_a-signbitl.o: signbitl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitl.o -MD -MP -MF $(DEPDIR)/libgzip_a-signbitl.Tpo -c -o libgzip_a-signbitl.o `test -f 'signbitl.c' || echo '$(srcdir)/'`signbitl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitl.Tpo $(DEPDIR)/libgzip_a-signbitl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitl.c' object='libgzip_a-signbitl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitl.o `test -f 'signbitl.c' || echo '$(srcdir)/'`signbitl.c + +libgzip_a-signbitl.obj: signbitl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-signbitl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-signbitl.Tpo -c -o libgzip_a-signbitl.obj `if test -f 'signbitl.c'; then $(CYGPATH_W) 'signbitl.c'; else $(CYGPATH_W) '$(srcdir)/signbitl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-signbitl.Tpo $(DEPDIR)/libgzip_a-signbitl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='signbitl.c' object='libgzip_a-signbitl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-signbitl.obj `if test -f 'signbitl.c'; then $(CYGPATH_W) 'signbitl.c'; else $(CYGPATH_W) '$(srcdir)/signbitl.c'; fi` + +libgzip_a-sigprocmask.o: sigprocmask.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sigprocmask.o -MD -MP -MF $(DEPDIR)/libgzip_a-sigprocmask.Tpo -c -o libgzip_a-sigprocmask.o `test -f 'sigprocmask.c' || echo '$(srcdir)/'`sigprocmask.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sigprocmask.Tpo $(DEPDIR)/libgzip_a-sigprocmask.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sigprocmask.c' object='libgzip_a-sigprocmask.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sigprocmask.o `test -f 'sigprocmask.c' || echo '$(srcdir)/'`sigprocmask.c + +libgzip_a-sigprocmask.obj: sigprocmask.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-sigprocmask.obj -MD -MP -MF $(DEPDIR)/libgzip_a-sigprocmask.Tpo -c -o libgzip_a-sigprocmask.obj `if test -f 'sigprocmask.c'; then $(CYGPATH_W) 'sigprocmask.c'; else $(CYGPATH_W) '$(srcdir)/sigprocmask.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-sigprocmask.Tpo $(DEPDIR)/libgzip_a-sigprocmask.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sigprocmask.c' object='libgzip_a-sigprocmask.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-sigprocmask.obj `if test -f 'sigprocmask.c'; then $(CYGPATH_W) 'sigprocmask.c'; else $(CYGPATH_W) '$(srcdir)/sigprocmask.c'; fi` + +libgzip_a-stat.o: stat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat.o -MD -MP -MF $(DEPDIR)/libgzip_a-stat.Tpo -c -o libgzip_a-stat.o `test -f 'stat.c' || echo '$(srcdir)/'`stat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat.Tpo $(DEPDIR)/libgzip_a-stat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat.c' object='libgzip_a-stat.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat.o `test -f 'stat.c' || echo '$(srcdir)/'`stat.c + +libgzip_a-stat.obj: stat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stat.Tpo -c -o libgzip_a-stat.obj `if test -f 'stat.c'; then $(CYGPATH_W) 'stat.c'; else $(CYGPATH_W) '$(srcdir)/stat.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat.Tpo $(DEPDIR)/libgzip_a-stat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat.c' object='libgzip_a-stat.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat.obj `if test -f 'stat.c'; then $(CYGPATH_W) 'stat.c'; else $(CYGPATH_W) '$(srcdir)/stat.c'; fi` + +libgzip_a-stat-time.o: stat-time.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat-time.o -MD -MP -MF $(DEPDIR)/libgzip_a-stat-time.Tpo -c -o libgzip_a-stat-time.o `test -f 'stat-time.c' || echo '$(srcdir)/'`stat-time.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat-time.Tpo $(DEPDIR)/libgzip_a-stat-time.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat-time.c' object='libgzip_a-stat-time.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat-time.o `test -f 'stat-time.c' || echo '$(srcdir)/'`stat-time.c + +libgzip_a-stat-time.obj: stat-time.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat-time.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stat-time.Tpo -c -o libgzip_a-stat-time.obj `if test -f 'stat-time.c'; then $(CYGPATH_W) 'stat-time.c'; else $(CYGPATH_W) '$(srcdir)/stat-time.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat-time.Tpo $(DEPDIR)/libgzip_a-stat-time.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat-time.c' object='libgzip_a-stat-time.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat-time.obj `if test -f 'stat-time.c'; then $(CYGPATH_W) 'stat-time.c'; else $(CYGPATH_W) '$(srcdir)/stat-time.c'; fi` + +libgzip_a-stdio-read.o: stdio-read.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stdio-read.o -MD -MP -MF $(DEPDIR)/libgzip_a-stdio-read.Tpo -c -o libgzip_a-stdio-read.o `test -f 'stdio-read.c' || echo '$(srcdir)/'`stdio-read.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stdio-read.Tpo $(DEPDIR)/libgzip_a-stdio-read.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stdio-read.c' object='libgzip_a-stdio-read.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stdio-read.o `test -f 'stdio-read.c' || echo '$(srcdir)/'`stdio-read.c + +libgzip_a-stdio-read.obj: stdio-read.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stdio-read.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stdio-read.Tpo -c -o libgzip_a-stdio-read.obj `if test -f 'stdio-read.c'; then $(CYGPATH_W) 'stdio-read.c'; else $(CYGPATH_W) '$(srcdir)/stdio-read.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stdio-read.Tpo $(DEPDIR)/libgzip_a-stdio-read.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stdio-read.c' object='libgzip_a-stdio-read.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stdio-read.obj `if test -f 'stdio-read.c'; then $(CYGPATH_W) 'stdio-read.c'; else $(CYGPATH_W) '$(srcdir)/stdio-read.c'; fi` + +libgzip_a-stdio-write.o: stdio-write.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stdio-write.o -MD -MP -MF $(DEPDIR)/libgzip_a-stdio-write.Tpo -c -o libgzip_a-stdio-write.o `test -f 'stdio-write.c' || echo '$(srcdir)/'`stdio-write.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stdio-write.Tpo $(DEPDIR)/libgzip_a-stdio-write.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stdio-write.c' object='libgzip_a-stdio-write.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stdio-write.o `test -f 'stdio-write.c' || echo '$(srcdir)/'`stdio-write.c + +libgzip_a-stdio-write.obj: stdio-write.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stdio-write.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stdio-write.Tpo -c -o libgzip_a-stdio-write.obj `if test -f 'stdio-write.c'; then $(CYGPATH_W) 'stdio-write.c'; else $(CYGPATH_W) '$(srcdir)/stdio-write.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stdio-write.Tpo $(DEPDIR)/libgzip_a-stdio-write.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stdio-write.c' object='libgzip_a-stdio-write.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stdio-write.obj `if test -f 'stdio-write.c'; then $(CYGPATH_W) 'stdio-write.c'; else $(CYGPATH_W) '$(srcdir)/stdio-write.c'; fi` + +libgzip_a-stpcpy.o: stpcpy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stpcpy.o -MD -MP -MF $(DEPDIR)/libgzip_a-stpcpy.Tpo -c -o libgzip_a-stpcpy.o `test -f 'stpcpy.c' || echo '$(srcdir)/'`stpcpy.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stpcpy.Tpo $(DEPDIR)/libgzip_a-stpcpy.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stpcpy.c' object='libgzip_a-stpcpy.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stpcpy.o `test -f 'stpcpy.c' || echo '$(srcdir)/'`stpcpy.c + +libgzip_a-stpcpy.obj: stpcpy.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stpcpy.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stpcpy.Tpo -c -o libgzip_a-stpcpy.obj `if test -f 'stpcpy.c'; then $(CYGPATH_W) 'stpcpy.c'; else $(CYGPATH_W) '$(srcdir)/stpcpy.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stpcpy.Tpo $(DEPDIR)/libgzip_a-stpcpy.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stpcpy.c' object='libgzip_a-stpcpy.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stpcpy.obj `if test -f 'stpcpy.c'; then $(CYGPATH_W) 'stpcpy.c'; else $(CYGPATH_W) '$(srcdir)/stpcpy.c'; fi` + +libgzip_a-strdup.o: strdup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strdup.o -MD -MP -MF $(DEPDIR)/libgzip_a-strdup.Tpo -c -o libgzip_a-strdup.o `test -f 'strdup.c' || echo '$(srcdir)/'`strdup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strdup.Tpo $(DEPDIR)/libgzip_a-strdup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strdup.c' object='libgzip_a-strdup.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strdup.o `test -f 'strdup.c' || echo '$(srcdir)/'`strdup.c + +libgzip_a-strdup.obj: strdup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strdup.obj -MD -MP -MF $(DEPDIR)/libgzip_a-strdup.Tpo -c -o libgzip_a-strdup.obj `if test -f 'strdup.c'; then $(CYGPATH_W) 'strdup.c'; else $(CYGPATH_W) '$(srcdir)/strdup.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strdup.Tpo $(DEPDIR)/libgzip_a-strdup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strdup.c' object='libgzip_a-strdup.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strdup.obj `if test -f 'strdup.c'; then $(CYGPATH_W) 'strdup.c'; else $(CYGPATH_W) '$(srcdir)/strdup.c'; fi` + +libgzip_a-strerror.o: strerror.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror.o -MD -MP -MF $(DEPDIR)/libgzip_a-strerror.Tpo -c -o libgzip_a-strerror.o `test -f 'strerror.c' || echo '$(srcdir)/'`strerror.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror.Tpo $(DEPDIR)/libgzip_a-strerror.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror.c' object='libgzip_a-strerror.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror.o `test -f 'strerror.c' || echo '$(srcdir)/'`strerror.c + +libgzip_a-strerror.obj: strerror.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror.obj -MD -MP -MF $(DEPDIR)/libgzip_a-strerror.Tpo -c -o libgzip_a-strerror.obj `if test -f 'strerror.c'; then $(CYGPATH_W) 'strerror.c'; else $(CYGPATH_W) '$(srcdir)/strerror.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror.Tpo $(DEPDIR)/libgzip_a-strerror.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror.c' object='libgzip_a-strerror.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror.obj `if test -f 'strerror.c'; then $(CYGPATH_W) 'strerror.c'; else $(CYGPATH_W) '$(srcdir)/strerror.c'; fi` + +libgzip_a-strerror-override.o: strerror-override.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror-override.o -MD -MP -MF $(DEPDIR)/libgzip_a-strerror-override.Tpo -c -o libgzip_a-strerror-override.o `test -f 'strerror-override.c' || echo '$(srcdir)/'`strerror-override.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror-override.Tpo $(DEPDIR)/libgzip_a-strerror-override.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror-override.c' object='libgzip_a-strerror-override.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror-override.o `test -f 'strerror-override.c' || echo '$(srcdir)/'`strerror-override.c + +libgzip_a-strerror-override.obj: strerror-override.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror-override.obj -MD -MP -MF $(DEPDIR)/libgzip_a-strerror-override.Tpo -c -o libgzip_a-strerror-override.obj `if test -f 'strerror-override.c'; then $(CYGPATH_W) 'strerror-override.c'; else $(CYGPATH_W) '$(srcdir)/strerror-override.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror-override.Tpo $(DEPDIR)/libgzip_a-strerror-override.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror-override.c' object='libgzip_a-strerror-override.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror-override.obj `if test -f 'strerror-override.c'; then $(CYGPATH_W) 'strerror-override.c'; else $(CYGPATH_W) '$(srcdir)/strerror-override.c'; fi` + +glthread/libgzip_a-threadlib.o: glthread/threadlib.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT glthread/libgzip_a-threadlib.o -MD -MP -MF glthread/$(DEPDIR)/libgzip_a-threadlib.Tpo -c -o glthread/libgzip_a-threadlib.o `test -f 'glthread/threadlib.c' || echo '$(srcdir)/'`glthread/threadlib.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) glthread/$(DEPDIR)/libgzip_a-threadlib.Tpo glthread/$(DEPDIR)/libgzip_a-threadlib.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glthread/threadlib.c' object='glthread/libgzip_a-threadlib.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o glthread/libgzip_a-threadlib.o `test -f 'glthread/threadlib.c' || echo '$(srcdir)/'`glthread/threadlib.c + +glthread/libgzip_a-threadlib.obj: glthread/threadlib.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT glthread/libgzip_a-threadlib.obj -MD -MP -MF glthread/$(DEPDIR)/libgzip_a-threadlib.Tpo -c -o glthread/libgzip_a-threadlib.obj `if test -f 'glthread/threadlib.c'; then $(CYGPATH_W) 'glthread/threadlib.c'; else $(CYGPATH_W) '$(srcdir)/glthread/threadlib.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) glthread/$(DEPDIR)/libgzip_a-threadlib.Tpo glthread/$(DEPDIR)/libgzip_a-threadlib.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='glthread/threadlib.c' object='glthread/libgzip_a-threadlib.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o glthread/libgzip_a-threadlib.obj `if test -f 'glthread/threadlib.c'; then $(CYGPATH_W) 'glthread/threadlib.c'; else $(CYGPATH_W) '$(srcdir)/glthread/threadlib.c'; fi` + +libgzip_a-timespec.o: timespec.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-timespec.o -MD -MP -MF $(DEPDIR)/libgzip_a-timespec.Tpo -c -o libgzip_a-timespec.o `test -f 'timespec.c' || echo '$(srcdir)/'`timespec.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-timespec.Tpo $(DEPDIR)/libgzip_a-timespec.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timespec.c' object='libgzip_a-timespec.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-timespec.o `test -f 'timespec.c' || echo '$(srcdir)/'`timespec.c + +libgzip_a-timespec.obj: timespec.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-timespec.obj -MD -MP -MF $(DEPDIR)/libgzip_a-timespec.Tpo -c -o libgzip_a-timespec.obj `if test -f 'timespec.c'; then $(CYGPATH_W) 'timespec.c'; else $(CYGPATH_W) '$(srcdir)/timespec.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-timespec.Tpo $(DEPDIR)/libgzip_a-timespec.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timespec.c' object='libgzip_a-timespec.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-timespec.obj `if test -f 'timespec.c'; then $(CYGPATH_W) 'timespec.c'; else $(CYGPATH_W) '$(srcdir)/timespec.c'; fi` + +libgzip_a-unistd.o: unistd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unistd.o -MD -MP -MF $(DEPDIR)/libgzip_a-unistd.Tpo -c -o libgzip_a-unistd.o `test -f 'unistd.c' || echo '$(srcdir)/'`unistd.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unistd.Tpo $(DEPDIR)/libgzip_a-unistd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unistd.c' object='libgzip_a-unistd.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unistd.o `test -f 'unistd.c' || echo '$(srcdir)/'`unistd.c + +libgzip_a-unistd.obj: unistd.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unistd.obj -MD -MP -MF $(DEPDIR)/libgzip_a-unistd.Tpo -c -o libgzip_a-unistd.obj `if test -f 'unistd.c'; then $(CYGPATH_W) 'unistd.c'; else $(CYGPATH_W) '$(srcdir)/unistd.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unistd.Tpo $(DEPDIR)/libgzip_a-unistd.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unistd.c' object='libgzip_a-unistd.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unistd.obj `if test -f 'unistd.c'; then $(CYGPATH_W) 'unistd.c'; else $(CYGPATH_W) '$(srcdir)/unistd.c'; fi` + +libgzip_a-dup-safer.o: dup-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-dup-safer.Tpo -c -o libgzip_a-dup-safer.o `test -f 'dup-safer.c' || echo '$(srcdir)/'`dup-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup-safer.Tpo $(DEPDIR)/libgzip_a-dup-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup-safer.c' object='libgzip_a-dup-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup-safer.o `test -f 'dup-safer.c' || echo '$(srcdir)/'`dup-safer.c + +libgzip_a-dup-safer.obj: dup-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-dup-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-dup-safer.Tpo -c -o libgzip_a-dup-safer.obj `if test -f 'dup-safer.c'; then $(CYGPATH_W) 'dup-safer.c'; else $(CYGPATH_W) '$(srcdir)/dup-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-dup-safer.Tpo $(DEPDIR)/libgzip_a-dup-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dup-safer.c' object='libgzip_a-dup-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-dup-safer.obj `if test -f 'dup-safer.c'; then $(CYGPATH_W) 'dup-safer.c'; else $(CYGPATH_W) '$(srcdir)/dup-safer.c'; fi` + +libgzip_a-fd-safer.o: fd-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-fd-safer.Tpo -c -o libgzip_a-fd-safer.o `test -f 'fd-safer.c' || echo '$(srcdir)/'`fd-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-safer.Tpo $(DEPDIR)/libgzip_a-fd-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-safer.c' object='libgzip_a-fd-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-safer.o `test -f 'fd-safer.c' || echo '$(srcdir)/'`fd-safer.c + +libgzip_a-fd-safer.obj: fd-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fd-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fd-safer.Tpo -c -o libgzip_a-fd-safer.obj `if test -f 'fd-safer.c'; then $(CYGPATH_W) 'fd-safer.c'; else $(CYGPATH_W) '$(srcdir)/fd-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fd-safer.Tpo $(DEPDIR)/libgzip_a-fd-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fd-safer.c' object='libgzip_a-fd-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fd-safer.obj `if test -f 'fd-safer.c'; then $(CYGPATH_W) 'fd-safer.c'; else $(CYGPATH_W) '$(srcdir)/fd-safer.c'; fi` + +libgzip_a-pipe-safer.o: pipe-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-pipe-safer.o -MD -MP -MF $(DEPDIR)/libgzip_a-pipe-safer.Tpo -c -o libgzip_a-pipe-safer.o `test -f 'pipe-safer.c' || echo '$(srcdir)/'`pipe-safer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-pipe-safer.Tpo $(DEPDIR)/libgzip_a-pipe-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pipe-safer.c' object='libgzip_a-pipe-safer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-pipe-safer.o `test -f 'pipe-safer.c' || echo '$(srcdir)/'`pipe-safer.c + +libgzip_a-pipe-safer.obj: pipe-safer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-pipe-safer.obj -MD -MP -MF $(DEPDIR)/libgzip_a-pipe-safer.Tpo -c -o libgzip_a-pipe-safer.obj `if test -f 'pipe-safer.c'; then $(CYGPATH_W) 'pipe-safer.c'; else $(CYGPATH_W) '$(srcdir)/pipe-safer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-pipe-safer.Tpo $(DEPDIR)/libgzip_a-pipe-safer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pipe-safer.c' object='libgzip_a-pipe-safer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-pipe-safer.obj `if test -f 'pipe-safer.c'; then $(CYGPATH_W) 'pipe-safer.c'; else $(CYGPATH_W) '$(srcdir)/pipe-safer.c'; fi` + +libgzip_a-unlink.o: unlink.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unlink.o -MD -MP -MF $(DEPDIR)/libgzip_a-unlink.Tpo -c -o libgzip_a-unlink.o `test -f 'unlink.c' || echo '$(srcdir)/'`unlink.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unlink.Tpo $(DEPDIR)/libgzip_a-unlink.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unlink.c' object='libgzip_a-unlink.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unlink.o `test -f 'unlink.c' || echo '$(srcdir)/'`unlink.c + +libgzip_a-unlink.obj: unlink.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unlink.obj -MD -MP -MF $(DEPDIR)/libgzip_a-unlink.Tpo -c -o libgzip_a-unlink.obj `if test -f 'unlink.c'; then $(CYGPATH_W) 'unlink.c'; else $(CYGPATH_W) '$(srcdir)/unlink.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unlink.Tpo $(DEPDIR)/libgzip_a-unlink.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unlink.c' object='libgzip_a-unlink.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unlink.obj `if test -f 'unlink.c'; then $(CYGPATH_W) 'unlink.c'; else $(CYGPATH_W) '$(srcdir)/unlink.c'; fi` + +libgzip_a-unlinkat.o: unlinkat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unlinkat.o -MD -MP -MF $(DEPDIR)/libgzip_a-unlinkat.Tpo -c -o libgzip_a-unlinkat.o `test -f 'unlinkat.c' || echo '$(srcdir)/'`unlinkat.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unlinkat.Tpo $(DEPDIR)/libgzip_a-unlinkat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unlinkat.c' object='libgzip_a-unlinkat.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unlinkat.o `test -f 'unlinkat.c' || echo '$(srcdir)/'`unlinkat.c + +libgzip_a-unlinkat.obj: unlinkat.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-unlinkat.obj -MD -MP -MF $(DEPDIR)/libgzip_a-unlinkat.Tpo -c -o libgzip_a-unlinkat.obj `if test -f 'unlinkat.c'; then $(CYGPATH_W) 'unlinkat.c'; else $(CYGPATH_W) '$(srcdir)/unlinkat.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-unlinkat.Tpo $(DEPDIR)/libgzip_a-unlinkat.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unlinkat.c' object='libgzip_a-unlinkat.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-unlinkat.obj `if test -f 'unlinkat.c'; then $(CYGPATH_W) 'unlinkat.c'; else $(CYGPATH_W) '$(srcdir)/unlinkat.c'; fi` + +libgzip_a-utime.o: utime.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-utime.o -MD -MP -MF $(DEPDIR)/libgzip_a-utime.Tpo -c -o libgzip_a-utime.o `test -f 'utime.c' || echo '$(srcdir)/'`utime.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-utime.Tpo $(DEPDIR)/libgzip_a-utime.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utime.c' object='libgzip_a-utime.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-utime.o `test -f 'utime.c' || echo '$(srcdir)/'`utime.c + +libgzip_a-utime.obj: utime.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-utime.obj -MD -MP -MF $(DEPDIR)/libgzip_a-utime.Tpo -c -o libgzip_a-utime.obj `if test -f 'utime.c'; then $(CYGPATH_W) 'utime.c'; else $(CYGPATH_W) '$(srcdir)/utime.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-utime.Tpo $(DEPDIR)/libgzip_a-utime.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utime.c' object='libgzip_a-utime.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-utime.obj `if test -f 'utime.c'; then $(CYGPATH_W) 'utime.c'; else $(CYGPATH_W) '$(srcdir)/utime.c'; fi` + +libgzip_a-utimens.o: utimens.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-utimens.o -MD -MP -MF $(DEPDIR)/libgzip_a-utimens.Tpo -c -o libgzip_a-utimens.o `test -f 'utimens.c' || echo '$(srcdir)/'`utimens.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-utimens.Tpo $(DEPDIR)/libgzip_a-utimens.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utimens.c' object='libgzip_a-utimens.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-utimens.o `test -f 'utimens.c' || echo '$(srcdir)/'`utimens.c + +libgzip_a-utimens.obj: utimens.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-utimens.obj -MD -MP -MF $(DEPDIR)/libgzip_a-utimens.Tpo -c -o libgzip_a-utimens.obj `if test -f 'utimens.c'; then $(CYGPATH_W) 'utimens.c'; else $(CYGPATH_W) '$(srcdir)/utimens.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-utimens.Tpo $(DEPDIR)/libgzip_a-utimens.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utimens.c' object='libgzip_a-utimens.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-utimens.obj `if test -f 'utimens.c'; then $(CYGPATH_W) 'utimens.c'; else $(CYGPATH_W) '$(srcdir)/utimens.c'; fi` + +libgzip_a-windows-mutex.o: windows-mutex.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-mutex.o -MD -MP -MF $(DEPDIR)/libgzip_a-windows-mutex.Tpo -c -o libgzip_a-windows-mutex.o `test -f 'windows-mutex.c' || echo '$(srcdir)/'`windows-mutex.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-mutex.Tpo $(DEPDIR)/libgzip_a-windows-mutex.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-mutex.c' object='libgzip_a-windows-mutex.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-mutex.o `test -f 'windows-mutex.c' || echo '$(srcdir)/'`windows-mutex.c + +libgzip_a-windows-mutex.obj: windows-mutex.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-mutex.obj -MD -MP -MF $(DEPDIR)/libgzip_a-windows-mutex.Tpo -c -o libgzip_a-windows-mutex.obj `if test -f 'windows-mutex.c'; then $(CYGPATH_W) 'windows-mutex.c'; else $(CYGPATH_W) '$(srcdir)/windows-mutex.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-mutex.Tpo $(DEPDIR)/libgzip_a-windows-mutex.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-mutex.c' object='libgzip_a-windows-mutex.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-mutex.obj `if test -f 'windows-mutex.c'; then $(CYGPATH_W) 'windows-mutex.c'; else $(CYGPATH_W) '$(srcdir)/windows-mutex.c'; fi` + +libgzip_a-windows-once.o: windows-once.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-once.o -MD -MP -MF $(DEPDIR)/libgzip_a-windows-once.Tpo -c -o libgzip_a-windows-once.o `test -f 'windows-once.c' || echo '$(srcdir)/'`windows-once.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-once.Tpo $(DEPDIR)/libgzip_a-windows-once.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-once.c' object='libgzip_a-windows-once.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-once.o `test -f 'windows-once.c' || echo '$(srcdir)/'`windows-once.c + +libgzip_a-windows-once.obj: windows-once.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-once.obj -MD -MP -MF $(DEPDIR)/libgzip_a-windows-once.Tpo -c -o libgzip_a-windows-once.obj `if test -f 'windows-once.c'; then $(CYGPATH_W) 'windows-once.c'; else $(CYGPATH_W) '$(srcdir)/windows-once.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-once.Tpo $(DEPDIR)/libgzip_a-windows-once.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-once.c' object='libgzip_a-windows-once.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-once.obj `if test -f 'windows-once.c'; then $(CYGPATH_W) 'windows-once.c'; else $(CYGPATH_W) '$(srcdir)/windows-once.c'; fi` + +libgzip_a-windows-recmutex.o: windows-recmutex.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-recmutex.o -MD -MP -MF $(DEPDIR)/libgzip_a-windows-recmutex.Tpo -c -o libgzip_a-windows-recmutex.o `test -f 'windows-recmutex.c' || echo '$(srcdir)/'`windows-recmutex.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-recmutex.Tpo $(DEPDIR)/libgzip_a-windows-recmutex.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-recmutex.c' object='libgzip_a-windows-recmutex.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-recmutex.o `test -f 'windows-recmutex.c' || echo '$(srcdir)/'`windows-recmutex.c + +libgzip_a-windows-recmutex.obj: windows-recmutex.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-recmutex.obj -MD -MP -MF $(DEPDIR)/libgzip_a-windows-recmutex.Tpo -c -o libgzip_a-windows-recmutex.obj `if test -f 'windows-recmutex.c'; then $(CYGPATH_W) 'windows-recmutex.c'; else $(CYGPATH_W) '$(srcdir)/windows-recmutex.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-recmutex.Tpo $(DEPDIR)/libgzip_a-windows-recmutex.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-recmutex.c' object='libgzip_a-windows-recmutex.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-recmutex.obj `if test -f 'windows-recmutex.c'; then $(CYGPATH_W) 'windows-recmutex.c'; else $(CYGPATH_W) '$(srcdir)/windows-recmutex.c'; fi` + +libgzip_a-windows-rwlock.o: windows-rwlock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-rwlock.o -MD -MP -MF $(DEPDIR)/libgzip_a-windows-rwlock.Tpo -c -o libgzip_a-windows-rwlock.o `test -f 'windows-rwlock.c' || echo '$(srcdir)/'`windows-rwlock.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-rwlock.Tpo $(DEPDIR)/libgzip_a-windows-rwlock.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-rwlock.c' object='libgzip_a-windows-rwlock.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-rwlock.o `test -f 'windows-rwlock.c' || echo '$(srcdir)/'`windows-rwlock.c + +libgzip_a-windows-rwlock.obj: windows-rwlock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-windows-rwlock.obj -MD -MP -MF $(DEPDIR)/libgzip_a-windows-rwlock.Tpo -c -o libgzip_a-windows-rwlock.obj `if test -f 'windows-rwlock.c'; then $(CYGPATH_W) 'windows-rwlock.c'; else $(CYGPATH_W) '$(srcdir)/windows-rwlock.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-windows-rwlock.Tpo $(DEPDIR)/libgzip_a-windows-rwlock.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='windows-rwlock.c' object='libgzip_a-windows-rwlock.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-windows-rwlock.obj `if test -f 'windows-rwlock.c'; then $(CYGPATH_W) 'windows-rwlock.c'; else $(CYGPATH_W) '$(srcdir)/windows-rwlock.c'; fi` + +libgzip_a-xmalloc.o: xmalloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xmalloc.o -MD -MP -MF $(DEPDIR)/libgzip_a-xmalloc.Tpo -c -o libgzip_a-xmalloc.o `test -f 'xmalloc.c' || echo '$(srcdir)/'`xmalloc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xmalloc.Tpo $(DEPDIR)/libgzip_a-xmalloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xmalloc.c' object='libgzip_a-xmalloc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xmalloc.o `test -f 'xmalloc.c' || echo '$(srcdir)/'`xmalloc.c + +libgzip_a-xmalloc.obj: xmalloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xmalloc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-xmalloc.Tpo -c -o libgzip_a-xmalloc.obj `if test -f 'xmalloc.c'; then $(CYGPATH_W) 'xmalloc.c'; else $(CYGPATH_W) '$(srcdir)/xmalloc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xmalloc.Tpo $(DEPDIR)/libgzip_a-xmalloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xmalloc.c' object='libgzip_a-xmalloc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xmalloc.obj `if test -f 'xmalloc.c'; then $(CYGPATH_W) 'xmalloc.c'; else $(CYGPATH_W) '$(srcdir)/xmalloc.c'; fi` + +libgzip_a-xalloc-die.o: xalloc-die.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xalloc-die.o -MD -MP -MF $(DEPDIR)/libgzip_a-xalloc-die.Tpo -c -o libgzip_a-xalloc-die.o `test -f 'xalloc-die.c' || echo '$(srcdir)/'`xalloc-die.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xalloc-die.Tpo $(DEPDIR)/libgzip_a-xalloc-die.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xalloc-die.c' object='libgzip_a-xalloc-die.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xalloc-die.o `test -f 'xalloc-die.c' || echo '$(srcdir)/'`xalloc-die.c + +libgzip_a-xalloc-die.obj: xalloc-die.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xalloc-die.obj -MD -MP -MF $(DEPDIR)/libgzip_a-xalloc-die.Tpo -c -o libgzip_a-xalloc-die.obj `if test -f 'xalloc-die.c'; then $(CYGPATH_W) 'xalloc-die.c'; else $(CYGPATH_W) '$(srcdir)/xalloc-die.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xalloc-die.Tpo $(DEPDIR)/libgzip_a-xalloc-die.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xalloc-die.c' object='libgzip_a-xalloc-die.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xalloc-die.obj `if test -f 'xalloc-die.c'; then $(CYGPATH_W) 'xalloc-die.c'; else $(CYGPATH_W) '$(srcdir)/xalloc-die.c'; fi` + +libgzip_a-xsize.o: xsize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xsize.o -MD -MP -MF $(DEPDIR)/libgzip_a-xsize.Tpo -c -o libgzip_a-xsize.o `test -f 'xsize.c' || echo '$(srcdir)/'`xsize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xsize.Tpo $(DEPDIR)/libgzip_a-xsize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsize.c' object='libgzip_a-xsize.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xsize.o `test -f 'xsize.c' || echo '$(srcdir)/'`xsize.c + +libgzip_a-xsize.obj: xsize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-xsize.obj -MD -MP -MF $(DEPDIR)/libgzip_a-xsize.Tpo -c -o libgzip_a-xsize.obj `if test -f 'xsize.c'; then $(CYGPATH_W) 'xsize.c'; else $(CYGPATH_W) '$(srcdir)/xsize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-xsize.Tpo $(DEPDIR)/libgzip_a-xsize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='xsize.c' object='libgzip_a-xsize.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-xsize.obj `if test -f 'xsize.c'; then $(CYGPATH_W) 'xsize.c'; else $(CYGPATH_W) '$(srcdir)/xsize.c'; fi` + +libgzip_a-yesno.o: yesno.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-yesno.o -MD -MP -MF $(DEPDIR)/libgzip_a-yesno.Tpo -c -o libgzip_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-yesno.Tpo $(DEPDIR)/libgzip_a-yesno.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='yesno.c' object='libgzip_a-yesno.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-yesno.o `test -f 'yesno.c' || echo '$(srcdir)/'`yesno.c + +libgzip_a-yesno.obj: yesno.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-yesno.obj -MD -MP -MF $(DEPDIR)/libgzip_a-yesno.Tpo -c -o libgzip_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-yesno.Tpo $(DEPDIR)/libgzip_a-yesno.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='yesno.c' object='libgzip_a-yesno.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-yesno.obj `if test -f 'yesno.c'; then $(CYGPATH_W) 'yesno.c'; else $(CYGPATH_W) '$(srcdir)/yesno.c'; fi` + +libgzip_a-calloc.o: calloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-calloc.o -MD -MP -MF $(DEPDIR)/libgzip_a-calloc.Tpo -c -o libgzip_a-calloc.o `test -f 'calloc.c' || echo '$(srcdir)/'`calloc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-calloc.Tpo $(DEPDIR)/libgzip_a-calloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='calloc.c' object='libgzip_a-calloc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-calloc.o `test -f 'calloc.c' || echo '$(srcdir)/'`calloc.c + +libgzip_a-calloc.obj: calloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-calloc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-calloc.Tpo -c -o libgzip_a-calloc.obj `if test -f 'calloc.c'; then $(CYGPATH_W) 'calloc.c'; else $(CYGPATH_W) '$(srcdir)/calloc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-calloc.Tpo $(DEPDIR)/libgzip_a-calloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='calloc.c' object='libgzip_a-calloc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-calloc.obj `if test -f 'calloc.c'; then $(CYGPATH_W) 'calloc.c'; else $(CYGPATH_W) '$(srcdir)/calloc.c'; fi` + +libgzip_a-fprintf.o: fprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fprintf.o -MD -MP -MF $(DEPDIR)/libgzip_a-fprintf.Tpo -c -o libgzip_a-fprintf.o `test -f 'fprintf.c' || echo '$(srcdir)/'`fprintf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fprintf.Tpo $(DEPDIR)/libgzip_a-fprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fprintf.c' object='libgzip_a-fprintf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fprintf.o `test -f 'fprintf.c' || echo '$(srcdir)/'`fprintf.c + +libgzip_a-fprintf.obj: fprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-fprintf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-fprintf.Tpo -c -o libgzip_a-fprintf.obj `if test -f 'fprintf.c'; then $(CYGPATH_W) 'fprintf.c'; else $(CYGPATH_W) '$(srcdir)/fprintf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-fprintf.Tpo $(DEPDIR)/libgzip_a-fprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fprintf.c' object='libgzip_a-fprintf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-fprintf.obj `if test -f 'fprintf.c'; then $(CYGPATH_W) 'fprintf.c'; else $(CYGPATH_W) '$(srcdir)/fprintf.c'; fi` + +libgzip_a-frexp.o: frexp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-frexp.o -MD -MP -MF $(DEPDIR)/libgzip_a-frexp.Tpo -c -o libgzip_a-frexp.o `test -f 'frexp.c' || echo '$(srcdir)/'`frexp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-frexp.Tpo $(DEPDIR)/libgzip_a-frexp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='frexp.c' object='libgzip_a-frexp.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-frexp.o `test -f 'frexp.c' || echo '$(srcdir)/'`frexp.c + +libgzip_a-frexp.obj: frexp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-frexp.obj -MD -MP -MF $(DEPDIR)/libgzip_a-frexp.Tpo -c -o libgzip_a-frexp.obj `if test -f 'frexp.c'; then $(CYGPATH_W) 'frexp.c'; else $(CYGPATH_W) '$(srcdir)/frexp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-frexp.Tpo $(DEPDIR)/libgzip_a-frexp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='frexp.c' object='libgzip_a-frexp.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-frexp.obj `if test -f 'frexp.c'; then $(CYGPATH_W) 'frexp.c'; else $(CYGPATH_W) '$(srcdir)/frexp.c'; fi` + +libgzip_a-frexpl.o: frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-frexpl.o -MD -MP -MF $(DEPDIR)/libgzip_a-frexpl.Tpo -c -o libgzip_a-frexpl.o `test -f 'frexpl.c' || echo '$(srcdir)/'`frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-frexpl.Tpo $(DEPDIR)/libgzip_a-frexpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='frexpl.c' object='libgzip_a-frexpl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-frexpl.o `test -f 'frexpl.c' || echo '$(srcdir)/'`frexpl.c + +libgzip_a-frexpl.obj: frexpl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-frexpl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-frexpl.Tpo -c -o libgzip_a-frexpl.obj `if test -f 'frexpl.c'; then $(CYGPATH_W) 'frexpl.c'; else $(CYGPATH_W) '$(srcdir)/frexpl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-frexpl.Tpo $(DEPDIR)/libgzip_a-frexpl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='frexpl.c' object='libgzip_a-frexpl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-frexpl.obj `if test -f 'frexpl.c'; then $(CYGPATH_W) 'frexpl.c'; else $(CYGPATH_W) '$(srcdir)/frexpl.c'; fi` + +libgzip_a-stat-w32.o: stat-w32.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat-w32.o -MD -MP -MF $(DEPDIR)/libgzip_a-stat-w32.Tpo -c -o libgzip_a-stat-w32.o `test -f 'stat-w32.c' || echo '$(srcdir)/'`stat-w32.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat-w32.Tpo $(DEPDIR)/libgzip_a-stat-w32.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat-w32.c' object='libgzip_a-stat-w32.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat-w32.o `test -f 'stat-w32.c' || echo '$(srcdir)/'`stat-w32.c + +libgzip_a-stat-w32.obj: stat-w32.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-stat-w32.obj -MD -MP -MF $(DEPDIR)/libgzip_a-stat-w32.Tpo -c -o libgzip_a-stat-w32.obj `if test -f 'stat-w32.c'; then $(CYGPATH_W) 'stat-w32.c'; else $(CYGPATH_W) '$(srcdir)/stat-w32.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-stat-w32.Tpo $(DEPDIR)/libgzip_a-stat-w32.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='stat-w32.c' object='libgzip_a-stat-w32.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-stat-w32.obj `if test -f 'stat-w32.c'; then $(CYGPATH_W) 'stat-w32.c'; else $(CYGPATH_W) '$(srcdir)/stat-w32.c'; fi` + +libgzip_a-isnan.o: isnan.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnan.o -MD -MP -MF $(DEPDIR)/libgzip_a-isnan.Tpo -c -o libgzip_a-isnan.o `test -f 'isnan.c' || echo '$(srcdir)/'`isnan.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnan.Tpo $(DEPDIR)/libgzip_a-isnan.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnan.c' object='libgzip_a-isnan.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnan.o `test -f 'isnan.c' || echo '$(srcdir)/'`isnan.c + +libgzip_a-isnan.obj: isnan.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnan.obj -MD -MP -MF $(DEPDIR)/libgzip_a-isnan.Tpo -c -o libgzip_a-isnan.obj `if test -f 'isnan.c'; then $(CYGPATH_W) 'isnan.c'; else $(CYGPATH_W) '$(srcdir)/isnan.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnan.Tpo $(DEPDIR)/libgzip_a-isnan.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnan.c' object='libgzip_a-isnan.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnan.obj `if test -f 'isnan.c'; then $(CYGPATH_W) 'isnan.c'; else $(CYGPATH_W) '$(srcdir)/isnan.c'; fi` + +libgzip_a-isnand.o: isnand.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnand.o -MD -MP -MF $(DEPDIR)/libgzip_a-isnand.Tpo -c -o libgzip_a-isnand.o `test -f 'isnand.c' || echo '$(srcdir)/'`isnand.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnand.Tpo $(DEPDIR)/libgzip_a-isnand.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnand.c' object='libgzip_a-isnand.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnand.o `test -f 'isnand.c' || echo '$(srcdir)/'`isnand.c + +libgzip_a-isnand.obj: isnand.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnand.obj -MD -MP -MF $(DEPDIR)/libgzip_a-isnand.Tpo -c -o libgzip_a-isnand.obj `if test -f 'isnand.c'; then $(CYGPATH_W) 'isnand.c'; else $(CYGPATH_W) '$(srcdir)/isnand.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnand.Tpo $(DEPDIR)/libgzip_a-isnand.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnand.c' object='libgzip_a-isnand.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnand.obj `if test -f 'isnand.c'; then $(CYGPATH_W) 'isnand.c'; else $(CYGPATH_W) '$(srcdir)/isnand.c'; fi` + +libgzip_a-isnanf.o: isnanf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnanf.o -MD -MP -MF $(DEPDIR)/libgzip_a-isnanf.Tpo -c -o libgzip_a-isnanf.o `test -f 'isnanf.c' || echo '$(srcdir)/'`isnanf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnanf.Tpo $(DEPDIR)/libgzip_a-isnanf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnanf.c' object='libgzip_a-isnanf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnanf.o `test -f 'isnanf.c' || echo '$(srcdir)/'`isnanf.c + +libgzip_a-isnanf.obj: isnanf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnanf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-isnanf.Tpo -c -o libgzip_a-isnanf.obj `if test -f 'isnanf.c'; then $(CYGPATH_W) 'isnanf.c'; else $(CYGPATH_W) '$(srcdir)/isnanf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnanf.Tpo $(DEPDIR)/libgzip_a-isnanf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnanf.c' object='libgzip_a-isnanf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnanf.obj `if test -f 'isnanf.c'; then $(CYGPATH_W) 'isnanf.c'; else $(CYGPATH_W) '$(srcdir)/isnanf.c'; fi` + +libgzip_a-isnanl.o: isnanl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnanl.o -MD -MP -MF $(DEPDIR)/libgzip_a-isnanl.Tpo -c -o libgzip_a-isnanl.o `test -f 'isnanl.c' || echo '$(srcdir)/'`isnanl.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnanl.Tpo $(DEPDIR)/libgzip_a-isnanl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnanl.c' object='libgzip_a-isnanl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnanl.o `test -f 'isnanl.c' || echo '$(srcdir)/'`isnanl.c + +libgzip_a-isnanl.obj: isnanl.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-isnanl.obj -MD -MP -MF $(DEPDIR)/libgzip_a-isnanl.Tpo -c -o libgzip_a-isnanl.obj `if test -f 'isnanl.c'; then $(CYGPATH_W) 'isnanl.c'; else $(CYGPATH_W) '$(srcdir)/isnanl.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-isnanl.Tpo $(DEPDIR)/libgzip_a-isnanl.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='isnanl.c' object='libgzip_a-isnanl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-isnanl.obj `if test -f 'isnanl.c'; then $(CYGPATH_W) 'isnanl.c'; else $(CYGPATH_W) '$(srcdir)/isnanl.c'; fi` + +libgzip_a-malloc.o: malloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-malloc.o -MD -MP -MF $(DEPDIR)/libgzip_a-malloc.Tpo -c -o libgzip_a-malloc.o `test -f 'malloc.c' || echo '$(srcdir)/'`malloc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-malloc.Tpo $(DEPDIR)/libgzip_a-malloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='malloc.c' object='libgzip_a-malloc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-malloc.o `test -f 'malloc.c' || echo '$(srcdir)/'`malloc.c + +libgzip_a-malloc.obj: malloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-malloc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-malloc.Tpo -c -o libgzip_a-malloc.obj `if test -f 'malloc.c'; then $(CYGPATH_W) 'malloc.c'; else $(CYGPATH_W) '$(srcdir)/malloc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-malloc.Tpo $(DEPDIR)/libgzip_a-malloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='malloc.c' object='libgzip_a-malloc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-malloc.obj `if test -f 'malloc.c'; then $(CYGPATH_W) 'malloc.c'; else $(CYGPATH_W) '$(srcdir)/malloc.c'; fi` + +libgzip_a-printf.o: printf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf.o -MD -MP -MF $(DEPDIR)/libgzip_a-printf.Tpo -c -o libgzip_a-printf.o `test -f 'printf.c' || echo '$(srcdir)/'`printf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf.Tpo $(DEPDIR)/libgzip_a-printf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf.c' object='libgzip_a-printf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf.o `test -f 'printf.c' || echo '$(srcdir)/'`printf.c + +libgzip_a-printf.obj: printf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-printf.Tpo -c -o libgzip_a-printf.obj `if test -f 'printf.c'; then $(CYGPATH_W) 'printf.c'; else $(CYGPATH_W) '$(srcdir)/printf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf.Tpo $(DEPDIR)/libgzip_a-printf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf.c' object='libgzip_a-printf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf.obj `if test -f 'printf.c'; then $(CYGPATH_W) 'printf.c'; else $(CYGPATH_W) '$(srcdir)/printf.c'; fi` + +libgzip_a-realloc.o: realloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-realloc.o -MD -MP -MF $(DEPDIR)/libgzip_a-realloc.Tpo -c -o libgzip_a-realloc.o `test -f 'realloc.c' || echo '$(srcdir)/'`realloc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-realloc.Tpo $(DEPDIR)/libgzip_a-realloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realloc.c' object='libgzip_a-realloc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-realloc.o `test -f 'realloc.c' || echo '$(srcdir)/'`realloc.c + +libgzip_a-realloc.obj: realloc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-realloc.obj -MD -MP -MF $(DEPDIR)/libgzip_a-realloc.Tpo -c -o libgzip_a-realloc.obj `if test -f 'realloc.c'; then $(CYGPATH_W) 'realloc.c'; else $(CYGPATH_W) '$(srcdir)/realloc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-realloc.Tpo $(DEPDIR)/libgzip_a-realloc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realloc.c' object='libgzip_a-realloc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-realloc.obj `if test -f 'realloc.c'; then $(CYGPATH_W) 'realloc.c'; else $(CYGPATH_W) '$(srcdir)/realloc.c'; fi` + +libgzip_a-strerror_r.o: strerror_r.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror_r.o -MD -MP -MF $(DEPDIR)/libgzip_a-strerror_r.Tpo -c -o libgzip_a-strerror_r.o `test -f 'strerror_r.c' || echo '$(srcdir)/'`strerror_r.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror_r.Tpo $(DEPDIR)/libgzip_a-strerror_r.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror_r.c' object='libgzip_a-strerror_r.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror_r.o `test -f 'strerror_r.c' || echo '$(srcdir)/'`strerror_r.c + +libgzip_a-strerror_r.obj: strerror_r.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-strerror_r.obj -MD -MP -MF $(DEPDIR)/libgzip_a-strerror_r.Tpo -c -o libgzip_a-strerror_r.obj `if test -f 'strerror_r.c'; then $(CYGPATH_W) 'strerror_r.c'; else $(CYGPATH_W) '$(srcdir)/strerror_r.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-strerror_r.Tpo $(DEPDIR)/libgzip_a-strerror_r.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='strerror_r.c' object='libgzip_a-strerror_r.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-strerror_r.obj `if test -f 'strerror_r.c'; then $(CYGPATH_W) 'strerror_r.c'; else $(CYGPATH_W) '$(srcdir)/strerror_r.c'; fi` + +libgzip_a-at-func.o: at-func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-at-func.o -MD -MP -MF $(DEPDIR)/libgzip_a-at-func.Tpo -c -o libgzip_a-at-func.o `test -f 'at-func.c' || echo '$(srcdir)/'`at-func.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-at-func.Tpo $(DEPDIR)/libgzip_a-at-func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='at-func.c' object='libgzip_a-at-func.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-at-func.o `test -f 'at-func.c' || echo '$(srcdir)/'`at-func.c + +libgzip_a-at-func.obj: at-func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-at-func.obj -MD -MP -MF $(DEPDIR)/libgzip_a-at-func.Tpo -c -o libgzip_a-at-func.obj `if test -f 'at-func.c'; then $(CYGPATH_W) 'at-func.c'; else $(CYGPATH_W) '$(srcdir)/at-func.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-at-func.Tpo $(DEPDIR)/libgzip_a-at-func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='at-func.c' object='libgzip_a-at-func.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-at-func.obj `if test -f 'at-func.c'; then $(CYGPATH_W) 'at-func.c'; else $(CYGPATH_W) '$(srcdir)/at-func.c'; fi` + +libgzip_a-asnprintf.o: asnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-asnprintf.o -MD -MP -MF $(DEPDIR)/libgzip_a-asnprintf.Tpo -c -o libgzip_a-asnprintf.o `test -f 'asnprintf.c' || echo '$(srcdir)/'`asnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-asnprintf.Tpo $(DEPDIR)/libgzip_a-asnprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='asnprintf.c' object='libgzip_a-asnprintf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-asnprintf.o `test -f 'asnprintf.c' || echo '$(srcdir)/'`asnprintf.c + +libgzip_a-asnprintf.obj: asnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-asnprintf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-asnprintf.Tpo -c -o libgzip_a-asnprintf.obj `if test -f 'asnprintf.c'; then $(CYGPATH_W) 'asnprintf.c'; else $(CYGPATH_W) '$(srcdir)/asnprintf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-asnprintf.Tpo $(DEPDIR)/libgzip_a-asnprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='asnprintf.c' object='libgzip_a-asnprintf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-asnprintf.obj `if test -f 'asnprintf.c'; then $(CYGPATH_W) 'asnprintf.c'; else $(CYGPATH_W) '$(srcdir)/asnprintf.c'; fi` + +libgzip_a-printf-args.o: printf-args.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-args.o -MD -MP -MF $(DEPDIR)/libgzip_a-printf-args.Tpo -c -o libgzip_a-printf-args.o `test -f 'printf-args.c' || echo '$(srcdir)/'`printf-args.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-args.Tpo $(DEPDIR)/libgzip_a-printf-args.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-args.c' object='libgzip_a-printf-args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-args.o `test -f 'printf-args.c' || echo '$(srcdir)/'`printf-args.c + +libgzip_a-printf-args.obj: printf-args.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-args.obj -MD -MP -MF $(DEPDIR)/libgzip_a-printf-args.Tpo -c -o libgzip_a-printf-args.obj `if test -f 'printf-args.c'; then $(CYGPATH_W) 'printf-args.c'; else $(CYGPATH_W) '$(srcdir)/printf-args.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-args.Tpo $(DEPDIR)/libgzip_a-printf-args.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-args.c' object='libgzip_a-printf-args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-args.obj `if test -f 'printf-args.c'; then $(CYGPATH_W) 'printf-args.c'; else $(CYGPATH_W) '$(srcdir)/printf-args.c'; fi` + +libgzip_a-printf-parse.o: printf-parse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-parse.o -MD -MP -MF $(DEPDIR)/libgzip_a-printf-parse.Tpo -c -o libgzip_a-printf-parse.o `test -f 'printf-parse.c' || echo '$(srcdir)/'`printf-parse.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-parse.Tpo $(DEPDIR)/libgzip_a-printf-parse.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-parse.c' object='libgzip_a-printf-parse.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-parse.o `test -f 'printf-parse.c' || echo '$(srcdir)/'`printf-parse.c + +libgzip_a-printf-parse.obj: printf-parse.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-printf-parse.obj -MD -MP -MF $(DEPDIR)/libgzip_a-printf-parse.Tpo -c -o libgzip_a-printf-parse.obj `if test -f 'printf-parse.c'; then $(CYGPATH_W) 'printf-parse.c'; else $(CYGPATH_W) '$(srcdir)/printf-parse.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-printf-parse.Tpo $(DEPDIR)/libgzip_a-printf-parse.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='printf-parse.c' object='libgzip_a-printf-parse.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-printf-parse.obj `if test -f 'printf-parse.c'; then $(CYGPATH_W) 'printf-parse.c'; else $(CYGPATH_W) '$(srcdir)/printf-parse.c'; fi` + +libgzip_a-vasnprintf.o: vasnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-vasnprintf.o -MD -MP -MF $(DEPDIR)/libgzip_a-vasnprintf.Tpo -c -o libgzip_a-vasnprintf.o `test -f 'vasnprintf.c' || echo '$(srcdir)/'`vasnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-vasnprintf.Tpo $(DEPDIR)/libgzip_a-vasnprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vasnprintf.c' object='libgzip_a-vasnprintf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-vasnprintf.o `test -f 'vasnprintf.c' || echo '$(srcdir)/'`vasnprintf.c + +libgzip_a-vasnprintf.obj: vasnprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-vasnprintf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-vasnprintf.Tpo -c -o libgzip_a-vasnprintf.obj `if test -f 'vasnprintf.c'; then $(CYGPATH_W) 'vasnprintf.c'; else $(CYGPATH_W) '$(srcdir)/vasnprintf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-vasnprintf.Tpo $(DEPDIR)/libgzip_a-vasnprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vasnprintf.c' object='libgzip_a-vasnprintf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-vasnprintf.obj `if test -f 'vasnprintf.c'; then $(CYGPATH_W) 'vasnprintf.c'; else $(CYGPATH_W) '$(srcdir)/vasnprintf.c'; fi` + +libgzip_a-vfprintf.o: vfprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-vfprintf.o -MD -MP -MF $(DEPDIR)/libgzip_a-vfprintf.Tpo -c -o libgzip_a-vfprintf.o `test -f 'vfprintf.c' || echo '$(srcdir)/'`vfprintf.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-vfprintf.Tpo $(DEPDIR)/libgzip_a-vfprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vfprintf.c' object='libgzip_a-vfprintf.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-vfprintf.o `test -f 'vfprintf.c' || echo '$(srcdir)/'`vfprintf.c + +libgzip_a-vfprintf.obj: vfprintf.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -MT libgzip_a-vfprintf.obj -MD -MP -MF $(DEPDIR)/libgzip_a-vfprintf.Tpo -c -o libgzip_a-vfprintf.obj `if test -f 'vfprintf.c'; then $(CYGPATH_W) 'vfprintf.c'; else $(CYGPATH_W) '$(srcdir)/vfprintf.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgzip_a-vfprintf.Tpo $(DEPDIR)/libgzip_a-vfprintf.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='vfprintf.c' object='libgzip_a-vfprintf.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgzip_a_CFLAGS) $(CFLAGS) -c -o libgzip_a-vfprintf.obj `if test -f 'vfprintf.c'; then $(CYGPATH_W) 'vfprintf.c'; else $(CYGPATH_W) '$(srcdir)/vfprintf.c'; fi` + ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am @@ -2167,128 +4158,128 @@ distclean: distclean-am -rm -f $(DEPDIR)/match.Po - -rm -f ./$(DEPDIR)/asnprintf.Po - -rm -f ./$(DEPDIR)/at-func.Po - -rm -f ./$(DEPDIR)/basename-lgpl.Po - -rm -f ./$(DEPDIR)/calloc.Po - -rm -f ./$(DEPDIR)/chdir-long.Po - -rm -f ./$(DEPDIR)/cloexec.Po - -rm -f ./$(DEPDIR)/close.Po - -rm -f ./$(DEPDIR)/closedir.Po - -rm -f ./$(DEPDIR)/creat-safer.Po - -rm -f ./$(DEPDIR)/dirfd.Po - -rm -f ./$(DEPDIR)/dirname-lgpl.Po - -rm -f ./$(DEPDIR)/dup-safer-flag.Po - -rm -f ./$(DEPDIR)/dup-safer.Po - -rm -f ./$(DEPDIR)/dup.Po - -rm -f ./$(DEPDIR)/dup2.Po - -rm -f ./$(DEPDIR)/error.Po - -rm -f ./$(DEPDIR)/exitfail.Po - -rm -f ./$(DEPDIR)/fchdir.Po - -rm -f ./$(DEPDIR)/fclose.Po - -rm -f ./$(DEPDIR)/fcntl.Po - -rm -f ./$(DEPDIR)/fd-hook.Po - -rm -f ./$(DEPDIR)/fd-safer-flag.Po - -rm -f ./$(DEPDIR)/fd-safer.Po - -rm -f ./$(DEPDIR)/fdatasync.Po - -rm -f ./$(DEPDIR)/fdopendir.Po - -rm -f ./$(DEPDIR)/fflush.Po - -rm -f ./$(DEPDIR)/filenamecat-lgpl.Po - -rm -f ./$(DEPDIR)/float.Po - -rm -f ./$(DEPDIR)/fprintf.Po - -rm -f ./$(DEPDIR)/fpurge.Po - -rm -f ./$(DEPDIR)/freading.Po - -rm -f ./$(DEPDIR)/free.Po - -rm -f ./$(DEPDIR)/frexp.Po - -rm -f ./$(DEPDIR)/frexpl.Po - -rm -f ./$(DEPDIR)/fseek.Po - -rm -f ./$(DEPDIR)/fseeko.Po - -rm -f ./$(DEPDIR)/fseterr.Po - -rm -f ./$(DEPDIR)/fstat.Po - -rm -f ./$(DEPDIR)/fstatat.Po - -rm -f ./$(DEPDIR)/fsync.Po - -rm -f ./$(DEPDIR)/ftell.Po - -rm -f ./$(DEPDIR)/ftello.Po - -rm -f ./$(DEPDIR)/getcwd-lgpl.Po - -rm -f ./$(DEPDIR)/getdtablesize.Po - -rm -f ./$(DEPDIR)/getopt.Po - -rm -f ./$(DEPDIR)/getopt1.Po - -rm -f ./$(DEPDIR)/getprogname.Po - -rm -f ./$(DEPDIR)/gettime.Po - -rm -f ./$(DEPDIR)/gettimeofday.Po - -rm -f ./$(DEPDIR)/ialloc.Po - -rm -f ./$(DEPDIR)/isnan.Po - -rm -f ./$(DEPDIR)/isnand.Po - -rm -f ./$(DEPDIR)/isnanf.Po - -rm -f ./$(DEPDIR)/isnanl.Po - -rm -f ./$(DEPDIR)/itold.Po - -rm -f ./$(DEPDIR)/lseek.Po - -rm -f ./$(DEPDIR)/lstat.Po - -rm -f ./$(DEPDIR)/malloc.Po - -rm -f ./$(DEPDIR)/malloca.Po - -rm -f ./$(DEPDIR)/math.Po - -rm -f ./$(DEPDIR)/memchr.Po - -rm -f ./$(DEPDIR)/mempcpy.Po - -rm -f ./$(DEPDIR)/memrchr.Po - -rm -f ./$(DEPDIR)/msvc-inval.Po - -rm -f ./$(DEPDIR)/msvc-nothrow.Po - -rm -f ./$(DEPDIR)/open-safer.Po - -rm -f ./$(DEPDIR)/open.Po - -rm -f ./$(DEPDIR)/openat-die.Po - -rm -f ./$(DEPDIR)/openat-proc.Po - -rm -f ./$(DEPDIR)/openat-safer.Po - -rm -f ./$(DEPDIR)/openat.Po - -rm -f ./$(DEPDIR)/opendir-safer.Po - -rm -f ./$(DEPDIR)/opendir.Po - -rm -f ./$(DEPDIR)/perror.Po - -rm -f ./$(DEPDIR)/pipe-safer.Po - -rm -f ./$(DEPDIR)/pipe.Po - -rm -f ./$(DEPDIR)/printf-args.Po - -rm -f ./$(DEPDIR)/printf-frexp.Po - -rm -f ./$(DEPDIR)/printf-frexpl.Po - -rm -f ./$(DEPDIR)/printf-parse.Po - -rm -f ./$(DEPDIR)/printf.Po - -rm -f ./$(DEPDIR)/raise.Po - -rm -f ./$(DEPDIR)/readdir.Po - -rm -f ./$(DEPDIR)/realloc.Po - -rm -f ./$(DEPDIR)/reallocarray.Po - -rm -f ./$(DEPDIR)/rmdir.Po - -rm -f ./$(DEPDIR)/save-cwd.Po - -rm -f ./$(DEPDIR)/savedir.Po - -rm -f ./$(DEPDIR)/sig-handler.Po - -rm -f ./$(DEPDIR)/sigaction.Po - -rm -f ./$(DEPDIR)/signbitd.Po - -rm -f ./$(DEPDIR)/signbitf.Po - -rm -f ./$(DEPDIR)/signbitl.Po - -rm -f ./$(DEPDIR)/sigprocmask.Po - -rm -f ./$(DEPDIR)/stat-time.Po - -rm -f ./$(DEPDIR)/stat-w32.Po - -rm -f ./$(DEPDIR)/stat.Po - -rm -f ./$(DEPDIR)/statat.Po - -rm -f ./$(DEPDIR)/stpcpy.Po - -rm -f ./$(DEPDIR)/strdup.Po - -rm -f ./$(DEPDIR)/strerror-override.Po - -rm -f ./$(DEPDIR)/strerror.Po - -rm -f ./$(DEPDIR)/strerror_r.Po - -rm -f ./$(DEPDIR)/stripslash.Po - -rm -f ./$(DEPDIR)/timespec.Po - -rm -f ./$(DEPDIR)/unistd.Po - -rm -f ./$(DEPDIR)/unlink.Po - -rm -f ./$(DEPDIR)/unlinkat.Po - -rm -f ./$(DEPDIR)/utime.Po - -rm -f ./$(DEPDIR)/utimens.Po - -rm -f ./$(DEPDIR)/vasnprintf.Po - -rm -f ./$(DEPDIR)/vfprintf.Po - -rm -f ./$(DEPDIR)/windows-mutex.Po - -rm -f ./$(DEPDIR)/windows-once.Po - -rm -f ./$(DEPDIR)/windows-recmutex.Po - -rm -f ./$(DEPDIR)/windows-rwlock.Po - -rm -f ./$(DEPDIR)/xalloc-die.Po - -rm -f ./$(DEPDIR)/xmalloc.Po - -rm -f ./$(DEPDIR)/xsize.Po - -rm -f ./$(DEPDIR)/yesno.Po - -rm -f glthread/$(DEPDIR)/lock.Po - -rm -f glthread/$(DEPDIR)/threadlib.Po + -rm -f ./$(DEPDIR)/libgzip_a-asnprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-at-func.Po + -rm -f ./$(DEPDIR)/libgzip_a-basename-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-calloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-chdir-long.Po + -rm -f ./$(DEPDIR)/libgzip_a-cloexec.Po + -rm -f ./$(DEPDIR)/libgzip_a-close.Po + -rm -f ./$(DEPDIR)/libgzip_a-closedir.Po + -rm -f ./$(DEPDIR)/libgzip_a-creat-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-dirfd.Po + -rm -f ./$(DEPDIR)/libgzip_a-dirname-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup-safer-flag.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup2.Po + -rm -f ./$(DEPDIR)/libgzip_a-error.Po + -rm -f ./$(DEPDIR)/libgzip_a-exitfail.Po + -rm -f ./$(DEPDIR)/libgzip_a-fchdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-fclose.Po + -rm -f ./$(DEPDIR)/libgzip_a-fcntl.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-hook.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-safer-flag.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-fdatasync.Po + -rm -f ./$(DEPDIR)/libgzip_a-fdopendir.Po + -rm -f ./$(DEPDIR)/libgzip_a-fflush.Po + -rm -f ./$(DEPDIR)/libgzip_a-filenamecat-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-float.Po + -rm -f ./$(DEPDIR)/libgzip_a-fprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-fpurge.Po + -rm -f ./$(DEPDIR)/libgzip_a-freading.Po + -rm -f ./$(DEPDIR)/libgzip_a-free.Po + -rm -f ./$(DEPDIR)/libgzip_a-frexp.Po + -rm -f ./$(DEPDIR)/libgzip_a-frexpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseek.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseeko.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseterr.Po + -rm -f ./$(DEPDIR)/libgzip_a-fstat.Po + -rm -f ./$(DEPDIR)/libgzip_a-fsync.Po + -rm -f ./$(DEPDIR)/libgzip_a-ftell.Po + -rm -f ./$(DEPDIR)/libgzip_a-ftello.Po + -rm -f ./$(DEPDIR)/libgzip_a-getcwd-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-getdtablesize.Po + -rm -f ./$(DEPDIR)/libgzip_a-getopt.Po + -rm -f ./$(DEPDIR)/libgzip_a-getopt1.Po + -rm -f ./$(DEPDIR)/libgzip_a-getprogname.Po + -rm -f ./$(DEPDIR)/libgzip_a-gettime.Po + -rm -f ./$(DEPDIR)/libgzip_a-gettimeofday.Po + -rm -f ./$(DEPDIR)/libgzip_a-ialloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnan.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnand.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnanf.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnanl.Po + -rm -f ./$(DEPDIR)/libgzip_a-itold.Po + -rm -f ./$(DEPDIR)/libgzip_a-lseek.Po + -rm -f ./$(DEPDIR)/libgzip_a-lstat.Po + -rm -f ./$(DEPDIR)/libgzip_a-malloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-malloca.Po + -rm -f ./$(DEPDIR)/libgzip_a-math.Po + -rm -f ./$(DEPDIR)/libgzip_a-memchr.Po + -rm -f ./$(DEPDIR)/libgzip_a-mempcpy.Po + -rm -f ./$(DEPDIR)/libgzip_a-memrchr.Po + -rm -f ./$(DEPDIR)/libgzip_a-msvc-inval.Po + -rm -f ./$(DEPDIR)/libgzip_a-msvc-nothrow.Po + -rm -f ./$(DEPDIR)/libgzip_a-open-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-open.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-die.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-proc.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat.Po + -rm -f ./$(DEPDIR)/libgzip_a-opendir-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-opendir.Po + -rm -f ./$(DEPDIR)/libgzip_a-perror.Po + -rm -f ./$(DEPDIR)/libgzip_a-pipe-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-pipe.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-args.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-frexp.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-frexpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-parse.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf.Po + -rm -f ./$(DEPDIR)/libgzip_a-raise.Po + -rm -f ./$(DEPDIR)/libgzip_a-readdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-realloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-reallocarray.Po + -rm -f ./$(DEPDIR)/libgzip_a-rmdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-save-cwd.Po + -rm -f ./$(DEPDIR)/libgzip_a-savedir.Po + -rm -f ./$(DEPDIR)/libgzip_a-sig-handler.Po + -rm -f ./$(DEPDIR)/libgzip_a-sigaction.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitd.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitf.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitl.Po + -rm -f ./$(DEPDIR)/libgzip_a-sigprocmask.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat-time.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat-w32.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat.Po + -rm -f ./$(DEPDIR)/libgzip_a-stdio-read.Po + -rm -f ./$(DEPDIR)/libgzip_a-stdio-write.Po + -rm -f ./$(DEPDIR)/libgzip_a-stpcpy.Po + -rm -f ./$(DEPDIR)/libgzip_a-strdup.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror-override.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror_r.Po + -rm -f ./$(DEPDIR)/libgzip_a-stripslash.Po + -rm -f ./$(DEPDIR)/libgzip_a-timespec.Po + -rm -f ./$(DEPDIR)/libgzip_a-unistd.Po + -rm -f ./$(DEPDIR)/libgzip_a-unlink.Po + -rm -f ./$(DEPDIR)/libgzip_a-unlinkat.Po + -rm -f ./$(DEPDIR)/libgzip_a-utime.Po + -rm -f ./$(DEPDIR)/libgzip_a-utimens.Po + -rm -f ./$(DEPDIR)/libgzip_a-vasnprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-vfprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-mutex.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-once.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-recmutex.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-rwlock.Po + -rm -f ./$(DEPDIR)/libgzip_a-xalloc-die.Po + -rm -f ./$(DEPDIR)/libgzip_a-xmalloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-xsize.Po + -rm -f ./$(DEPDIR)/libgzip_a-yesno.Po + -rm -f glthread/$(DEPDIR)/libgzip_a-lock.Po + -rm -f glthread/$(DEPDIR)/libgzip_a-threadlib.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-local distclean-tags @@ -2335,130 +4326,131 @@ maintainer-clean: maintainer-clean-am -rm -f $(DEPDIR)/match.Po - -rm -f ./$(DEPDIR)/asnprintf.Po - -rm -f ./$(DEPDIR)/at-func.Po - -rm -f ./$(DEPDIR)/basename-lgpl.Po - -rm -f ./$(DEPDIR)/calloc.Po - -rm -f ./$(DEPDIR)/chdir-long.Po - -rm -f ./$(DEPDIR)/cloexec.Po - -rm -f ./$(DEPDIR)/close.Po - -rm -f ./$(DEPDIR)/closedir.Po - -rm -f ./$(DEPDIR)/creat-safer.Po - -rm -f ./$(DEPDIR)/dirfd.Po - -rm -f ./$(DEPDIR)/dirname-lgpl.Po - -rm -f ./$(DEPDIR)/dup-safer-flag.Po - -rm -f ./$(DEPDIR)/dup-safer.Po - -rm -f ./$(DEPDIR)/dup.Po - -rm -f ./$(DEPDIR)/dup2.Po - -rm -f ./$(DEPDIR)/error.Po - -rm -f ./$(DEPDIR)/exitfail.Po - -rm -f ./$(DEPDIR)/fchdir.Po - -rm -f ./$(DEPDIR)/fclose.Po - -rm -f ./$(DEPDIR)/fcntl.Po - -rm -f ./$(DEPDIR)/fd-hook.Po - -rm -f ./$(DEPDIR)/fd-safer-flag.Po - -rm -f ./$(DEPDIR)/fd-safer.Po - -rm -f ./$(DEPDIR)/fdatasync.Po - -rm -f ./$(DEPDIR)/fdopendir.Po - -rm -f ./$(DEPDIR)/fflush.Po - -rm -f ./$(DEPDIR)/filenamecat-lgpl.Po - -rm -f ./$(DEPDIR)/float.Po - -rm -f ./$(DEPDIR)/fprintf.Po - -rm -f ./$(DEPDIR)/fpurge.Po - -rm -f ./$(DEPDIR)/freading.Po - -rm -f ./$(DEPDIR)/free.Po - -rm -f ./$(DEPDIR)/frexp.Po - -rm -f ./$(DEPDIR)/frexpl.Po - -rm -f ./$(DEPDIR)/fseek.Po - -rm -f ./$(DEPDIR)/fseeko.Po - -rm -f ./$(DEPDIR)/fseterr.Po - -rm -f ./$(DEPDIR)/fstat.Po - -rm -f ./$(DEPDIR)/fstatat.Po - -rm -f ./$(DEPDIR)/fsync.Po - -rm -f ./$(DEPDIR)/ftell.Po - -rm -f ./$(DEPDIR)/ftello.Po - -rm -f ./$(DEPDIR)/getcwd-lgpl.Po - -rm -f ./$(DEPDIR)/getdtablesize.Po - -rm -f ./$(DEPDIR)/getopt.Po - -rm -f ./$(DEPDIR)/getopt1.Po - -rm -f ./$(DEPDIR)/getprogname.Po - -rm -f ./$(DEPDIR)/gettime.Po - -rm -f ./$(DEPDIR)/gettimeofday.Po - -rm -f ./$(DEPDIR)/ialloc.Po - -rm -f ./$(DEPDIR)/isnan.Po - -rm -f ./$(DEPDIR)/isnand.Po - -rm -f ./$(DEPDIR)/isnanf.Po - -rm -f ./$(DEPDIR)/isnanl.Po - -rm -f ./$(DEPDIR)/itold.Po - -rm -f ./$(DEPDIR)/lseek.Po - -rm -f ./$(DEPDIR)/lstat.Po - -rm -f ./$(DEPDIR)/malloc.Po - -rm -f ./$(DEPDIR)/malloca.Po - -rm -f ./$(DEPDIR)/math.Po - -rm -f ./$(DEPDIR)/memchr.Po - -rm -f ./$(DEPDIR)/mempcpy.Po - -rm -f ./$(DEPDIR)/memrchr.Po - -rm -f ./$(DEPDIR)/msvc-inval.Po - -rm -f ./$(DEPDIR)/msvc-nothrow.Po - -rm -f ./$(DEPDIR)/open-safer.Po - -rm -f ./$(DEPDIR)/open.Po - -rm -f ./$(DEPDIR)/openat-die.Po - -rm -f ./$(DEPDIR)/openat-proc.Po - -rm -f ./$(DEPDIR)/openat-safer.Po - -rm -f ./$(DEPDIR)/openat.Po - -rm -f ./$(DEPDIR)/opendir-safer.Po - -rm -f ./$(DEPDIR)/opendir.Po - -rm -f ./$(DEPDIR)/perror.Po - -rm -f ./$(DEPDIR)/pipe-safer.Po - -rm -f ./$(DEPDIR)/pipe.Po - -rm -f ./$(DEPDIR)/printf-args.Po - -rm -f ./$(DEPDIR)/printf-frexp.Po - -rm -f ./$(DEPDIR)/printf-frexpl.Po - -rm -f ./$(DEPDIR)/printf-parse.Po - -rm -f ./$(DEPDIR)/printf.Po - -rm -f ./$(DEPDIR)/raise.Po - -rm -f ./$(DEPDIR)/readdir.Po - -rm -f ./$(DEPDIR)/realloc.Po - -rm -f ./$(DEPDIR)/reallocarray.Po - -rm -f ./$(DEPDIR)/rmdir.Po - -rm -f ./$(DEPDIR)/save-cwd.Po - -rm -f ./$(DEPDIR)/savedir.Po - -rm -f ./$(DEPDIR)/sig-handler.Po - -rm -f ./$(DEPDIR)/sigaction.Po - -rm -f ./$(DEPDIR)/signbitd.Po - -rm -f ./$(DEPDIR)/signbitf.Po - -rm -f ./$(DEPDIR)/signbitl.Po - -rm -f ./$(DEPDIR)/sigprocmask.Po - -rm -f ./$(DEPDIR)/stat-time.Po - -rm -f ./$(DEPDIR)/stat-w32.Po - -rm -f ./$(DEPDIR)/stat.Po - -rm -f ./$(DEPDIR)/statat.Po - -rm -f ./$(DEPDIR)/stpcpy.Po - -rm -f ./$(DEPDIR)/strdup.Po - -rm -f ./$(DEPDIR)/strerror-override.Po - -rm -f ./$(DEPDIR)/strerror.Po - -rm -f ./$(DEPDIR)/strerror_r.Po - -rm -f ./$(DEPDIR)/stripslash.Po - -rm -f ./$(DEPDIR)/timespec.Po - -rm -f ./$(DEPDIR)/unistd.Po - -rm -f ./$(DEPDIR)/unlink.Po - -rm -f ./$(DEPDIR)/unlinkat.Po - -rm -f ./$(DEPDIR)/utime.Po - -rm -f ./$(DEPDIR)/utimens.Po - -rm -f ./$(DEPDIR)/vasnprintf.Po - -rm -f ./$(DEPDIR)/vfprintf.Po - -rm -f ./$(DEPDIR)/windows-mutex.Po - -rm -f ./$(DEPDIR)/windows-once.Po - -rm -f ./$(DEPDIR)/windows-recmutex.Po - -rm -f ./$(DEPDIR)/windows-rwlock.Po - -rm -f ./$(DEPDIR)/xalloc-die.Po - -rm -f ./$(DEPDIR)/xmalloc.Po - -rm -f ./$(DEPDIR)/xsize.Po - -rm -f ./$(DEPDIR)/yesno.Po - -rm -f glthread/$(DEPDIR)/lock.Po - -rm -f glthread/$(DEPDIR)/threadlib.Po + -rm -f ./$(DEPDIR)/libgzip_a-asnprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-at-func.Po + -rm -f ./$(DEPDIR)/libgzip_a-basename-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-calloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-chdir-long.Po + -rm -f ./$(DEPDIR)/libgzip_a-cloexec.Po + -rm -f ./$(DEPDIR)/libgzip_a-close.Po + -rm -f ./$(DEPDIR)/libgzip_a-closedir.Po + -rm -f ./$(DEPDIR)/libgzip_a-creat-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-dirfd.Po + -rm -f ./$(DEPDIR)/libgzip_a-dirname-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup-safer-flag.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup.Po + -rm -f ./$(DEPDIR)/libgzip_a-dup2.Po + -rm -f ./$(DEPDIR)/libgzip_a-error.Po + -rm -f ./$(DEPDIR)/libgzip_a-exitfail.Po + -rm -f ./$(DEPDIR)/libgzip_a-fchdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-fclose.Po + -rm -f ./$(DEPDIR)/libgzip_a-fcntl.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-hook.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-safer-flag.Po + -rm -f ./$(DEPDIR)/libgzip_a-fd-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-fdatasync.Po + -rm -f ./$(DEPDIR)/libgzip_a-fdopendir.Po + -rm -f ./$(DEPDIR)/libgzip_a-fflush.Po + -rm -f ./$(DEPDIR)/libgzip_a-filenamecat-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-float.Po + -rm -f ./$(DEPDIR)/libgzip_a-fprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-fpurge.Po + -rm -f ./$(DEPDIR)/libgzip_a-freading.Po + -rm -f ./$(DEPDIR)/libgzip_a-free.Po + -rm -f ./$(DEPDIR)/libgzip_a-frexp.Po + -rm -f ./$(DEPDIR)/libgzip_a-frexpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseek.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseeko.Po + -rm -f ./$(DEPDIR)/libgzip_a-fseterr.Po + -rm -f ./$(DEPDIR)/libgzip_a-fstat.Po + -rm -f ./$(DEPDIR)/libgzip_a-fsync.Po + -rm -f ./$(DEPDIR)/libgzip_a-ftell.Po + -rm -f ./$(DEPDIR)/libgzip_a-ftello.Po + -rm -f ./$(DEPDIR)/libgzip_a-getcwd-lgpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-getdtablesize.Po + -rm -f ./$(DEPDIR)/libgzip_a-getopt.Po + -rm -f ./$(DEPDIR)/libgzip_a-getopt1.Po + -rm -f ./$(DEPDIR)/libgzip_a-getprogname.Po + -rm -f ./$(DEPDIR)/libgzip_a-gettime.Po + -rm -f ./$(DEPDIR)/libgzip_a-gettimeofday.Po + -rm -f ./$(DEPDIR)/libgzip_a-ialloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnan.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnand.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnanf.Po + -rm -f ./$(DEPDIR)/libgzip_a-isnanl.Po + -rm -f ./$(DEPDIR)/libgzip_a-itold.Po + -rm -f ./$(DEPDIR)/libgzip_a-lseek.Po + -rm -f ./$(DEPDIR)/libgzip_a-lstat.Po + -rm -f ./$(DEPDIR)/libgzip_a-malloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-malloca.Po + -rm -f ./$(DEPDIR)/libgzip_a-math.Po + -rm -f ./$(DEPDIR)/libgzip_a-memchr.Po + -rm -f ./$(DEPDIR)/libgzip_a-mempcpy.Po + -rm -f ./$(DEPDIR)/libgzip_a-memrchr.Po + -rm -f ./$(DEPDIR)/libgzip_a-msvc-inval.Po + -rm -f ./$(DEPDIR)/libgzip_a-msvc-nothrow.Po + -rm -f ./$(DEPDIR)/libgzip_a-open-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-open.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-die.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-proc.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-openat.Po + -rm -f ./$(DEPDIR)/libgzip_a-opendir-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-opendir.Po + -rm -f ./$(DEPDIR)/libgzip_a-perror.Po + -rm -f ./$(DEPDIR)/libgzip_a-pipe-safer.Po + -rm -f ./$(DEPDIR)/libgzip_a-pipe.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-args.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-frexp.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-frexpl.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf-parse.Po + -rm -f ./$(DEPDIR)/libgzip_a-printf.Po + -rm -f ./$(DEPDIR)/libgzip_a-raise.Po + -rm -f ./$(DEPDIR)/libgzip_a-readdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-realloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-reallocarray.Po + -rm -f ./$(DEPDIR)/libgzip_a-rmdir.Po + -rm -f ./$(DEPDIR)/libgzip_a-save-cwd.Po + -rm -f ./$(DEPDIR)/libgzip_a-savedir.Po + -rm -f ./$(DEPDIR)/libgzip_a-sig-handler.Po + -rm -f ./$(DEPDIR)/libgzip_a-sigaction.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitd.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitf.Po + -rm -f ./$(DEPDIR)/libgzip_a-signbitl.Po + -rm -f ./$(DEPDIR)/libgzip_a-sigprocmask.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat-time.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat-w32.Po + -rm -f ./$(DEPDIR)/libgzip_a-stat.Po + -rm -f ./$(DEPDIR)/libgzip_a-stdio-read.Po + -rm -f ./$(DEPDIR)/libgzip_a-stdio-write.Po + -rm -f ./$(DEPDIR)/libgzip_a-stpcpy.Po + -rm -f ./$(DEPDIR)/libgzip_a-strdup.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror-override.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror.Po + -rm -f ./$(DEPDIR)/libgzip_a-strerror_r.Po + -rm -f ./$(DEPDIR)/libgzip_a-stripslash.Po + -rm -f ./$(DEPDIR)/libgzip_a-timespec.Po + -rm -f ./$(DEPDIR)/libgzip_a-unistd.Po + -rm -f ./$(DEPDIR)/libgzip_a-unlink.Po + -rm -f ./$(DEPDIR)/libgzip_a-unlinkat.Po + -rm -f ./$(DEPDIR)/libgzip_a-utime.Po + -rm -f ./$(DEPDIR)/libgzip_a-utimens.Po + -rm -f ./$(DEPDIR)/libgzip_a-vasnprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-vfprintf.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-mutex.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-once.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-recmutex.Po + -rm -f ./$(DEPDIR)/libgzip_a-windows-rwlock.Po + -rm -f ./$(DEPDIR)/libgzip_a-xalloc-die.Po + -rm -f ./$(DEPDIR)/libgzip_a-xmalloc.Po + -rm -f ./$(DEPDIR)/libgzip_a-xsize.Po + -rm -f ./$(DEPDIR)/libgzip_a-yesno.Po + -rm -f glthread/$(DEPDIR)/libgzip_a-lock.Po + -rm -f glthread/$(DEPDIR)/libgzip_a-threadlib.Po -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic +maintainer-clean-am: distclean-am maintainer-clean-generic \ + maintainer-clean-local mostlyclean: mostlyclean-am @@ -2487,9 +4479,9 @@ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-local pdf pdf-am ps ps-am tags \ - tags-am uninstall uninstall-am + maintainer-clean-generic maintainer-clean-local mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-local pdf \ + pdf-am ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile @@ -2497,20 +4489,18 @@ # We need the following in order to create <alloca.h> when the system # doesn't have one that works with the given compiler. @GL_GENERATE_ALLOCA_H_TRUE@alloca.h: alloca.in.h $(top_builddir)/config.status -@GL_GENERATE_ALLOCA_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_ALLOCA_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ -@GL_GENERATE_ALLOCA_H_TRUE@ sed -e 's|@''HAVE_ALLOCA_H''@|$(HAVE_ALLOCA_H)|g' < $(srcdir)/alloca.in.h; \ -@GL_GENERATE_ALLOCA_H_TRUE@ } > $@-t && \ -@GL_GENERATE_ALLOCA_H_TRUE@ mv -f $@-t $@ +@GL_GENERATE_ALLOCA_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_ALLOCA_H_TRUE@ -e 's|@''HAVE_ALLOCA_H''@|$(HAVE_ALLOCA_H)|g' \ +@GL_GENERATE_ALLOCA_H_TRUE@ $(srcdir)/alloca.in.h > $@-t +@GL_GENERATE_ALLOCA_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_ALLOCA_H_FALSE@alloca.h: $(top_builddir)/config.status @GL_GENERATE_ALLOCA_H_FALSE@ rm -f $@ # We need the following in order to create <dirent.h> when the system # doesn't have one that works with the given compiler. dirent.h: dirent.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_DIRENT_H''@|$(HAVE_DIRENT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -2540,16 +4530,14 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/dirent.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/dirent.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <errno.h> when the system # doesn't have one that is POSIX compliant. @GL_GENERATE_ERRNO_H_TRUE@errno.h: errno.in.h $(top_builddir)/config.status -@GL_GENERATE_ERRNO_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_ERRNO_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ -@GL_GENERATE_ERRNO_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_ERRNO_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2560,18 +4548,16 @@ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \ -@GL_GENERATE_ERRNO_H_TRUE@ < $(srcdir)/errno.in.h; \ -@GL_GENERATE_ERRNO_H_TRUE@ } > $@-t && \ -@GL_GENERATE_ERRNO_H_TRUE@ mv $@-t $@ +@GL_GENERATE_ERRNO_H_TRUE@ $(srcdir)/errno.in.h > $@-t +@GL_GENERATE_ERRNO_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_ERRNO_H_FALSE@errno.h: $(top_builddir)/config.status @GL_GENERATE_ERRNO_H_FALSE@ rm -f $@ # We need the following in order to create <fcntl.h> when the system # doesn't have one that works with the given compiler. fcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2592,50 +4578,47 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/fcntl.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/fcntl.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <float.h> when the system # doesn't have one that works with the given compiler. @GL_GENERATE_FLOAT_H_TRUE@float.h: float.in.h $(top_builddir)/config.status -@GL_GENERATE_FLOAT_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_FLOAT_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ -@GL_GENERATE_FLOAT_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_FLOAT_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''NEXT_FLOAT_H''@|$(NEXT_FLOAT_H)|g' \ @GL_GENERATE_FLOAT_H_TRUE@ -e 's|@''REPLACE_ITOLD''@|$(REPLACE_ITOLD)|g' \ -@GL_GENERATE_FLOAT_H_TRUE@ < $(srcdir)/float.in.h; \ -@GL_GENERATE_FLOAT_H_TRUE@ } > $@-t && \ -@GL_GENERATE_FLOAT_H_TRUE@ mv $@-t $@ +@GL_GENERATE_FLOAT_H_TRUE@ $(srcdir)/float.in.h > $@-t +@GL_GENERATE_FLOAT_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_FLOAT_H_FALSE@float.h: $(top_builddir)/config.status @GL_GENERATE_FLOAT_H_FALSE@ rm -f $@ # We need the following in order to create <getopt.h> when the system # doesn't have one that works with the given compiler. -getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ - -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ - -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ - -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ - -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ - -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ - -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - < $(srcdir)/getopt.in.h; \ - } > $@-t && \ - mv -f $@-t $@ - -getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \ - < $(srcdir)/getopt-cdefs.in.h; \ - } > $@-t && \ - mv -f $@-t $@ +@GL_GENERATE_GETOPT_H_TRUE@getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) +@GL_GENERATE_GETOPT_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ +@GL_GENERATE_GETOPT_H_TRUE@ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ +@GL_GENERATE_GETOPT_H_TRUE@ $(srcdir)/getopt.in.h > $@-t +@GL_GENERATE_GETOPT_H_TRUE@ $(AM_V_at)mv $@-t $@ +@GL_GENERATE_GETOPT_H_FALSE@getopt.h: $(top_builddir)/config.status +@GL_GENERATE_GETOPT_H_FALSE@ rm -f $@ + +@GL_GENERATE_GETOPT_CDEFS_H_TRUE@getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/config.status +@GL_GENERATE_GETOPT_CDEFS_H_TRUE@ $(AM_V_GEN)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_GETOPT_CDEFS_H_TRUE@ -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \ +@GL_GENERATE_GETOPT_CDEFS_H_TRUE@ $(srcdir)/getopt-cdefs.in.h > $@-t +@GL_GENERATE_GETOPT_CDEFS_H_TRUE@ $(AM_V_at)mv $@-t $@ +@GL_GENERATE_GETOPT_CDEFS_H_FALSE@getopt-cdefs.h: $(top_builddir)/config.status +@GL_GENERATE_GETOPT_CDEFS_H_FALSE@ rm -f $@ distclean-local: clean-GNUmakefile clean-GNUmakefile: test '$(srcdir)' = . || rm -f $(top_builddir)/GNUmakefile @@ -2643,9 +4626,8 @@ # We need the following in order to create <inttypes.h> when the system # doesn't have one that works with the given compiler. inttypes.h: inttypes.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H) $(ARG_NONNULL_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2670,32 +4652,28 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/inttypes.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/inttypes.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <limits.h> when the system # doesn't have one that is compatible with GNU. @GL_GENERATE_LIMITS_H_TRUE@limits.h: limits.in.h $(top_builddir)/config.status -@GL_GENERATE_LIMITS_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_LIMITS_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ -@GL_GENERATE_LIMITS_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_LIMITS_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_LIMITS_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_LIMITS_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_LIMITS_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_LIMITS_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_LIMITS_H_TRUE@ -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \ -@GL_GENERATE_LIMITS_H_TRUE@ < $(srcdir)/limits.in.h; \ -@GL_GENERATE_LIMITS_H_TRUE@ } > $@-t && \ -@GL_GENERATE_LIMITS_H_TRUE@ mv $@-t $@ +@GL_GENERATE_LIMITS_H_TRUE@ $(srcdir)/limits.in.h > $@-t +@GL_GENERATE_LIMITS_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_LIMITS_H_FALSE@limits.h: $(top_builddir)/config.status @GL_GENERATE_LIMITS_H_FALSE@ rm -f $@ # We need the following in order to create <math.h> when the system # doesn't have one that works with the given compiler. math.h: math.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT_AS_FIRST_DIRECTIVE''@|$(INCLUDE_NEXT_AS_FIRST_DIRECTIVE)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2982,16 +4960,15 @@ -e 's|@''REPLACE_TRUNCL''@|$(REPLACE_TRUNCL)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <signal.h> when the system # doesn't have a complete one. signal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3015,38 +4992,32 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/signal.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/signal.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <stdalign.h> when the system # doesn't have one that works. @GL_GENERATE_STDALIGN_H_TRUE@stdalign.h: stdalign.in.h $(top_builddir)/config.status -@GL_GENERATE_STDALIGN_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_STDALIGN_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ -@GL_GENERATE_STDALIGN_H_TRUE@ cat $(srcdir)/stdalign.in.h; \ -@GL_GENERATE_STDALIGN_H_TRUE@ } > $@-t && \ -@GL_GENERATE_STDALIGN_H_TRUE@ mv $@-t $@ +@GL_GENERATE_STDALIGN_H_TRUE@ $(gl_V_at)$(SED_HEADER_TO_AT_t) $(srcdir)/stdalign.in.h +@GL_GENERATE_STDALIGN_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_STDALIGN_H_FALSE@stdalign.h: $(top_builddir)/config.status @GL_GENERATE_STDALIGN_H_FALSE@ rm -f $@ # We need the following in order to create <stdbool.h> when the system # doesn't have one that works. @GL_GENERATE_STDBOOL_H_TRUE@stdbool.h: stdbool.in.h $(top_builddir)/config.status -@GL_GENERATE_STDBOOL_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_STDBOOL_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ -@GL_GENERATE_STDBOOL_H_TRUE@ sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \ -@GL_GENERATE_STDBOOL_H_TRUE@ } > $@-t && \ -@GL_GENERATE_STDBOOL_H_TRUE@ mv $@-t $@ +@GL_GENERATE_STDBOOL_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_STDBOOL_H_TRUE@ -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' \ +@GL_GENERATE_STDBOOL_H_TRUE@ $(srcdir)/stdbool.in.h > $@-t +@GL_GENERATE_STDBOOL_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_STDBOOL_H_FALSE@stdbool.h: $(top_builddir)/config.status @GL_GENERATE_STDBOOL_H_FALSE@ rm -f $@ # We need the following in order to create <stddef.h> when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDDEF_H_TRUE@stddef.h: stddef.in.h $(top_builddir)/config.status -@GL_GENERATE_STDDEF_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_STDDEF_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ -@GL_GENERATE_STDDEF_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_STDDEF_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3054,18 +5025,16 @@ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ -@GL_GENERATE_STDDEF_H_TRUE@ < $(srcdir)/stddef.in.h; \ -@GL_GENERATE_STDDEF_H_TRUE@ } > $@-t && \ -@GL_GENERATE_STDDEF_H_TRUE@ mv $@-t $@ +@GL_GENERATE_STDDEF_H_TRUE@ $(srcdir)/stddef.in.h > $@-t +@GL_GENERATE_STDDEF_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_STDDEF_H_FALSE@stddef.h: $(top_builddir)/config.status @GL_GENERATE_STDDEF_H_FALSE@ rm -f $@ # We need the following in order to create <stdint.h> when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDINT_H_TRUE@stdint.h: stdint.in.h $(top_builddir)/config.status -@GL_GENERATE_STDINT_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_STDINT_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ -@GL_GENERATE_STDINT_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ +@GL_GENERATE_STDINT_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_STDINT_H_TRUE@ -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -3092,18 +5061,16 @@ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''GNULIBHEADERS_OVERRIDE_WINT_T''@/$(GNULIBHEADERS_OVERRIDE_WINT_T)/g' \ -@GL_GENERATE_STDINT_H_TRUE@ < $(srcdir)/stdint.in.h; \ -@GL_GENERATE_STDINT_H_TRUE@ } > $@-t && \ -@GL_GENERATE_STDINT_H_TRUE@ mv $@-t $@ +@GL_GENERATE_STDINT_H_TRUE@ $(srcdir)/stdint.in.h > $@-t +@GL_GENERATE_STDINT_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_STDINT_H_FALSE@stdint.h: $(top_builddir)/config.status @GL_GENERATE_STDINT_H_FALSE@ rm -f $@ # We need the following in order to create <stdio.h> when the system # doesn't have one that works with the given compiler. stdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3115,6 +5082,7 @@ -e 's/@''GNULIB_FGETC''@/$(GL_GNULIB_FGETC)/g' \ -e 's/@''GNULIB_FGETS''@/$(GL_GNULIB_FGETS)/g' \ -e 's/@''GNULIB_FOPEN''@/$(GL_GNULIB_FOPEN)/g' \ + -e 's/@''GNULIB_FOPEN_GNU''@/$(GL_GNULIB_FOPEN_GNU)/g' \ -e 's/@''GNULIB_FPRINTF''@/$(GL_GNULIB_FPRINTF)/g' \ -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GL_GNULIB_FPRINTF_POSIX)/g' \ -e 's/@''GNULIB_FPURGE''@/$(GL_GNULIB_FPURGE)/g' \ @@ -3190,6 +5158,7 @@ -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \ -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \ -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \ + -e 's|@''REPLACE_FOPEN_FOR_FOPEN_GNU''@|$(REPLACE_FOPEN_FOR_FOPEN_GNU)|g' \ -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \ -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \ -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \ @@ -3220,17 +5189,16 @@ -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <stdlib.h> when the system # doesn't have one that works with the given compiler. stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \ $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3238,12 +5206,14 @@ -e 's/@''GNULIB__EXIT''@/$(GL_GNULIB__EXIT)/g' \ -e 's/@''GNULIB_ALIGNED_ALLOC''@/$(GL_GNULIB_ALIGNED_ALLOC)/g' \ -e 's/@''GNULIB_ATOLL''@/$(GL_GNULIB_ATOLL)/g' \ + -e 's/@''GNULIB_CALLOC_GNU''@/$(GL_GNULIB_CALLOC_GNU)/g' \ -e 's/@''GNULIB_CALLOC_POSIX''@/$(GL_GNULIB_CALLOC_POSIX)/g' \ -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GL_GNULIB_CANONICALIZE_FILE_NAME)/g' \ -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ -e 's/@''GNULIB_GETLOADAVG''@/$(GL_GNULIB_GETLOADAVG)/g' \ -e 's/@''GNULIB_GETSUBOPT''@/$(GL_GNULIB_GETSUBOPT)/g' \ -e 's/@''GNULIB_GRANTPT''@/$(GL_GNULIB_GRANTPT)/g' \ + -e 's/@''GNULIB_MALLOC_GNU''@/$(GL_GNULIB_MALLOC_GNU)/g' \ -e 's/@''GNULIB_MALLOC_POSIX''@/$(GL_GNULIB_MALLOC_POSIX)/g' \ -e 's/@''GNULIB_MBTOWC''@/$(GL_GNULIB_MBTOWC)/g' \ -e 's/@''GNULIB_MKDTEMP''@/$(GL_GNULIB_MKDTEMP)/g' \ @@ -3259,6 +5229,7 @@ -e 's/@''GNULIB_QSORT_R''@/$(GL_GNULIB_QSORT_R)/g' \ -e 's/@''GNULIB_RANDOM''@/$(GL_GNULIB_RANDOM)/g' \ -e 's/@''GNULIB_RANDOM_R''@/$(GL_GNULIB_RANDOM_R)/g' \ + -e 's/@''GNULIB_REALLOC_GNU''@/$(GL_GNULIB_REALLOC_GNU)/g' \ -e 's/@''GNULIB_REALLOC_POSIX''@/$(GL_GNULIB_REALLOC_POSIX)/g' \ -e 's/@''GNULIB_REALLOCARRAY''@/$(GL_GNULIB_REALLOCARRAY)/g' \ -e 's/@''GNULIB_REALPATH''@/$(GL_GNULIB_REALPATH)/g' \ @@ -3325,11 +5296,13 @@ -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \ -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \ -e 's|@''REPLACE_ALIGNED_ALLOC''@|$(REPLACE_ALIGNED_ALLOC)|g' \ - -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \ + -e 's|@''REPLACE_CALLOC_FOR_CALLOC_GNU''@|$(REPLACE_CALLOC_FOR_CALLOC_GNU)|g' \ + -e 's|@''REPLACE_CALLOC_FOR_CALLOC_POSIX''@|$(REPLACE_CALLOC_FOR_CALLOC_POSIX)|g' \ -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_INITSTATE''@|$(REPLACE_INITSTATE)|g' \ - -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \ + -e 's|@''REPLACE_MALLOC_FOR_MALLOC_GNU''@|$(REPLACE_MALLOC_FOR_MALLOC_GNU)|g' \ + -e 's|@''REPLACE_MALLOC_FOR_MALLOC_POSIX''@|$(REPLACE_MALLOC_FOR_MALLOC_POSIX)|g' \ -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ -e 's|@''REPLACE_POSIX_MEMALIGN''@|$(REPLACE_POSIX_MEMALIGN)|g' \ @@ -3339,7 +5312,8 @@ -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \ -e 's|@''REPLACE_RANDOM''@|$(REPLACE_RANDOM)|g' \ -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \ - -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \ + -e 's|@''REPLACE_REALLOC_FOR_REALLOC_GNU''@|$(REPLACE_REALLOC_FOR_REALLOC_GNU)|g' \ + -e 's|@''REPLACE_REALLOC_FOR_REALLOC_POSIX''@|$(REPLACE_REALLOC_FOR_REALLOC_POSIX)|g' \ -e 's|@''REPLACE_REALLOCARRAY''@|$(REPLACE_REALLOCARRAY)|g' \ -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \ -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \ @@ -3355,28 +5329,25 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _Noreturn/r $(_NORETURN_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <stdnoreturn.h> when the system # doesn't have one that works. @GL_GENERATE_STDNORETURN_H_TRUE@stdnoreturn.h: stdnoreturn.in.h $(top_builddir)/config.status $(_NORETURN_H) -@GL_GENERATE_STDNORETURN_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ -@GL_GENERATE_STDNORETURN_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ -@GL_GENERATE_STDNORETURN_H_TRUE@ sed -e '/definition of _Noreturn/r $(_NORETURN_H)' \ -@GL_GENERATE_STDNORETURN_H_TRUE@ < $(srcdir)/stdnoreturn.in.h; \ -@GL_GENERATE_STDNORETURN_H_TRUE@ } > $@-t && \ -@GL_GENERATE_STDNORETURN_H_TRUE@ mv $@-t $@ +@GL_GENERATE_STDNORETURN_H_TRUE@ $(gl_V_at)$(SED_HEADER_STDOUT) \ +@GL_GENERATE_STDNORETURN_H_TRUE@ -e '/definition of _Noreturn/r $(_NORETURN_H)' \ +@GL_GENERATE_STDNORETURN_H_TRUE@ $(srcdir)/stdnoreturn.in.h > $@-t +@GL_GENERATE_STDNORETURN_H_TRUE@ $(AM_V_at)mv $@-t $@ @GL_GENERATE_STDNORETURN_H_FALSE@stdnoreturn.h: $(top_builddir)/config.status @GL_GENERATE_STDNORETURN_H_FALSE@ rm -f $@ # We need the following in order to create <string.h> when the system # doesn't have one that works with the given compiler. string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3424,6 +5395,7 @@ -e 's/@''GNULIB_STRVERSCMP''@/$(GL_GNULIB_STRVERSCMP)/g' \ -e 's/@''GNULIB_MDA_MEMCCPY''@/$(GL_GNULIB_MDA_MEMCCPY)/g' \ -e 's/@''GNULIB_MDA_STRDUP''@/$(GL_GNULIB_MDA_STRDUP)/g' \ + -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ < $(srcdir)/string.in.h | \ sed -e 's|@''HAVE_EXPLICIT_BZERO''@|$(HAVE_EXPLICIT_BZERO)|g' \ -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \ @@ -3452,6 +5424,7 @@ -e 's|@''REPLACE_FFSLL''@|$(REPLACE_FFSLL)|g' \ -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ + -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \ -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ @@ -3468,18 +5441,16 @@ -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - < $(srcdir)/string.in.h; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <sys/stat.h> when the system # has one that is incomplete. sys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) 'sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3532,17 +5503,15 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/sys_stat.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_stat.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <sys/time.h> when the system # doesn't have one that works with the given compiler. sys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) 'sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -3557,33 +5526,29 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/sys_time.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_time.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <sys/types.h> when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) 'sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ - < $(srcdir)/sys_types.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_types.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <time.h> when the system # doesn't have one that works with the given compiler. time.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3596,6 +5561,7 @@ -e 's/@''GNULIB_STRPTIME''@/$(GL_GNULIB_STRPTIME)/g' \ -e 's/@''GNULIB_TIMEGM''@/$(GL_GNULIB_TIMEGM)/g' \ -e 's/@''GNULIB_TIMESPEC_GET''@/$(GL_GNULIB_TIMESPEC_GET)/g' \ + -e 's/@''GNULIB_TIMESPEC_GETRES''@/$(GL_GNULIB_TIMESPEC_GETRES)/g' \ -e 's/@''GNULIB_TIME_R''@/$(GL_GNULIB_TIME_R)/g' \ -e 's/@''GNULIB_TIME_RZ''@/$(GL_GNULIB_TIME_RZ)/g' \ -e 's/@''GNULIB_TZSET''@/$(GL_GNULIB_TZSET)/g' \ @@ -3605,6 +5571,7 @@ -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \ -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \ -e 's|@''HAVE_TIMESPEC_GET''@|$(HAVE_TIMESPEC_GET)|g' \ + -e 's|@''HAVE_TIMESPEC_GETRES''@|$(HAVE_TIMESPEC_GETRES)|g' \ -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \ -e 's|@''REPLACE_CTIME''@|$(REPLACE_CTIME)|g' \ -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \ @@ -3623,16 +5590,14 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/time.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/time.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create an empty placeholder for # <unistd.h> when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -3673,6 +5638,7 @@ -e 's/@''GNULIB_GETOPT_POSIX''@/$(GL_GNULIB_GETOPT_POSIX)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GL_GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETPASS''@/$(GL_GNULIB_GETPASS)/g' \ + -e 's/@''GNULIB_GETPASS_GNU''@/$(GL_GNULIB_GETPASS_GNU)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GL_GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GL_GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GL_GNULIB_ISATTY)/g' \ @@ -3774,6 +5740,7 @@ sed -e 's|@''REPLACE_ACCESS''@|$(REPLACE_ACCESS)|g' \ -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ + -e 's|@''REPLACE_COPY_FILE_RANGE''@|$(REPLACE_COPY_FILE_RANGE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_EXECL''@|$(REPLACE_EXECL)|g' \ @@ -3793,6 +5760,7 @@ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_GETPASS''@|$(REPLACE_GETPASS)|g' \ + -e 's|@''REPLACE_GETPASS_FOR_GETPASS_GNU''@|$(REPLACE_GETPASS_FOR_GETPASS_GNU)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ @@ -3818,16 +5786,15 @@ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <utime.h> when the system # doesn't have one that works with the given compiler. utime.h: utime.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_UTIME_H''@/$(HAVE_UTIME_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -3840,16 +5807,14 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/utime.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/utime.in.h > $@-t + $(AM_V_at)mv $@-t $@ # We need the following in order to create <wchar.h> when the system # version does not work standalone. wchar.h: wchar.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -3900,6 +5865,7 @@ -e 's/@''GNULIB_WCSWIDTH''@/$(GL_GNULIB_WCSWIDTH)/g' \ -e 's/@''GNULIB_WCSFTIME''@/$(GL_GNULIB_WCSFTIME)/g' \ -e 's/@''GNULIB_MDA_WCSDUP''@/$(GL_GNULIB_MDA_WCSDUP)/g' \ + -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ < $(srcdir)/wchar.in.h | \ sed -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \ -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \ @@ -3948,6 +5914,7 @@ sed -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \ -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \ -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \ + -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \ -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \ -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \ @@ -3962,9 +5929,9 @@ -e 's|@''REPLACE_WCSTOK''@|$(REPLACE_WCSTOK)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ mostlyclean-local: mostlyclean-generic @for dir in '' $(MOSTLYCLEANDIRS); do \ @@ -3973,6 +5940,10 @@ fi; \ done; \ : +distclean-local: distclean-gnulib-libobjs +distclean-gnulib-libobjs: + -rm -f @gl_LIBOBJDEPS@ +maintainer-clean-local: distclean-gnulib-libobjs match.$(OBJEXT): match.c $(AM_V_GEN)cp $(srcdir)/match.c _match.S
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/_Noreturn.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/_Noreturn.h
Changed
@@ -1,5 +1,5 @@ /* A C macro for declaring that a function does not return. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/alloca.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/alloca.in.h
Changed
@@ -1,6 +1,6 @@ /* Memory allocation on the stack. - Copyright (C) 1995, 1999, 2001-2004, 2006-2021 Free Software Foundation, + Copyright (C) 1995, 1999, 2001-2004, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/arg-nonnull.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/arg-nonnull.h
Changed
@@ -1,5 +1,5 @@ /* A C macro for declaring that specific arguments must not be NULL. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/asnprintf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/asnprintf.c
Changed
@@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 1999, 2002, 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1999, 2002, 2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/assure.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/assure.h
Changed
@@ -1,6 +1,6 @@ /* Run-time assert-like macros. - Copyright (C) 2014-2021 Free Software Foundation, Inc. + Copyright (C) 2014-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/at-func.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/at-func.c
Changed
@@ -1,9 +1,9 @@ /* Define at-style functions like fstatat, unlinkat, fchownat, etc. - Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/attribute.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/attribute.h
Changed
@@ -1,6 +1,6 @@ /* ATTRIBUTE_* macros for using attributes in GCC and similar compilers - Copyright 2020-2021 Free Software Foundation, Inc. + Copyright 2020-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -76,6 +76,14 @@ /* Applies to: function, pointer to function, function types. */ #define ATTRIBUTE_ALLOC_SIZE(args) _GL_ATTRIBUTE_ALLOC_SIZE (args) +/* ATTRIBUTE_DEALLOC (F, I) declares that the function returns pointers + that can be freed by passing them as the Ith argument to the + function F. + ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that + can be freed via 'free'; it can be used only after declaring 'free'. */ +/* Applies to: functions. Cannot be used on inline functions. */ +#define ATTRIBUTE_DEALLOC(f, i) _GL_ATTRIBUTE_DEALLOC(f, i) +#define ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC_FREE /* Attributes for variadic functions. */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/basename-lgpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/basename-lgpl.c
Changed
@@ -1,6 +1,6 @@ /* basename.c -- return the last element in a file name - Copyright (C) 1990, 1998-2001, 2003-2006, 2009-2021 Free Software + Copyright (C) 1990, 1998-2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/basename-lgpl.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/basename-lgpl.h
Changed
@@ -1,6 +1,6 @@ /* Extract the last component (base name) of a file name. - Copyright (C) 1998, 2001, 2003-2006, 2009-2021 Free Software Foundation, + Copyright (C) 1998, 2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/c++defs.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/c++defs.h
Changed
@@ -1,5 +1,5 @@ /* C++ compatible function declaration macros. - Copyright (C) 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/calloc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/calloc.c
Changed
@@ -1,6 +1,6 @@ /* calloc() function that is glibc compatible. This wrapper function is required at least on Tru64 UNIX 5.1 and mingw. - Copyright (C) 2004-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/chdir-long.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/chdir-long.c
Changed
@@ -1,9 +1,9 @@ /* provide a chdir function that tries not to fail due to ENAMETOOLONG - Copyright (C) 2004-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/chdir-long.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/chdir-long.h
Changed
@@ -1,9 +1,9 @@ /* provide a chdir function that tries not to fail due to ENAMETOOLONG - Copyright (C) 2004-2005, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/cloexec.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/cloexec.c
Changed
@@ -1,6 +1,6 @@ /* cloexec.c - set or clear the close-on-exec descriptor flag - Copyright (C) 1991, 2004-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1991, 2004-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/cloexec.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/cloexec.h
Changed
@@ -1,6 +1,6 @@ /* cloexec.c - set or clear the close-on-exec descriptor flag - Copyright (C) 2004, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2004, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/close.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/close.c
Changed
@@ -1,5 +1,5 @@ /* close replacement. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/closedir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/closedir.c
Changed
@@ -1,5 +1,5 @@ /* Stop reading the entries of a directory. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/config.hin -> _service:tar_scm:gzip-1.12.tar.xz/lib/config.hin
Changed
@@ -156,10 +156,6 @@ #undef GNULIB_SCANF /* Define to a C preprocessor expression that evaluates to 1 or 0, depending - whether the gnulib module statat shall be considered present. */ -#undef GNULIB_STATAT - -/* Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module strerror shall be considered present. */ #undef GNULIB_STRERROR @@ -167,6 +163,9 @@ whether the gnulib module strerror_r-posix shall be considered present. */ #undef GNULIB_STRERROR_R_POSIX +/* Define to 1 when the gnulib module calloc-gnu should be tested. */ +#undef GNULIB_TEST_CALLOC_GNU + /* Define to 1 when the gnulib module calloc-posix should be tested. */ #undef GNULIB_TEST_CALLOC_POSIX @@ -254,9 +253,6 @@ /* Define to 1 when the gnulib module fstat should be tested. */ #undef GNULIB_TEST_FSTAT -/* Define to 1 when the gnulib module fstatat should be tested. */ -#undef GNULIB_TEST_FSTATAT - /* Define to 1 when the gnulib module fsync should be tested. */ #undef GNULIB_TEST_FSYNC @@ -293,6 +289,9 @@ /* Define to 1 when the gnulib module lstat should be tested. */ #undef GNULIB_TEST_LSTAT +/* Define to 1 when the gnulib module malloc-gnu should be tested. */ +#undef GNULIB_TEST_MALLOC_GNU + /* Define to 1 when the gnulib module malloc-posix should be tested. */ #undef GNULIB_TEST_MALLOC_POSIX @@ -344,6 +343,9 @@ /* Define to 1 when the gnulib module reallocarray should be tested. */ #undef GNULIB_TEST_REALLOCARRAY +/* Define to 1 when the gnulib module realloc-gnu should be tested. */ +#undef GNULIB_TEST_REALLOC_GNU + /* Define to 1 when the gnulib module realloc-posix should be tested. */ #undef GNULIB_TEST_REALLOC_POSIX @@ -423,6 +425,9 @@ /* Define to 1 if you have the `chown' function. */ #undef HAVE_CHOWN +/* Define to 1 if you have the `clock_getres' function. */ +#undef HAVE_CLOCK_GETRES + /* Define to 1 if you have the `clock_gettime' function. */ #undef HAVE_CLOCK_GETTIME @@ -447,6 +452,9 @@ /* Define to 1 if you have the <crtdefs.h> header file. */ #undef HAVE_CRTDEFS_H +/* Define to 1 if C supports variable-length arrays. */ +#undef HAVE_C_VARARRAYS + /* Define to 1 if you have the declaration of `alarm', and to 0 if you don't. */ #undef HAVE_DECL_ALARM @@ -597,9 +605,6 @@ /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ #undef HAVE_FSEEKO -/* Define to 1 if you have the `fstatat' function. */ -#undef HAVE_FSTATAT - /* Define to 1 if you have the `fsync' function. */ #undef HAVE_FSYNC @@ -889,6 +894,9 @@ /* Define to 1 if you have the <threads.h> header file. */ #undef HAVE_THREADS_H +/* Define to 1 if you have the `timespec_get' function. */ +#undef HAVE_TIMESPEC_GET + /* Define to 1 if you have the <time.h> header file. */ #undef HAVE_TIME_H @@ -941,10 +949,6 @@ /* Define if you have the 'wint_t' type. */ #undef HAVE_WINT_T -/* Define to 1 if fstatat (..., 0) works. For example, it does not work in AIX - 7.1. */ -#undef HAVE_WORKING_FSTATAT_ZERO_FLAG - /* Define to 1 if O_NOATIME works. */ #undef HAVE_WORKING_O_NOATIME @@ -975,6 +979,114 @@ /* Define to 1 if you have the `__fseterr' function. */ #undef HAVE___FSETERR +/* Define to 1 if ctype.h defines __header_inline. */ +#undef HAVE___HEADER_INLINE + +/* Please see the Gnulib manual for how to use these macros. + + Suppress extern inline with HP-UX cc, as it appears to be broken; see + <https://lists.gnu.org/r/bug-texinfo/2013-02/msg00030.html>. + + Suppress extern inline with Sun C in standards-conformance mode, as it + mishandles inline functions that call each other. E.g., for 'inline void f + (void) { } inline void g (void) { f (); }', c99 incorrectly complains + 'reference to static identifier "f" in extern inline function'. + This bug was observed with Oracle Developer Studio 12.6 + (Sun C 5.15 SunOS_sparc 2017/05/30). + + Suppress extern inline (with or without __attribute__ ((__gnu_inline__))) + on configurations that mistakenly use 'static inline' to implement + functions or macros in standard C headers like <ctype.h>. For example, + if isdigit is mistakenly implemented via a static inline function, + a program containing an extern inline function that calls isdigit + may not work since the C standard prohibits extern inline functions + from calling static functions (ISO C 99 section 6.7.4.(3). + This bug is known to occur on: + + OS X 10.8 and earlier; see: + https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html + + DragonFly; see + http://muscles.dragonflybsd.org/bulk/clang-master-potential/20141111_102002/logs/ah-tty-0.3.12.log + + FreeBSD; see: + https://lists.gnu.org/r/bug-gnulib/2014-07/msg00104.html + + OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and + for clang but remains for g++; see <https://trac.macports.org/ticket/41033>. + Assume DragonFly and FreeBSD will be similar. + + GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99 + inline semantics, unless -fgnu89-inline is used. It defines a macro + __GNUC_STDC_INLINE__ to indicate this situation or a macro + __GNUC_GNU_INLINE__ to indicate the opposite situation. + GCC 4.2 with -std=c99 or -std=gnu99 implements the GNU C inline + semantics but warns, unless -fgnu89-inline is used: + warning: C99 inline functions are not supported; using GNU89 + warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute + It defines a macro __GNUC_GNU_INLINE__ to indicate this situation. + */ +#if (((defined __APPLE__ && defined __MACH__) \ + || defined __DragonFly__ || defined __FreeBSD__) \ + && (defined HAVE___HEADER_INLINE \ + ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ + && ! defined __clang__) \ + : ((! defined _DONT_USE_CTYPE_INLINE_ \ + && (defined __GNUC__ || defined __cplusplus)) \ + || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ + && defined __GNUC__ && ! defined __cplusplus)))) +# define _GL_EXTERN_INLINE_STDHEADER_BUG +#endif +#if ((__GNUC__ \ + ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ + : (199901L <= __STDC_VERSION__ \ + && !defined __HP_cc \ + && !defined __PGI \ + && !(defined __SUNPRO_C && __STDC__))) \ + && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) +# define _GL_INLINE inline +# define _GL_EXTERN_INLINE extern inline +# define _GL_EXTERN_INLINE_IN_USE +#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ + && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) +# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ + /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ +# define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) +# else +# define _GL_INLINE extern inline +# endif +# define _GL_EXTERN_INLINE extern +# define _GL_EXTERN_INLINE_IN_USE +#else +# define _GL_INLINE _GL_UNUSED static +# define _GL_EXTERN_INLINE _GL_UNUSED static +#endif + +/* In GCC 4.6 (inclusive) to 5.1 (exclusive), + suppress bogus "no previous prototype for 'FOO'" + and "no previous declaration for 'FOO'" diagnostics, + when FOO is an inline function in the header; see + <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and + <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>. */ +#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__ +# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ +# define _GL_INLINE_HEADER_CONST_PRAGMA +# else +# define _GL_INLINE_HEADER_CONST_PRAGMA \ + _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") +# endif +# define _GL_INLINE_HEADER_BEGIN \ + _Pragma ("GCC diagnostic push") \ + _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ + _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ + _GL_INLINE_HEADER_CONST_PRAGMA +# define _GL_INLINE_HEADER_END \ + _Pragma ("GCC diagnostic pop") +#else +# define _GL_INLINE_HEADER_BEGIN +# define _GL_INLINE_HEADER_END +#endif + /* Define to 1 if you have the `__xpg_strerror_r' function. */ #undef HAVE___XPG_STRERROR_R @@ -1380,6 +1492,10 @@ /* Define to 1 if the system <stdint.h> predates C++11. */ #undef __STDC_LIMIT_MACROS +/* Define to 1 if C does not support variable-length arrays, and if the + compiler does not already define this. */ +#undef __STDC_NO_VLA__ + /* The _GL_ASYNC_SAFE marker should be attached to functions that are signal handlers (for signals other than SIGABRT, SIGPIPE) or can be invoked from such signal handlers. Such functions have some restrictions: @@ -1410,7 +1526,9 @@ /* Attributes. */ #if (defined __has_attribute \ && (!defined __clang_minor__ \ - || 3 < __clang_major__ + (5 <= __clang_minor__))) + || (defined __apple_build_version__ \ + ? 6000000 <= __apple_build_version__ \ + : 3 < __clang_major__ + (5 <= __clang_minor__)))) # define _GL_HAS_ATTRIBUTE(attr) __has_attribute (__##attr##__) #else # define _GL_HAS_ATTRIBUTE(attr) _GL_ATTR_##attr @@ -1514,14 +1632,19 @@ that can be freed by passing them as the Ith argument to the function F. _GL_ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that - can be freed via 'free'; it can be used only after including <stdlib.h>. */ + can be freed via 'free'; it can be used only after declaring 'free'. */ /* Applies to: functions. Cannot be used on inline functions. */ #if _GL_GNUC_PREREQ (11, 0) # define _GL_ATTRIBUTE_DEALLOC(f, i) __attribute__ ((__malloc__ (f, i))) #else # define _GL_ATTRIBUTE_DEALLOC(f, i) #endif -#define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +/* If gnulib's <string.h> or <wchar.h> has already defined this macro, continue + to use this earlier definition, since <stdlib.h> may not have been included + yet. */ +#ifndef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +#endif /* _GL_ATTRIBUTE_DEPRECATED: Declares that an entity is deprecated. The compiler may warn if the entity is used. */ @@ -1769,110 +1892,6 @@ /* Define to empty if `const' does not conform to ANSI C. */ #undef const -/* Please see the Gnulib manual for how to use these macros. - - Suppress extern inline with HP-UX cc, as it appears to be broken; see - <https://lists.gnu.org/r/bug-texinfo/2013-02/msg00030.html>. - - Suppress extern inline with Sun C in standards-conformance mode, as it - mishandles inline functions that call each other. E.g., for 'inline void f - (void) { } inline void g (void) { f (); }', c99 incorrectly complains - 'reference to static identifier "f" in extern inline function'. - This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. - - Suppress extern inline (with or without __attribute__ ((__gnu_inline__))) - on configurations that mistakenly use 'static inline' to implement - functions or macros in standard C headers like <ctype.h>. For example, - if isdigit is mistakenly implemented via a static inline function, - a program containing an extern inline function that calls isdigit - may not work since the C standard prohibits extern inline functions - from calling static functions (ISO C 99 section 6.7.4.(3). - This bug is known to occur on: - - OS X 10.8 and earlier; see: - https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html - - DragonFly; see - http://muscles.dragonflybsd.org/bulk/clang-master-potential/20141111_102002/logs/ah-tty-0.3.12.log - - FreeBSD; see: - https://lists.gnu.org/r/bug-gnulib/2014-07/msg00104.html - - OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and - for clang but remains for g++; see <https://trac.macports.org/ticket/41033>. - Assume DragonFly and FreeBSD will be similar. - - GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99 - inline semantics, unless -fgnu89-inline is used. It defines a macro - __GNUC_STDC_INLINE__ to indicate this situation or a macro - __GNUC_GNU_INLINE__ to indicate the opposite situation. - GCC 4.2 with -std=c99 or -std=gnu99 implements the GNU C inline - semantics but warns, unless -fgnu89-inline is used: - warning: C99 inline functions are not supported; using GNU89 - warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute - It defines a macro __GNUC_GNU_INLINE__ to indicate this situation. - */ -#if (((defined __APPLE__ && defined __MACH__) \ - || defined __DragonFly__ || defined __FreeBSD__) \ - && (defined __header_inline \ - ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ - && ! defined __clang__) \ - : ((! defined _DONT_USE_CTYPE_INLINE_ \ - && (defined __GNUC__ || defined __cplusplus)) \ - || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ - && defined __GNUC__ && ! defined __cplusplus)))) -# define _GL_EXTERN_INLINE_STDHEADER_BUG -#endif -#if ((__GNUC__ \ - ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ - : (199901L <= __STDC_VERSION__ \ - && !defined __HP_cc \ - && !defined __PGI \ - && !(defined __SUNPRO_C && __STDC__))) \ - && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) -# define _GL_INLINE inline -# define _GL_EXTERN_INLINE extern inline -# define _GL_EXTERN_INLINE_IN_USE -#elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ - && !defined _GL_EXTERN_INLINE_STDHEADER_BUG) -# if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ - /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ -# define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) -# else -# define _GL_INLINE extern inline -# endif -# define _GL_EXTERN_INLINE extern -# define _GL_EXTERN_INLINE_IN_USE -#else -# define _GL_INLINE static _GL_UNUSED -# define _GL_EXTERN_INLINE static _GL_UNUSED -#endif - -/* In GCC 4.6 (inclusive) to 5.1 (exclusive), - suppress bogus "no previous prototype for 'FOO'" - and "no previous declaration for 'FOO'" diagnostics, - when FOO is an inline function in the header; see - <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and - <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>. */ -#if __GNUC__ == 4 && 6 <= __GNUC_MINOR__ -# if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ -# define _GL_INLINE_HEADER_CONST_PRAGMA -# else -# define _GL_INLINE_HEADER_CONST_PRAGMA \ - _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") -# endif -# define _GL_INLINE_HEADER_BEGIN \ - _Pragma ("GCC diagnostic push") \ - _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ - _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ - _GL_INLINE_HEADER_CONST_PRAGMA -# define _GL_INLINE_HEADER_END \ - _Pragma ("GCC diagnostic pop") -#else -# define _GL_INLINE_HEADER_BEGIN -# define _GL_INLINE_HEADER_END -#endif - /* Define to `int' if <sys/types.h> doesn't define. */ #undef gid_t
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/creat-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/creat-safer.c
Changed
@@ -1,10 +1,10 @@ /* Invoke creat, but avoid some glitches. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirent--.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirent--.h
Changed
@@ -1,10 +1,10 @@ /* Like dirent.h, but redefine some names to avoid glitches. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirent-private.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirent-private.h
Changed
@@ -1,5 +1,5 @@ /* Private details of the DIR type. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirent-safer.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirent-safer.h
Changed
@@ -1,10 +1,10 @@ /* Invoke dirent-like functions, but avoid some glitches. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirent.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirent.in.h
Changed
@@ -1,5 +1,5 @@ /* A GNU-like <dirent.h>. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirfd.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirfd.c
Changed
@@ -1,6 +1,6 @@ /* dirfd.c -- return the file descriptor associated with an open DIR* - Copyright (C) 2001, 2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2001, 2006, 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirname-lgpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirname-lgpl.c
Changed
@@ -1,6 +1,6 @@ /* dirname.c -- return all but the last element in a file name - Copyright (C) 1990, 1998, 2000-2001, 2003-2006, 2009-2021 Free Software + Copyright (C) 1990, 1998, 2000-2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dirname.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dirname.h
Changed
@@ -1,6 +1,6 @@ /* Take file names apart into directory and base names. - Copyright (C) 1998, 2001, 2003-2006, 2009-2021 Free Software Foundation, + Copyright (C) 1998, 2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dosname.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/dosname.h
Changed
@@ -1,6 +1,6 @@ /* File names on MS-DOS/Windows systems. - Copyright (C) 2000-2001, 2004-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2000-2001, 2004-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dup-safer-flag.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dup-safer-flag.c
Changed
@@ -1,11 +1,11 @@ /* Duplicate a file descriptor result, avoiding clobbering STD{IN,OUT,ERR}_FILENO, with specific flags. - Copyright (C) 2001, 2004-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2001, 2004-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dup-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dup-safer.c
Changed
@@ -1,10 +1,10 @@ /* Invoke dup, but avoid some glitches. - Copyright (C) 2001, 2004-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2001, 2004-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dup.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dup.c
Changed
@@ -1,6 +1,6 @@ /* Duplicate an open file descriptor. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/dup2.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/dup2.c
Changed
@@ -1,6 +1,6 @@ /* Duplicate an open file descriptor to a specified file descriptor. - Copyright (C) 1999, 2004-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1999, 2004-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/errno.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/errno.in.h
Changed
@@ -1,6 +1,6 @@ /* A POSIX-like <errno.h>. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/error.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/error.c
Changed
@@ -1,5 +1,5 @@ /* Error handler for noninteractive utilities - Copyright (C) 1990-1998, 2000-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1990-1998, 2000-2007, 2009-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/error.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/error.h
Changed
@@ -1,5 +1,5 @@ /* Declaration for error-reporting function - Copyright (C) 1995-1997, 2003, 2006, 2008-2021 Free Software Foundation, + Copyright (C) 1995-1997, 2003, 2006, 2008-2022 Free Software Foundation, Inc. This file is part of the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/exitfail.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/exitfail.c
Changed
@@ -1,6 +1,6 @@ /* Failure exit status - Copyright (C) 2002-2003, 2005-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2002-2003, 2005-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/exitfail.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/exitfail.h
Changed
@@ -1,6 +1,6 @@ /* Failure exit status - Copyright (C) 2002, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2002, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fchdir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fchdir.c
Changed
@@ -1,9 +1,9 @@ /* fchdir replacement. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fclose.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fclose.c
Changed
@@ -1,5 +1,5 @@ /* fclose replacement. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fcntl--.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fcntl--.h
Changed
@@ -1,10 +1,10 @@ /* Like fcntl.h, but redefine some names to avoid glitches. - Copyright (C) 2005, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fcntl-safer.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fcntl-safer.h
Changed
@@ -1,10 +1,10 @@ /* Invoke fcntl-like functions, but avoid some glitches. - Copyright (C) 2005, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fcntl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fcntl.c
Changed
@@ -1,6 +1,6 @@ /* Provide file descriptor control. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fcntl.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fcntl.in.h
Changed
@@ -1,6 +1,6 @@ /* Like <fcntl.h>, but with non-working flags defined to 0. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -435,6 +435,10 @@ # define AT_EACCESS 4 #endif +/* Ignore this flag if not supported. */ +#ifndef AT_NO_AUTOMOUNT +# define AT_NO_AUTOMOUNT 0 +#endif #endif /* _@GUARD_PREFIX@_FCNTL_H */ #endif /* _@GUARD_PREFIX@_FCNTL_H */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fd-hook.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fd-hook.c
Changed
@@ -1,5 +1,5 @@ /* Hook for making file descriptor functions close(), ioctl() extensible. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2009. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fd-hook.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fd-hook.h
Changed
@@ -1,5 +1,5 @@ /* Hook for making file descriptor functions close(), ioctl() extensible. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fd-safer-flag.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fd-safer-flag.c
Changed
@@ -1,11 +1,11 @@ /* Adjust a file descriptor result so that it avoids clobbering STD{IN,OUT,ERR}_FILENO, with specific flags. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fd-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fd-safer.c
Changed
@@ -1,10 +1,10 @@ /* Return a safer copy of a file descriptor. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fdatasync.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fdatasync.c
Changed
@@ -1,6 +1,6 @@ /* Emulate fdatasync on platforms that lack it. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fdopendir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fdopendir.c
Changed
@@ -1,9 +1,9 @@ /* provide a replacement fdopendir function - Copyright (C) 2004-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fflush.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fflush.c
Changed
@@ -1,5 +1,5 @@ /* fflush.c -- allow flushing input streams - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/filename.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/filename.h
Changed
@@ -1,5 +1,5 @@ /* Basic filename support macros. - Copyright (C) 2001-2004, 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2001-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/filenamecat-lgpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/filenamecat-lgpl.c
Changed
@@ -1,6 +1,6 @@ /* Concatenate two arbitrary file names. - Copyright (C) 1996-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1996-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/filenamecat.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/filenamecat.h
Changed
@@ -1,6 +1,6 @@ /* Concatenate two arbitrary file names. - Copyright (C) 1996-1997, 2003, 2005, 2007, 2009-2021 Free Software + Copyright (C) 1996-1997, 2003, 2005, 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/float+.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/float+.h
Changed
@@ -1,5 +1,5 @@ /* Supplemental information about the floating-point formats. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2007. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/float.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/float.c
Changed
@@ -1,5 +1,5 @@ /* Auxiliary definitions for <float.h>. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2011. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/float.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/float.in.h
Changed
@@ -1,6 +1,6 @@ /* A correct <float.h>. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fprintf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fprintf.c
Changed
@@ -1,9 +1,9 @@ /* Formatted output to a stream. - Copyright (C) 2004, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2004, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fpucw.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fpucw.h
Changed
@@ -1,5 +1,5 @@ /* Manipulating the FPU control word. -*- coding: utf-8 -*- - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2007. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fpurge.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fpurge.c
Changed
@@ -1,5 +1,5 @@ /* Flushing buffers of a FILE stream. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/freading.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/freading.c
Changed
@@ -1,5 +1,5 @@ /* Retrieve information about a FILE stream. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/freading.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/freading.h
Changed
@@ -1,5 +1,5 @@ /* Retrieve information about a FILE stream. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/free.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/free.c
Changed
@@ -1,6 +1,6 @@ /* Make free() preserve errno. - Copyright (C) 2003, 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2003, 2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/frexp.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/frexp.c
Changed
@@ -1,5 +1,5 @@ /* Split a double into fraction and mantissa. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/frexpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/frexpl.c
Changed
@@ -1,5 +1,5 @@ /* Split a 'long double' into fraction and mantissa. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fseek.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fseek.c
Changed
@@ -1,5 +1,5 @@ /* An fseek() function that, together with fflush(), is POSIX compliant. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fseeko.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fseeko.c
Changed
@@ -1,5 +1,5 @@ /* An fseeko() function that, together with fflush(), is POSIX compliant. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fseterr.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fseterr.c
Changed
@@ -1,5 +1,5 @@ /* Set the error indicator of a stream. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fseterr.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/fseterr.h
Changed
@@ -1,5 +1,5 @@ /* Set the error indicator of a stream. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fstat.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fstat.c
Changed
@@ -1,5 +1,5 @@ /* fstat() replacement. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/fsync.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/fsync.c
Changed
@@ -7,7 +7,7 @@ Written by Richard W.M. Jones <rjones.at.redhat.com> - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/ftell.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/ftell.c
Changed
@@ -1,5 +1,5 @@ /* An ftell() function that works around platform bugs. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/ftello.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/ftello.c
Changed
@@ -1,5 +1,5 @@ /* An ftello() function that works around platform bugs. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getcwd-lgpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/getcwd-lgpl.c
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 2011-2021 Free Software Foundation, Inc. +/* Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is part of gnulib. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getdtablesize.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/getdtablesize.c
Changed
@@ -1,5 +1,5 @@ /* getdtablesize() function: Return maximum possible file descriptor value + 1. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2008. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt-cdefs.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt-cdefs.in.h
Changed
@@ -1,5 +1,5 @@ /* getopt-on-non-glibc compatibility macros. - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of gnulib. Unlike most of the getopt implementation, it is NOT shared with the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt-core.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt-core.h
Changed
@@ -1,5 +1,5 @@ /* Declarations for getopt (basic, portable features only). - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of the GNU C Library and is also part of gnulib. Patches to this file should be submitted to both projects.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt-ext.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt-ext.h
Changed
@@ -1,5 +1,5 @@ /* Declarations for getopt (GNU extensions). - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of the GNU C Library and is also part of gnulib. Patches to this file should be submitted to both projects.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt-pfx-core.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt-pfx-core.h
Changed
@@ -1,5 +1,5 @@ /* getopt (basic, portable features) gnulib wrapper header. - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of gnulib. Unlike most of the getopt implementation, it is NOT shared with the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt-pfx-ext.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt-pfx-ext.h
Changed
@@ -1,5 +1,5 @@ /* getopt (GNU extensions) gnulib wrapper header. - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of gnulib. Unlike most of the getopt implementation, it is NOT shared with the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt.c
Changed
@@ -1,5 +1,5 @@ /* Getopt for GNU. - Copyright (C) 1987-2021 Free Software Foundation, Inc. + Copyright (C) 1987-2022 Free Software Foundation, Inc. This file is part of the GNU C Library and is also part of gnulib. Patches to this file should be submitted to both projects.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt.in.h
Changed
@@ -1,5 +1,5 @@ /* Declarations for getopt. - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of gnulib. Unlike most of the getopt implementation, it is NOT shared with the GNU C Library, which supplies a different version of
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt1.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt1.c
Changed
@@ -1,5 +1,5 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. - Copyright (C) 1987-2021 Free Software Foundation, Inc. + Copyright (C) 1987-2022 Free Software Foundation, Inc. This file is part of the GNU C Library and is also part of gnulib. Patches to this file should be submitted to both projects.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getopt_int.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getopt_int.h
Changed
@@ -1,5 +1,5 @@ /* Internal declarations for getopt. - Copyright (C) 1989-2021 Free Software Foundation, Inc. + Copyright (C) 1989-2022 Free Software Foundation, Inc. This file is part of the GNU C Library and is also part of gnulib. Patches to this file should be submitted to both projects.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getprogname.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/getprogname.c
Changed
@@ -1,5 +1,5 @@ /* Program name management. - Copyright (C) 2016-2021 Free Software Foundation, Inc. + Copyright (C) 2016-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/getprogname.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/getprogname.h
Changed
@@ -1,5 +1,5 @@ /* Program name management. - Copyright (C) 2016-2021 Free Software Foundation, Inc. + Copyright (C) 2016-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/gettext.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/gettext.h
Changed
@@ -1,5 +1,5 @@ /* Convenience header for conditional use of GNU <libintl.h>. - Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2021 Free Software + Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify @@ -138,7 +138,7 @@ #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) -#ifdef __GNUC__ +#if defined __GNUC__ || defined __clang__ __inline #else #ifdef __cplusplus @@ -157,7 +157,7 @@ return translation; } -#ifdef __GNUC__ +#if defined __GNUC__ || defined __clang__ __inline #else #ifdef __cplusplus @@ -191,9 +191,8 @@ or may have security implications due to non-deterministic stack usage. */ #if (!defined GNULIB_NO_VLA \ - && (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ - /* || (__STDC_VERSION__ == 199901L && !defined __HP_cc) - || (__STDC_VERSION__ >= 201112L && !defined __STDC_NO_VLA__) */ )) + && defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__ \ + && !defined __STDC_NO_VLA__) # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1 #else # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0 @@ -208,7 +207,7 @@ #define dpgettext_expr(Domainname, Msgctxt, Msgid) \ dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES) -#ifdef __GNUC__ +#if defined __GNUC__ || defined __clang__ __inline #else #ifdef __cplusplus @@ -255,7 +254,7 @@ #define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) -#ifdef __GNUC__ +#if defined __GNUC__ || defined __clang__ __inline #else #ifdef __cplusplus
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/gettime.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/gettime.c
Changed
@@ -1,10 +1,10 @@ /* gettime -- get the system clock - Copyright (C) 2002, 2004-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2002, 2004-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful, @@ -30,6 +30,8 @@ { #if defined CLOCK_REALTIME && HAVE_CLOCK_GETTIME clock_gettime (CLOCK_REALTIME, ts); +#elif defined HAVE_TIMESPEC_GET + timespec_get (ts, TIME_UTC); #else struct timeval tv; gettimeofday (&tv, NULL);
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/gettimeofday.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/gettimeofday.c
Changed
@@ -1,6 +1,6 @@ /* Provide gettimeofday for systems that don't have it or for which it's broken. - Copyright (C) 2001-2003, 2005-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2001-2003, 2005-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/glthread/lock.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/glthread/lock.c
Changed
@@ -1,5 +1,5 @@ /* Locking in multithreaded situations. - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/glthread/lock.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/glthread/lock.h
Changed
@@ -1,5 +1,5 @@ /* Locking in multithreaded situations. - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/glthread/threadlib.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/glthread/threadlib.c
Changed
@@ -1,5 +1,5 @@ /* Multithreading primitives. - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/gnulib.mk -> _service:tar_scm:gzip-1.12.tar.xz/lib/gnulib.mk
Changed
@@ -1,10 +1,10 @@ ## DO NOT EDIT! GENERATED AUTOMATICALLY! ## Process this file with automake to produce Makefile.in. -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2022 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This file is distributed in the hope that it will be useful, @@ -91,6 +91,7 @@ noinst_LIBRARIES += libgzip.a libgzip_a_SOURCES = +libgzip_a_CFLAGS = $(AM_CFLAGS) $(GL_CFLAG_GNULIB_WARNINGS) libgzip_a_LIBADD = $(gl_LIBOBJS) libgzip_a_DEPENDENCIES = $(gl_LIBOBJS) EXTRA_libgzip_a_SOURCES = @@ -112,11 +113,10 @@ # doesn't have one that works with the given compiler. if GL_GENERATE_ALLOCA_H alloca.h: alloca.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''HAVE_ALLOCA_H''@|$(HAVE_ALLOCA_H)|g' < $(srcdir)/alloca.in.h; \ - } > $@-t && \ - mv -f $@-t $@ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''HAVE_ALLOCA_H''@|$(HAVE_ALLOCA_H)|g' \ + $(srcdir)/alloca.in.h > $@-t + $(AM_V_at)mv $@-t $@ else alloca.h: $(top_builddir)/config.status rm -f $@ @@ -182,10 +182,11 @@ ## begin gnulib module chdir-long +if GL_COND_OBJ_CHDIR_LONG +libgzip_a_SOURCES += chdir-long.c +endif -EXTRA_DIST += chdir-long.c chdir-long.h - -EXTRA_libgzip_a_SOURCES += chdir-long.c +EXTRA_DIST += chdir-long.h ## end gnulib module chdir-long @@ -199,19 +200,19 @@ ## begin gnulib module close - -EXTRA_DIST += close.c - -EXTRA_libgzip_a_SOURCES += close.c +if GL_COND_OBJ_CLOSE +libgzip_a_SOURCES += close.c +endif ## end gnulib module close ## begin gnulib module closedir +if GL_COND_OBJ_CLOSEDIR +libgzip_a_SOURCES += closedir.c +endif -EXTRA_DIST += closedir.c dirent-private.h - -EXTRA_libgzip_a_SOURCES += closedir.c +EXTRA_DIST += dirent-private.h ## end gnulib module closedir @@ -222,9 +223,8 @@ # We need the following in order to create <dirent.h> when the system # doesn't have one that works with the given compiler. dirent.h: dirent.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_DIRENT_H''@|$(HAVE_DIRENT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -254,9 +254,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/dirent.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/dirent.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += dirent.h dirent.h-t EXTRA_DIST += dirent.in.h @@ -273,10 +272,9 @@ ## begin gnulib module dirfd - -EXTRA_DIST += dirfd.c - -EXTRA_libgzip_a_SOURCES += dirfd.c +if GL_COND_OBJ_DIRFD +libgzip_a_SOURCES += dirfd.c +endif ## end gnulib module dirfd @@ -304,19 +302,17 @@ ## begin gnulib module dup - -EXTRA_DIST += dup.c - -EXTRA_libgzip_a_SOURCES += dup.c +if GL_COND_OBJ_DUP +libgzip_a_SOURCES += dup.c +endif ## end gnulib module dup ## begin gnulib module dup2 - -EXTRA_DIST += dup2.c - -EXTRA_libgzip_a_SOURCES += dup2.c +if GL_COND_OBJ_DUP2 +libgzip_a_SOURCES += dup2.c +endif ## end gnulib module dup2 @@ -328,9 +324,8 @@ # doesn't have one that is POSIX compliant. if GL_GENERATE_ERRNO_H errno.h: errno.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -341,9 +336,8 @@ -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \ -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \ -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \ - < $(srcdir)/errno.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/errno.in.h > $@-t + $(AM_V_at)mv $@-t $@ else errno.h: $(top_builddir)/config.status rm -f $@ @@ -356,10 +350,11 @@ ## begin gnulib module error +if GL_COND_OBJ_ERROR +libgzip_a_SOURCES += error.c +endif -EXTRA_DIST += error.c error.h - -EXTRA_libgzip_a_SOURCES += error.c +EXTRA_DIST += error.h ## end gnulib module error @@ -373,28 +368,25 @@ ## begin gnulib module fchdir - -EXTRA_DIST += fchdir.c - -EXTRA_libgzip_a_SOURCES += fchdir.c +if GL_COND_OBJ_FCHDIR +libgzip_a_SOURCES += fchdir.c +endif ## end gnulib module fchdir ## begin gnulib module fclose - -EXTRA_DIST += fclose.c - -EXTRA_libgzip_a_SOURCES += fclose.c +if GL_COND_OBJ_FCLOSE +libgzip_a_SOURCES += fclose.c +endif ## end gnulib module fclose ## begin gnulib module fcntl - -EXTRA_DIST += fcntl.c - -EXTRA_libgzip_a_SOURCES += fcntl.c +if GL_COND_OBJ_FCNTL +libgzip_a_SOURCES += fcntl.c +endif ## end gnulib module fcntl @@ -405,9 +397,8 @@ # We need the following in order to create <fcntl.h> when the system # doesn't have one that works with the given compiler. fcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -428,9 +419,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/fcntl.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/fcntl.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += fcntl.h fcntl.h-t EXTRA_DIST += fcntl.in.h @@ -461,28 +451,27 @@ ## begin gnulib module fdatasync - -EXTRA_DIST += fdatasync.c - -EXTRA_libgzip_a_SOURCES += fdatasync.c +if GL_COND_OBJ_FDATASYNC +libgzip_a_SOURCES += fdatasync.c +endif ## end gnulib module fdatasync ## begin gnulib module fdopendir - -EXTRA_DIST += fdopendir.c - -EXTRA_libgzip_a_SOURCES += fdopendir.c +if GL_COND_OBJ_FDOPENDIR +libgzip_a_SOURCES += fdopendir.c +endif ## end gnulib module fdopendir ## begin gnulib module fflush +if GL_COND_OBJ_FFLUSH +libgzip_a_SOURCES += fflush.c +endif -EXTRA_DIST += fflush.c stdio-impl.h - -EXTRA_libgzip_a_SOURCES += fflush.c +EXTRA_DIST += stdio-impl.h ## end gnulib module fflush @@ -509,26 +498,29 @@ # doesn't have one that works with the given compiler. if GL_GENERATE_FLOAT_H float.h: float.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_FLOAT_H''@|$(NEXT_FLOAT_H)|g' \ -e 's|@''REPLACE_ITOLD''@|$(REPLACE_ITOLD)|g' \ - < $(srcdir)/float.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/float.in.h > $@-t + $(AM_V_at)mv $@-t $@ else float.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += float.h float.h-t -EXTRA_DIST += float.c float.in.h itold.c +if GL_COND_OBJ_FLOAT +libgzip_a_SOURCES += float.c +endif +if GL_COND_OBJ_ITOLD +libgzip_a_SOURCES += itold.c +endif -EXTRA_libgzip_a_SOURCES += float.c itold.c +EXTRA_DIST += float.in.h ## end gnulib module float @@ -550,10 +542,11 @@ ## begin gnulib module fpurge +if GL_COND_OBJ_FPURGE +libgzip_a_SOURCES += fpurge.c +endif -EXTRA_DIST += fpurge.c stdio-impl.h - -EXTRA_libgzip_a_SOURCES += fpurge.c +EXTRA_DIST += stdio-impl.h ## end gnulib module fpurge @@ -567,10 +560,9 @@ ## begin gnulib module free-posix - -EXTRA_DIST += free.c - -EXTRA_libgzip_a_SOURCES += free.c +if GL_COND_OBJ_FREE +libgzip_a_SOURCES += free.c +endif ## end gnulib module free-posix @@ -594,76 +586,89 @@ ## begin gnulib module fseek - -EXTRA_DIST += fseek.c - -EXTRA_libgzip_a_SOURCES += fseek.c +if GL_COND_OBJ_FSEEK +libgzip_a_SOURCES += fseek.c +endif ## end gnulib module fseek ## begin gnulib module fseeko +if GL_COND_OBJ_FSEEKO +libgzip_a_SOURCES += fseeko.c +endif -EXTRA_DIST += fseeko.c stdio-impl.h - -EXTRA_libgzip_a_SOURCES += fseeko.c +EXTRA_DIST += stdio-impl.h ## end gnulib module fseeko ## begin gnulib module fseterr +if GL_COND_OBJ_FSETERR +libgzip_a_SOURCES += fseterr.c +endif -EXTRA_DIST += fseterr.c fseterr.h stdio-impl.h - -EXTRA_libgzip_a_SOURCES += fseterr.c +EXTRA_DIST += fseterr.h stdio-impl.h ## end gnulib module fseterr ## begin gnulib module fstat +if GL_COND_OBJ_FSTAT +libgzip_a_SOURCES += fstat.c +endif -EXTRA_DIST += fstat.c stat-w32.c stat-w32.h +EXTRA_DIST += stat-w32.c stat-w32.h -EXTRA_libgzip_a_SOURCES += fstat.c stat-w32.c +EXTRA_libgzip_a_SOURCES += stat-w32.c ## end gnulib module fstat -## begin gnulib module fstatat - - -EXTRA_DIST += at-func.c fstatat.c - -EXTRA_libgzip_a_SOURCES += at-func.c fstatat.c - -## end gnulib module fstatat - ## begin gnulib module fsync - -EXTRA_DIST += fsync.c - -EXTRA_libgzip_a_SOURCES += fsync.c +if GL_COND_OBJ_FSYNC +libgzip_a_SOURCES += fsync.c +endif ## end gnulib module fsync ## begin gnulib module ftell - -EXTRA_DIST += ftell.c - -EXTRA_libgzip_a_SOURCES += ftell.c +if GL_COND_OBJ_FTELL +libgzip_a_SOURCES += ftell.c +endif ## end gnulib module ftell ## begin gnulib module ftello +if GL_COND_OBJ_FTELLO +libgzip_a_SOURCES += ftello.c +endif -EXTRA_DIST += ftello.c stdio-impl.h - -EXTRA_libgzip_a_SOURCES += ftello.c +EXTRA_DIST += stdio-impl.h ## end gnulib module ftello +## begin gnulib module gen-header + +# In 'sed', replace the pattern space with a "DO NOT EDIT" comment. +SED_HEADER_NOEDIT = s,.*,/* DO NOT EDIT! GENERATED AUTOMATICALLY! */, + +# '$(SED_HEADER_STDOUT) -e "..."' runs 'sed' but first outputs "DO NOT EDIT". +SED_HEADER_STDOUT = sed -e 1h -e '1$(SED_HEADER_NOEDIT)' -e 1G + +# '$(SED_HEADER_TO_AT_t) FILE' copies FILE to $@-t, prepending a leading +# "DO_NOT_EDIT". Although this could be done more simply via: +# SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) > $@-t +# the -n and 'w' avoid a fork+exec, at least when GNU Make is used. +SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) -n -e 'w $@-t' + +# Use $(gl_V_at) instead of $(AM_V_GEN) or $(AM_V_at) on a line that +gl_V_at = $(AM_V_GEN) + +## end gnulib module gen-header + ## begin gnulib module gendocs @@ -673,19 +678,17 @@ ## begin gnulib module getcwd-lgpl - -EXTRA_DIST += getcwd-lgpl.c - -EXTRA_libgzip_a_SOURCES += getcwd-lgpl.c +if GL_COND_OBJ_GETCWD_LGPL +libgzip_a_SOURCES += getcwd-lgpl.c +endif ## end gnulib module getcwd-lgpl ## begin gnulib module getdtablesize - -EXTRA_DIST += getdtablesize.c - -EXTRA_libgzip_a_SOURCES += getdtablesize.c +if GL_COND_OBJ_GETDTABLESIZE +libgzip_a_SOURCES += getdtablesize.c +endif ## end gnulib module getdtablesize @@ -695,33 +698,41 @@ # We need the following in order to create <getopt.h> when the system # doesn't have one that works with the given compiler. +if GL_GENERATE_GETOPT_H getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - < $(srcdir)/getopt.in.h; \ - } > $@-t && \ - mv -f $@-t $@ + $(srcdir)/getopt.in.h > $@-t + $(AM_V_at)mv $@-t $@ +else +getopt.h: $(top_builddir)/config.status + rm -f $@ +endif +if GL_GENERATE_GETOPT_CDEFS_H getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \ - < $(srcdir)/getopt-cdefs.in.h; \ - } > $@-t && \ - mv -f $@-t $@ + $(AM_V_GEN)$(SED_HEADER_STDOUT) \ + -e 's|@''HAVE_SYS_CDEFS_H''@|$(HAVE_SYS_CDEFS_H)|g' \ + $(srcdir)/getopt-cdefs.in.h > $@-t + $(AM_V_at)mv $@-t $@ +else +getopt-cdefs.h: $(top_builddir)/config.status + rm -f $@ +endif MOSTLYCLEANFILES += getopt.h getopt.h-t getopt-cdefs.h getopt-cdefs.h-t -EXTRA_DIST += getopt-cdefs.in.h getopt-core.h getopt-ext.h getopt-pfx-core.h getopt-pfx-ext.h getopt.c getopt.in.h getopt1.c getopt_int.h +if GL_COND_OBJ_GETOPT +libgzip_a_SOURCES += getopt.c getopt1.c +endif -EXTRA_libgzip_a_SOURCES += getopt.c getopt1.c +EXTRA_DIST += getopt-cdefs.in.h getopt-core.h getopt-ext.h getopt-pfx-core.h getopt-pfx-ext.h getopt.in.h getopt_int.h ## end gnulib module getopt-posix @@ -745,10 +756,9 @@ ## begin gnulib module gettimeofday - -EXTRA_DIST += gettimeofday.c - -EXTRA_libgzip_a_SOURCES += gettimeofday.c +if GL_COND_OBJ_GETTIMEOFDAY +libgzip_a_SOURCES += gettimeofday.c +endif ## end gnulib module gettimeofday @@ -837,9 +847,8 @@ # We need the following in order to create <inttypes.h> when the system # doesn't have one that works with the given compiler. inttypes.h: inttypes.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H) $(ARG_NONNULL_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -864,9 +873,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/inttypes.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/inttypes.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += inttypes.h inttypes.h-t EXTRA_DIST += inttypes.in.h @@ -908,16 +916,14 @@ # doesn't have one that is compatible with GNU. if GL_GENERATE_LIMITS_H limits.h: limits.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \ - < $(srcdir)/limits.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/limits.in.h > $@-t + $(AM_V_at)mv $@-t $@ else limits.h: $(top_builddir)/config.status rm -f $@ @@ -936,19 +942,17 @@ ## begin gnulib module lseek - -EXTRA_DIST += lseek.c - -EXTRA_libgzip_a_SOURCES += lseek.c +if GL_COND_OBJ_LSEEK +libgzip_a_SOURCES += lseek.c +endif ## end gnulib module lseek ## begin gnulib module lstat - -EXTRA_DIST += lstat.c - -EXTRA_libgzip_a_SOURCES += lstat.c +if GL_COND_OBJ_LSTAT +libgzip_a_SOURCES += lstat.c +endif ## end gnulib module lstat @@ -992,9 +996,8 @@ # We need the following in order to create <math.h> when the system # doesn't have one that works with the given compiler. math.h: math.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT_AS_FIRST_DIRECTIVE''@|$(INCLUDE_NEXT_AS_FIRST_DIRECTIVE)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -1281,9 +1284,9 @@ -e 's|@''REPLACE_TRUNCL''@|$(REPLACE_TRUNCL)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += math.h math.h-t EXTRA_DIST += math.in.h @@ -1292,28 +1295,27 @@ ## begin gnulib module memchr +if GL_COND_OBJ_MEMCHR +libgzip_a_SOURCES += memchr.c +endif -EXTRA_DIST += memchr.c memchr.valgrind - -EXTRA_libgzip_a_SOURCES += memchr.c +EXTRA_DIST += memchr.valgrind ## end gnulib module memchr ## begin gnulib module mempcpy - -EXTRA_DIST += mempcpy.c - -EXTRA_libgzip_a_SOURCES += mempcpy.c +if GL_COND_OBJ_MEMPCPY +libgzip_a_SOURCES += mempcpy.c +endif ## end gnulib module mempcpy ## begin gnulib module memrchr - -EXTRA_DIST += memrchr.c - -EXTRA_libgzip_a_SOURCES += memrchr.c +if GL_COND_OBJ_MEMRCHR +libgzip_a_SOURCES += memrchr.c +endif ## end gnulib module memrchr @@ -1325,37 +1327,37 @@ ## begin gnulib module msvc-inval +if GL_COND_OBJ_MSVC_INVAL +libgzip_a_SOURCES += msvc-inval.c +endif -EXTRA_DIST += msvc-inval.c msvc-inval.h - -EXTRA_libgzip_a_SOURCES += msvc-inval.c +EXTRA_DIST += msvc-inval.h ## end gnulib module msvc-inval ## begin gnulib module msvc-nothrow +if GL_COND_OBJ_MSVC_NOTHROW +libgzip_a_SOURCES += msvc-nothrow.c +endif -EXTRA_DIST += msvc-nothrow.c msvc-nothrow.h - -EXTRA_libgzip_a_SOURCES += msvc-nothrow.c +EXTRA_DIST += msvc-nothrow.h ## end gnulib module msvc-nothrow ## begin gnulib module open - -EXTRA_DIST += open.c - -EXTRA_libgzip_a_SOURCES += open.c +if GL_COND_OBJ_OPEN +libgzip_a_SOURCES += open.c +endif ## end gnulib module open ## begin gnulib module openat - -EXTRA_DIST += openat.c - -EXTRA_libgzip_a_SOURCES += openat.c +if GL_COND_OBJ_OPENAT +libgzip_a_SOURCES += openat.c +endif ## end gnulib module openat @@ -1382,10 +1384,11 @@ ## begin gnulib module opendir +if GL_COND_OBJ_OPENDIR +libgzip_a_SOURCES += opendir.c +endif -EXTRA_DIST += dirent-private.h opendir.c - -EXTRA_libgzip_a_SOURCES += opendir.c +EXTRA_DIST += dirent-private.h ## end gnulib module opendir @@ -1398,19 +1401,17 @@ ## begin gnulib module perror - -EXTRA_DIST += perror.c - -EXTRA_libgzip_a_SOURCES += perror.c +if GL_COND_OBJ_PERROR +libgzip_a_SOURCES += perror.c +endif ## end gnulib module perror ## begin gnulib module pipe-posix - -EXTRA_DIST += pipe.c - -EXTRA_libgzip_a_SOURCES += pipe.c +if GL_COND_OBJ_PIPE +libgzip_a_SOURCES += pipe.c +endif ## end gnulib module pipe-posix @@ -1443,19 +1444,19 @@ ## begin gnulib module raise - -EXTRA_DIST += raise.c - -EXTRA_libgzip_a_SOURCES += raise.c +if GL_COND_OBJ_RAISE +libgzip_a_SOURCES += raise.c +endif ## end gnulib module raise ## begin gnulib module readdir +if GL_COND_OBJ_READDIR +libgzip_a_SOURCES += readdir.c +endif -EXTRA_DIST += dirent-private.h readdir.c - -EXTRA_libgzip_a_SOURCES += readdir.c +EXTRA_DIST += dirent-private.h ## end gnulib module readdir @@ -1479,19 +1480,17 @@ ## begin gnulib module reallocarray - -EXTRA_DIST += reallocarray.c - -EXTRA_libgzip_a_SOURCES += reallocarray.c +if GL_COND_OBJ_REALLOCARRAY +libgzip_a_SOURCES += reallocarray.c +endif ## end gnulib module reallocarray ## begin gnulib module rmdir - -EXTRA_DIST += rmdir.c - -EXTRA_libgzip_a_SOURCES += rmdir.c +if GL_COND_OBJ_RMDIR +libgzip_a_SOURCES += rmdir.c +endif ## end gnulib module rmdir @@ -1513,11 +1512,12 @@ ## begin gnulib module sigaction +if GL_COND_OBJ_SIGACTION +libgzip_a_SOURCES += sigaction.c +endif libgzip_a_SOURCES += sig-handler.c -EXTRA_DIST += sig-handler.h sigaction.c - -EXTRA_libgzip_a_SOURCES += sigaction.c +EXTRA_DIST += sig-handler.h ## end gnulib module sigaction @@ -1528,9 +1528,8 @@ # We need the following in order to create <signal.h> when the system # doesn't have a complete one. signal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -1554,9 +1553,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/signal.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/signal.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += signal.h signal.h-t EXTRA_DIST += signal.in.h @@ -1565,19 +1563,19 @@ ## begin gnulib module signbit +if GL_COND_OBJ_SIGNBIT3 +libgzip_a_SOURCES += signbitf.c signbitd.c signbitl.c +endif -EXTRA_DIST += float+.h signbitd.c signbitf.c signbitl.c - -EXTRA_libgzip_a_SOURCES += signbitd.c signbitf.c signbitl.c +EXTRA_DIST += float+.h ## end gnulib module signbit ## begin gnulib module sigprocmask - -EXTRA_DIST += sigprocmask.c - -EXTRA_libgzip_a_SOURCES += sigprocmask.c +if GL_COND_OBJ_SIGPROCMASK +libgzip_a_SOURCES += sigprocmask.c +endif ## end gnulib module sigprocmask @@ -1637,10 +1635,13 @@ ## begin gnulib module stat +if GL_COND_OBJ_STAT +libgzip_a_SOURCES += stat.c +endif -EXTRA_DIST += stat-w32.c stat-w32.h stat.c +EXTRA_DIST += stat-w32.c stat-w32.h -EXTRA_libgzip_a_SOURCES += stat-w32.c stat.c +EXTRA_libgzip_a_SOURCES += stat-w32.c ## end gnulib module stat @@ -1652,12 +1653,6 @@ ## end gnulib module stat-time -## begin gnulib module statat - -libgzip_a_SOURCES += statat.c - -## end gnulib module statat - ## begin gnulib module stdalign BUILT_SOURCES += $(STDALIGN_H) @@ -1666,11 +1661,8 @@ # doesn't have one that works. if GL_GENERATE_STDALIGN_H stdalign.h: stdalign.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - cat $(srcdir)/stdalign.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(gl_V_at)$(SED_HEADER_TO_AT_t) $(srcdir)/stdalign.in.h + $(AM_V_at)mv $@-t $@ else stdalign.h: $(top_builddir)/config.status rm -f $@ @@ -1689,11 +1681,10 @@ # doesn't have one that works. if GL_GENERATE_STDBOOL_H stdbool.h: stdbool.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' \ + $(srcdir)/stdbool.in.h > $@-t + $(AM_V_at)mv $@-t $@ else stdbool.h: $(top_builddir)/config.status rm -f $@ @@ -1712,9 +1703,8 @@ # doesn't have one that works with the given compiler. if GL_GENERATE_STDDEF_H stddef.h: stddef.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -1722,9 +1712,8 @@ -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ - < $(srcdir)/stddef.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/stddef.in.h > $@-t + $(AM_V_at)mv $@-t $@ else stddef.h: $(top_builddir)/config.status rm -f $@ @@ -1743,9 +1732,8 @@ # doesn't have one that works with the given compiler. if GL_GENERATE_STDINT_H stdint.h: stdint.in.h $(top_builddir)/config.status - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -1772,9 +1760,8 @@ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ -e 's/@''GNULIBHEADERS_OVERRIDE_WINT_T''@/$(GNULIBHEADERS_OVERRIDE_WINT_T)/g' \ - < $(srcdir)/stdint.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/stdint.in.h > $@-t + $(AM_V_at)mv $@-t $@ else stdint.h: $(top_builddir)/config.status rm -f $@ @@ -1792,9 +1779,8 @@ # We need the following in order to create <stdio.h> when the system # doesn't have one that works with the given compiler. stdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -1806,6 +1792,7 @@ -e 's/@''GNULIB_FGETC''@/$(GL_GNULIB_FGETC)/g' \ -e 's/@''GNULIB_FGETS''@/$(GL_GNULIB_FGETS)/g' \ -e 's/@''GNULIB_FOPEN''@/$(GL_GNULIB_FOPEN)/g' \ + -e 's/@''GNULIB_FOPEN_GNU''@/$(GL_GNULIB_FOPEN_GNU)/g' \ -e 's/@''GNULIB_FPRINTF''@/$(GL_GNULIB_FPRINTF)/g' \ -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GL_GNULIB_FPRINTF_POSIX)/g' \ -e 's/@''GNULIB_FPURGE''@/$(GL_GNULIB_FPURGE)/g' \ @@ -1881,6 +1868,7 @@ -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \ -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \ -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \ + -e 's|@''REPLACE_FOPEN_FOR_FOPEN_GNU''@|$(REPLACE_FOPEN_FOR_FOPEN_GNU)|g' \ -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \ -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \ -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \ @@ -1911,11 +1899,18 @@ -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += stdio.h stdio.h-t +if GL_COND_OBJ_STDIO_READ +libgzip_a_SOURCES += stdio-read.c +endif +if GL_COND_OBJ_STDIO_WRITE +libgzip_a_SOURCES += stdio-write.c +endif + EXTRA_DIST += stdio.in.h ## end gnulib module stdio @@ -1928,9 +1923,8 @@ # doesn't have one that works with the given compiler. stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \ $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -1938,12 +1932,14 @@ -e 's/@''GNULIB__EXIT''@/$(GL_GNULIB__EXIT)/g' \ -e 's/@''GNULIB_ALIGNED_ALLOC''@/$(GL_GNULIB_ALIGNED_ALLOC)/g' \ -e 's/@''GNULIB_ATOLL''@/$(GL_GNULIB_ATOLL)/g' \ + -e 's/@''GNULIB_CALLOC_GNU''@/$(GL_GNULIB_CALLOC_GNU)/g' \ -e 's/@''GNULIB_CALLOC_POSIX''@/$(GL_GNULIB_CALLOC_POSIX)/g' \ -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GL_GNULIB_CANONICALIZE_FILE_NAME)/g' \ -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ -e 's/@''GNULIB_GETLOADAVG''@/$(GL_GNULIB_GETLOADAVG)/g' \ -e 's/@''GNULIB_GETSUBOPT''@/$(GL_GNULIB_GETSUBOPT)/g' \ -e 's/@''GNULIB_GRANTPT''@/$(GL_GNULIB_GRANTPT)/g' \ + -e 's/@''GNULIB_MALLOC_GNU''@/$(GL_GNULIB_MALLOC_GNU)/g' \ -e 's/@''GNULIB_MALLOC_POSIX''@/$(GL_GNULIB_MALLOC_POSIX)/g' \ -e 's/@''GNULIB_MBTOWC''@/$(GL_GNULIB_MBTOWC)/g' \ -e 's/@''GNULIB_MKDTEMP''@/$(GL_GNULIB_MKDTEMP)/g' \ @@ -1959,6 +1955,7 @@ -e 's/@''GNULIB_QSORT_R''@/$(GL_GNULIB_QSORT_R)/g' \ -e 's/@''GNULIB_RANDOM''@/$(GL_GNULIB_RANDOM)/g' \ -e 's/@''GNULIB_RANDOM_R''@/$(GL_GNULIB_RANDOM_R)/g' \ + -e 's/@''GNULIB_REALLOC_GNU''@/$(GL_GNULIB_REALLOC_GNU)/g' \ -e 's/@''GNULIB_REALLOC_POSIX''@/$(GL_GNULIB_REALLOC_POSIX)/g' \ -e 's/@''GNULIB_REALLOCARRAY''@/$(GL_GNULIB_REALLOCARRAY)/g' \ -e 's/@''GNULIB_REALPATH''@/$(GL_GNULIB_REALPATH)/g' \ @@ -2025,11 +2022,13 @@ -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \ -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \ -e 's|@''REPLACE_ALIGNED_ALLOC''@|$(REPLACE_ALIGNED_ALLOC)|g' \ - -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \ + -e 's|@''REPLACE_CALLOC_FOR_CALLOC_GNU''@|$(REPLACE_CALLOC_FOR_CALLOC_GNU)|g' \ + -e 's|@''REPLACE_CALLOC_FOR_CALLOC_POSIX''@|$(REPLACE_CALLOC_FOR_CALLOC_POSIX)|g' \ -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \ -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_INITSTATE''@|$(REPLACE_INITSTATE)|g' \ - -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \ + -e 's|@''REPLACE_MALLOC_FOR_MALLOC_GNU''@|$(REPLACE_MALLOC_FOR_MALLOC_GNU)|g' \ + -e 's|@''REPLACE_MALLOC_FOR_MALLOC_POSIX''@|$(REPLACE_MALLOC_FOR_MALLOC_POSIX)|g' \ -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ -e 's|@''REPLACE_POSIX_MEMALIGN''@|$(REPLACE_POSIX_MEMALIGN)|g' \ @@ -2039,7 +2038,8 @@ -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \ -e 's|@''REPLACE_RANDOM''@|$(REPLACE_RANDOM)|g' \ -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \ - -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \ + -e 's|@''REPLACE_REALLOC_FOR_REALLOC_GNU''@|$(REPLACE_REALLOC_FOR_REALLOC_GNU)|g' \ + -e 's|@''REPLACE_REALLOC_FOR_REALLOC_POSIX''@|$(REPLACE_REALLOC_FOR_REALLOC_POSIX)|g' \ -e 's|@''REPLACE_REALLOCARRAY''@|$(REPLACE_REALLOCARRAY)|g' \ -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \ -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \ @@ -2055,9 +2055,9 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _Noreturn/r $(_NORETURN_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += stdlib.h stdlib.h-t EXTRA_DIST += stdlib.in.h @@ -2072,12 +2072,10 @@ # doesn't have one that works. if GL_GENERATE_STDNORETURN_H stdnoreturn.h: stdnoreturn.in.h $(top_builddir)/config.status $(_NORETURN_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e '/definition of _Noreturn/r $(_NORETURN_H)' \ - < $(srcdir)/stdnoreturn.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e '/definition of _Noreturn/r $(_NORETURN_H)' \ + $(srcdir)/stdnoreturn.in.h > $@-t + $(AM_V_at)mv $@-t $@ else stdnoreturn.h: $(top_builddir)/config.status rm -f $@ @@ -2090,37 +2088,35 @@ ## begin gnulib module stpcpy - -EXTRA_DIST += stpcpy.c - -EXTRA_libgzip_a_SOURCES += stpcpy.c +if GL_COND_OBJ_STPCPY +libgzip_a_SOURCES += stpcpy.c +endif ## end gnulib module stpcpy ## begin gnulib module strdup-posix - -EXTRA_DIST += strdup.c - -EXTRA_libgzip_a_SOURCES += strdup.c +if GL_COND_OBJ_STRDUP +libgzip_a_SOURCES += strdup.c +endif ## end gnulib module strdup-posix ## begin gnulib module strerror - -EXTRA_DIST += strerror.c - -EXTRA_libgzip_a_SOURCES += strerror.c +if GL_COND_OBJ_STRERROR +libgzip_a_SOURCES += strerror.c +endif ## end gnulib module strerror ## begin gnulib module strerror-override +if GL_COND_OBJ_STRERROR_OVERRIDE +libgzip_a_SOURCES += strerror-override.c +endif -EXTRA_DIST += strerror-override.c strerror-override.h - -EXTRA_libgzip_a_SOURCES += strerror-override.c +EXTRA_DIST += strerror-override.h ## end gnulib module strerror-override @@ -2140,9 +2136,8 @@ # We need the following in order to create <string.h> when the system # doesn't have one that works with the given compiler. string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2190,6 +2185,7 @@ -e 's/@''GNULIB_STRVERSCMP''@/$(GL_GNULIB_STRVERSCMP)/g' \ -e 's/@''GNULIB_MDA_MEMCCPY''@/$(GL_GNULIB_MDA_MEMCCPY)/g' \ -e 's/@''GNULIB_MDA_STRDUP''@/$(GL_GNULIB_MDA_STRDUP)/g' \ + -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ < $(srcdir)/string.in.h | \ sed -e 's|@''HAVE_EXPLICIT_BZERO''@|$(HAVE_EXPLICIT_BZERO)|g' \ -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \ @@ -2218,6 +2214,7 @@ -e 's|@''REPLACE_FFSLL''@|$(REPLACE_FFSLL)|g' \ -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ + -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \ -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ @@ -2234,10 +2231,9 @@ -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - < $(srcdir)/string.in.h; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += string.h string.h-t EXTRA_DIST += string.in.h @@ -2251,10 +2247,9 @@ # We need the following in order to create <sys/stat.h> when the system # has one that is incomplete. sys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) '%reldir%/sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2307,9 +2302,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/sys_stat.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_stat.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += sys/stat.h sys/stat.h-t MOSTLYCLEANDIRS += sys @@ -2324,10 +2318,9 @@ # We need the following in order to create <sys/time.h> when the system # doesn't have one that works with the given compiler. sys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) '%reldir%/sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -2342,9 +2335,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/sys_time.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_time.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += sys/time.h sys/time.h-t EXTRA_DIST += sys_time.in.h @@ -2358,19 +2350,17 @@ # We need the following in order to create <sys/types.h> when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status - $(AM_V_at)$(MKDIR_P) sys - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(AM_V_GEN)$(MKDIR_P) '%reldir%/sys' + $(AM_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's|@''WINDOWS_STAT_INODES''@|$(WINDOWS_STAT_INODES)|g' \ - < $(srcdir)/sys_types.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/sys_types.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += sys/types.h sys/types.h-t EXTRA_DIST += sys_types.in.h @@ -2390,9 +2380,8 @@ # We need the following in order to create <time.h> when the system # doesn't have one that works with the given compiler. time.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2405,6 +2394,7 @@ -e 's/@''GNULIB_STRPTIME''@/$(GL_GNULIB_STRPTIME)/g' \ -e 's/@''GNULIB_TIMEGM''@/$(GL_GNULIB_TIMEGM)/g' \ -e 's/@''GNULIB_TIMESPEC_GET''@/$(GL_GNULIB_TIMESPEC_GET)/g' \ + -e 's/@''GNULIB_TIMESPEC_GETRES''@/$(GL_GNULIB_TIMESPEC_GETRES)/g' \ -e 's/@''GNULIB_TIME_R''@/$(GL_GNULIB_TIME_R)/g' \ -e 's/@''GNULIB_TIME_RZ''@/$(GL_GNULIB_TIME_RZ)/g' \ -e 's/@''GNULIB_TZSET''@/$(GL_GNULIB_TZSET)/g' \ @@ -2414,6 +2404,7 @@ -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \ -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \ -e 's|@''HAVE_TIMESPEC_GET''@|$(HAVE_TIMESPEC_GET)|g' \ + -e 's|@''HAVE_TIMESPEC_GETRES''@|$(HAVE_TIMESPEC_GETRES)|g' \ -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \ -e 's|@''REPLACE_CTIME''@|$(REPLACE_CTIME)|g' \ -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \ @@ -2432,9 +2423,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/time.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/time.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += time.h time.h-t EXTRA_DIST += time.in.h @@ -2457,9 +2447,8 @@ # We need the following in order to create an empty placeholder for # <unistd.h> when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -2500,6 +2489,7 @@ -e 's/@''GNULIB_GETOPT_POSIX''@/$(GL_GNULIB_GETOPT_POSIX)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GL_GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETPASS''@/$(GL_GNULIB_GETPASS)/g' \ + -e 's/@''GNULIB_GETPASS_GNU''@/$(GL_GNULIB_GETPASS_GNU)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GL_GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GL_GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GL_GNULIB_ISATTY)/g' \ @@ -2601,6 +2591,7 @@ sed -e 's|@''REPLACE_ACCESS''@|$(REPLACE_ACCESS)|g' \ -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ + -e 's|@''REPLACE_COPY_FILE_RANGE''@|$(REPLACE_COPY_FILE_RANGE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_EXECL''@|$(REPLACE_EXECL)|g' \ @@ -2620,6 +2611,7 @@ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_GETPASS''@|$(REPLACE_GETPASS)|g' \ + -e 's|@''REPLACE_GETPASS_FOR_GETPASS_GNU''@|$(REPLACE_GETPASS_FOR_GETPASS_GNU)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ @@ -2645,9 +2637,9 @@ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += unistd.h unistd.h-t EXTRA_DIST += unistd.in.h @@ -2664,19 +2656,21 @@ ## begin gnulib module unlink - -EXTRA_DIST += unlink.c - -EXTRA_libgzip_a_SOURCES += unlink.c +if GL_COND_OBJ_UNLINK +libgzip_a_SOURCES += unlink.c +endif ## end gnulib module unlink ## begin gnulib module unlinkat +if GL_COND_OBJ_UNLINKAT +libgzip_a_SOURCES += unlinkat.c +endif -EXTRA_DIST += at-func.c unlinkat.c +EXTRA_DIST += at-func.c -EXTRA_libgzip_a_SOURCES += at-func.c unlinkat.c +EXTRA_libgzip_a_SOURCES += at-func.c ## end gnulib module unlinkat @@ -2696,10 +2690,9 @@ ## begin gnulib module utime - -EXTRA_DIST += utime.c - -EXTRA_libgzip_a_SOURCES += utime.c +if GL_COND_OBJ_UTIME +libgzip_a_SOURCES += utime.c +endif ## end gnulib module utime @@ -2710,9 +2703,8 @@ # We need the following in order to create <utime.h> when the system # doesn't have one that works with the given compiler. utime.h: utime.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_UTIME_H''@/$(HAVE_UTIME_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @@ -2725,9 +2717,8 @@ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ - < $(srcdir)/utime.in.h; \ - } > $@-t && \ - mv $@-t $@ + $(srcdir)/utime.in.h > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += utime.h utime.h-t EXTRA_DIST += utime.in.h @@ -2781,9 +2772,8 @@ # We need the following in order to create <wchar.h> when the system # version does not work standalone. wchar.h: wchar.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) - $(AM_V_GEN)rm -f $@-t $@ && \ - { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ - sed -e 's|@''GUARD_PREFIX''@|GL|g' \ + $(gl_V_at)$(SED_HEADER_STDOUT) \ + -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @@ -2834,6 +2824,7 @@ -e 's/@''GNULIB_WCSWIDTH''@/$(GL_GNULIB_WCSWIDTH)/g' \ -e 's/@''GNULIB_WCSFTIME''@/$(GL_GNULIB_WCSFTIME)/g' \ -e 's/@''GNULIB_MDA_WCSDUP''@/$(GL_GNULIB_MDA_WCSDUP)/g' \ + -e 's/@''GNULIB_FREE_POSIX''@/$(GL_GNULIB_FREE_POSIX)/g' \ < $(srcdir)/wchar.in.h | \ sed -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \ -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \ @@ -2882,6 +2873,7 @@ sed -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \ -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \ -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \ + -e 's|@''REPLACE_FREE''@|$(REPLACE_FREE)|g' \ -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \ -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \ -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \ @@ -2896,9 +2888,9 @@ -e 's|@''REPLACE_WCSTOK''@|$(REPLACE_WCSTOK)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ - -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ - } > $@-t && \ - mv $@-t $@ + -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ + > $@-t + $(AM_V_at)mv $@-t $@ MOSTLYCLEANFILES += wchar.h wchar.h-t EXTRA_DIST += wchar.in.h @@ -2907,37 +2899,41 @@ ## begin gnulib module windows-mutex +if GL_COND_OBJ_WINDOWS_MUTEX +libgzip_a_SOURCES += windows-mutex.c +endif -EXTRA_DIST += windows-initguard.h windows-mutex.c windows-mutex.h - -EXTRA_libgzip_a_SOURCES += windows-mutex.c +EXTRA_DIST += windows-initguard.h windows-mutex.h ## end gnulib module windows-mutex ## begin gnulib module windows-once +if GL_COND_OBJ_WINDOWS_ONCE +libgzip_a_SOURCES += windows-once.c +endif -EXTRA_DIST += windows-once.c windows-once.h - -EXTRA_libgzip_a_SOURCES += windows-once.c +EXTRA_DIST += windows-once.h ## end gnulib module windows-once ## begin gnulib module windows-recmutex +if GL_COND_OBJ_WINDOWS_RECMUTEX +libgzip_a_SOURCES += windows-recmutex.c +endif -EXTRA_DIST += windows-initguard.h windows-recmutex.c windows-recmutex.h - -EXTRA_libgzip_a_SOURCES += windows-recmutex.c +EXTRA_DIST += windows-initguard.h windows-recmutex.h ## end gnulib module windows-recmutex ## begin gnulib module windows-rwlock +if GL_COND_OBJ_WINDOWS_RWLOCK +libgzip_a_SOURCES += windows-rwlock.c +endif -EXTRA_DIST += windows-initguard.h windows-rwlock.c windows-rwlock.h - -EXTRA_libgzip_a_SOURCES += windows-rwlock.c +EXTRA_DIST += windows-initguard.h windows-rwlock.h ## end gnulib module windows-rwlock @@ -2986,3 +2982,7 @@ fi; \ done; \ : +distclean-local: distclean-gnulib-libobjs +distclean-gnulib-libobjs: + -rm -f @gl_LIBOBJDEPS@ +maintainer-clean-local: distclean-gnulib-libobjs
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/ialloc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/ialloc.c
Changed
@@ -1,10 +1,10 @@ /* malloc with idx_t rather than size_t - Copyright 2021 Free Software Foundation, Inc. + Copyright 2021-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/ialloc.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/ialloc.h
Changed
@@ -1,10 +1,10 @@ /* ialloc.h -- malloc with idx_t rather than size_t - Copyright 2021 Free Software Foundation, Inc. + Copyright 2021-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/idx.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/idx.h
Changed
@@ -1,5 +1,5 @@ /* A type for indices and sizes. - Copyright (C) 2020-2021 Free Software Foundation, Inc. + Copyright (C) 2020-2022 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -56,6 +56,26 @@ * Because 'size_t' is an unsigned type, and a signed type is better. See above. + Why not use 'ssize_t'? + + * 'ptrdiff_t' is more portable; it is standardized by ISO C + whereas 'ssize_t' is standardized only by POSIX. + + * 'ssize_t' is not required to be as wide as 'size_t', and some + now-obsolete POSIX platforms had 'size_t' wider than 'ssize_t'. + + * Conversely, some now-obsolete platforms had 'ptrdiff_t' wider + than 'size_t', which can be a win and conforms to POSIX. + + Won't this cause a problem with objects larger than PTRDIFF_MAX? + + * Typical modern or large platforms do not allocate such objects, + so this is not much of a problem in practice; for example, you + can safely write 'idx_t len = strlen (s);'. To port to older + small platforms where allocations larger than PTRDIFF_MAX could + in theory be a problem, you can use Gnulib's ialloc module, or + functions like ximalloc in Gnulib's xalloc module. + Why not use 'ptrdiff_t' directly? * Maintainability: When reading and modifying code, it helps to know that
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/ignore-value.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/ignore-value.h
Changed
@@ -1,6 +1,6 @@ /* ignore a function return without a compiler warning. -*- coding: utf-8 -*- - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/intprops.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/intprops.h
Changed
@@ -1,6 +1,6 @@ /* intprops.h -- properties of integer types - Copyright (C) 2001-2021 Free Software Foundation, Inc. + Copyright (C) 2001-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -15,7 +15,6 @@ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ -/* Written by Paul Eggert. */ #ifndef _GL_INTPROPS_H #define _GL_INTPROPS_H @@ -230,18 +229,22 @@ /* True if __builtin_add_overflow (A, B, P) and __builtin_sub_overflow (A, B, P) work when P is non-null. */ +#ifdef __EDG__ +/* EDG-based compilers like nvc 22.1 cannot add 64-bit signed to unsigned + <https://bugs.gnu.org/53256>. */ +# define _GL_HAS_BUILTIN_ADD_OVERFLOW 0 +#elif defined __has_builtin +# define _GL_HAS_BUILTIN_ADD_OVERFLOW __has_builtin (__builtin_add_overflow) /* __builtin_{add,sub}_overflow exists but is not reliable in GCC 5.x and 6.x, see <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98269>. */ -#if 7 <= __GNUC__ && !defined __ICC +#elif 7 <= __GNUC__ # define _GL_HAS_BUILTIN_ADD_OVERFLOW 1 -#elif defined __has_builtin -# define _GL_HAS_BUILTIN_ADD_OVERFLOW __has_builtin (__builtin_add_overflow) #else # define _GL_HAS_BUILTIN_ADD_OVERFLOW 0 #endif /* True if __builtin_mul_overflow (A, B, P) works when P is non-null. */ -#ifdef __clang__ +#if defined __clang_major__ && __clang_major__ < 14 /* Work around Clang bug <https://bugs.llvm.org/show_bug.cgi?id=16404>. */ # define _GL_HAS_BUILTIN_MUL_OVERFLOW 0 #else @@ -250,9 +253,8 @@ /* True if __builtin_add_overflow_p (A, B, C) works, and similarly for __builtin_sub_overflow_p and __builtin_mul_overflow_p. */ -#if defined __clang__ || defined __ICC -/* Clang 11 lacks __builtin_mul_overflow_p, and even if it did it - would presumably run afoul of Clang bug 16404. ICC 2021.1's +#ifdef __EDG__ +/* In EDG-based compilers like ICC 2021.3 and earlier, __builtin_add_overflow_p etc. are not treated as integral constant expressions even when all arguments are. */ # define _GL_HAS_BUILTIN_OVERFLOW_P 0 @@ -401,7 +403,7 @@ #if _GL_HAS_BUILTIN_MUL_OVERFLOW # if ((9 < __GNUC__ + (3 <= __GNUC_MINOR__) \ || (__GNUC__ == 8 && 4 <= __GNUC_MINOR__)) \ - && !defined __ICC) + && !defined __EDG__) # define INT_MULTIPLY_WRAPV(a, b, r) __builtin_mul_overflow (a, b, r) # else /* Work around GCC bug 91450. */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/inttypes.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/inttypes.in.h
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2021 Free Software Foundation, Inc. +/* Copyright (C) 2006-2022 Free Software Foundation, Inc. Written by Paul Eggert, Bruno Haible, Derek Price. This file is part of gnulib.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnan.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnan.c
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnand-nolibm.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnand-nolibm.h
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnand.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnand.c
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnanf-nolibm.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnanf-nolibm.h
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnanf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnanf.c
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnanl-nolibm.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnanl-nolibm.h
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/isnanl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/isnanl.c
Changed
@@ -1,5 +1,5 @@ /* Test for NaN that does not need libm. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/itold.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/itold.c
Changed
@@ -1,5 +1,5 @@ /* Replacement for 'int' to 'long double' conversion routine. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2011. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/limits.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/limits.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <limits.h>. - Copyright 2016-2021 Free Software Foundation, Inc. + Copyright 2016-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/lseek.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/lseek.c
Changed
@@ -1,5 +1,5 @@ /* An lseek() function that detects pipes. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -52,6 +52,24 @@ errno = ESPIPE; return -1; } +#elif defined __APPLE__ && defined __MACH__ && defined SEEK_DATA + if (whence == SEEK_DATA) + { + /* If OFFSET points to data, macOS lseek+SEEK_DATA returns the + start S of the first data region that begins *after* OFFSET, + where the region from OFFSET to S consists of possibly-empty + data followed by a possibly-empty hole. To work around this + portability glitch, check whether OFFSET is within data by + using lseek+SEEK_HOLE, and if so return to OFFSET by using + lseek+SEEK_SET. Also, contrary to the macOS documentation, + lseek+SEEK_HOLE can fail with ENXIO if there are no holes on + or after OFFSET. What a mess! */ + off_t next_hole = lseek (fd, offset, SEEK_HOLE); + if (next_hole < 0) + return errno == ENXIO ? offset : next_hole; + if (next_hole != offset) + whence = SEEK_SET; + } #else /* BeOS lseek mistakenly succeeds on pipes... */ struct stat statbuf;
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/lstat.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/lstat.c
Changed
@@ -1,6 +1,6 @@ /* Work around a bug of lstat on some systems - Copyright (C) 1997-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 1997-2006, 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/malloc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/malloc.c
Changed
@@ -1,6 +1,6 @@ /* malloc() function that is glibc compatible. - Copyright (C) 1997-1998, 2006-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1997-1998, 2006-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/malloca.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/malloca.c
Changed
@@ -1,5 +1,5 @@ /* Safe automatic memory allocation. - Copyright (C) 2003, 2006-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2003, 2006-2007, 2009-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2003, 2018. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/malloca.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/malloca.h
Changed
@@ -1,5 +1,5 @@ /* Safe automatic memory allocation. - Copyright (C) 2003-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2003-2007, 2009-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2003. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/match.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/match.c
Changed
@@ -1,6 +1,6 @@ /* match.s -- optional optimized asm version of longest match in deflate.c - Copyright (C) 2002, 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2002, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify @@ -18,7 +18,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* - * The 68020 version has been written by Francesco Potorti` <pot@cnuce.cnr.it> + * The 68020 version has been written by Francesco Potortì <pot@cnuce.cnr.it> * with adaptations by Carsten Steger <stegerc@informatik.tu-muenchen.de>, * Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de> and * Kristoffer Eriksson <ske@pkmab.se> @@ -403,8 +403,8 @@ /* * 'longest_match.S' (assembly program for gzip for the IA-64 architecture) * - * Optimised for McKinley, but with Merced-compatibility, such as MIB+MIB, used wherever - * possible. + * Optimized for McKinley, but with Merced-compatibility, such as + * MIB+MIB, used wherever possible. * * Copyright: Sverre Jarp (HP Labs) 2001-2002 * @@ -724,7 +724,7 @@ .only3: {.mib // Cycle 0 (short) cmp.gt.unc p0,p_nbs=s_vlen,s_vbestlen // (len > best_len) ? -(p_nbs) br.cond.dpnt.many .next_iter // if not, re-iternate +(p_nbs) br.cond.dpnt.many .next_iter // if not, reiterate ;; }{.mmi // Cycle 1 (short) ld4 s_tm7=s_anicematch // nice_match
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/math.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/math.c
Changed
@@ -1,6 +1,6 @@ /* Inline functions for <math.h>. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/math.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/math.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <math.h>. - Copyright (C) 2002-2003, 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2002-2003, 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/memchr.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/memchr.c
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2021 +/* Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2022 Free Software Foundation, Inc. Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/memchr.valgrind -> _service:tar_scm:gzip-1.12.tar.xz/lib/memchr.valgrind
Changed
@@ -1,6 +1,6 @@ # Suppress a valgrind message about use of uninitialized memory in memchr(). -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # # This file is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/mempcpy.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/mempcpy.c
Changed
@@ -1,5 +1,5 @@ /* Copy memory area and return pointer after last written byte. - Copyright (C) 2003, 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2003, 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/memrchr.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/memrchr.c
Changed
@@ -1,6 +1,6 @@ /* memrchr -- find the last occurrence of a byte in a memory block - Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2021 Free Software + Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2022 Free Software Foundation, Inc. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), @@ -11,7 +11,7 @@ This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/minmax.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/minmax.h
Changed
@@ -1,5 +1,5 @@ /* MIN, MAX macros. - Copyright (C) 1995, 1998, 2001, 2003, 2005, 2009-2021 Free Software + Copyright (C) 1995, 1998, 2001, 2003, 2005, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/msvc-inval.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/msvc-inval.c
Changed
@@ -1,5 +1,5 @@ /* Invalid parameter handler for MSVC runtime libraries. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/msvc-inval.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/msvc-inval.h
Changed
@@ -1,5 +1,5 @@ /* Invalid parameter handler for MSVC runtime libraries. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/msvc-nothrow.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/msvc-nothrow.c
Changed
@@ -1,6 +1,6 @@ /* Wrappers that don't throw invalid parameter notifications with MSVC runtime libraries. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/msvc-nothrow.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/msvc-nothrow.h
Changed
@@ -1,6 +1,6 @@ /* Wrappers that don't throw invalid parameter notifications with MSVC runtime libraries. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/open-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/open-safer.c
Changed
@@ -1,10 +1,10 @@ /* Invoke open, but avoid some glitches. - Copyright (C) 2005-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/open.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/open.c
Changed
@@ -1,5 +1,5 @@ /* Open a descriptor to a file. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat-die.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat-die.c
Changed
@@ -1,10 +1,10 @@ /* Report a save- or restore-cwd failure in our openat replacement and then exit. - Copyright (C) 2005-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat-priv.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat-priv.h
Changed
@@ -1,10 +1,10 @@ /* Internals for openat-like functions. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat-proc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat-proc.c
Changed
@@ -1,10 +1,10 @@ /* Create /proc/self/fd-related names for subfiles of open directories. - Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat-safer.c
Changed
@@ -1,10 +1,10 @@ /* Invoke openat, but avoid some glitches. - Copyright (C) 2005-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat.c
Changed
@@ -1,9 +1,9 @@ /* provide a replacement openat function - Copyright (C) 2004-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/openat.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/openat.h
Changed
@@ -1,9 +1,9 @@ /* provide a replacement openat function - Copyright (C) 2004-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2004-2006, 2008-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -98,12 +98,14 @@ # define STATAT_INLINE _GL_INLINE # endif +_GL_ATTRIBUTE_DEPRECATED STATAT_INLINE int statat (int fd, char const *name, struct stat *st) { return fstatat (fd, name, st, 0); } +_GL_ATTRIBUTE_DEPRECATED STATAT_INLINE int lstatat (int fd, char const *name, struct stat *st) {
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/opendir-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/opendir-safer.c
Changed
@@ -1,10 +1,10 @@ /* Invoke opendir, but avoid some glitches. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/opendir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/opendir.c
Changed
@@ -1,5 +1,5 @@ /* Start reading the entries of a directory. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/pathmax.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/pathmax.h
Changed
@@ -1,5 +1,5 @@ /* Define PATH_MAX somehow. Requires sys/types.h. - Copyright (C) 1992, 1999, 2001, 2003, 2005, 2009-2021 Free Software + Copyright (C) 1992, 1999, 2001, 2003, 2005, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/perror.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/perror.c
Changed
@@ -1,5 +1,5 @@ /* Print a message describing error code. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. Written by Bruno Haible and Simon Josefsson. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/pipe-safer.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/pipe-safer.c
Changed
@@ -1,9 +1,9 @@ /* Invoke pipe, but avoid some glitches. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/pipe.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/pipe.c
Changed
@@ -1,5 +1,5 @@ /* Create a pipe. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-args.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-args.c
Changed
@@ -1,5 +1,5 @@ /* Decomposed printf argument list. - Copyright (C) 1999, 2002-2003, 2005-2007, 2009-2021 Free Software + Copyright (C) 1999, 2002-2003, 2005-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-args.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-args.h
Changed
@@ -1,5 +1,5 @@ /* Decomposed printf argument list. - Copyright (C) 1999, 2002-2003, 2006-2007, 2011-2021 Free Software + Copyright (C) 1999, 2002-2003, 2006-2007, 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-frexp.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-frexp.c
Changed
@@ -1,5 +1,5 @@ /* Split a double into fraction and mantissa, for hexadecimal printf. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-frexp.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-frexp.h
Changed
@@ -1,5 +1,5 @@ /* Split a double into fraction and mantissa, for hexadecimal printf. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-frexpl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-frexpl.c
Changed
@@ -1,5 +1,5 @@ /* Split a 'long double' into fraction and mantissa, for hexadecimal printf. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-frexpl.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-frexpl.h
Changed
@@ -1,5 +1,5 @@ /* Split a 'long double' into fraction and mantissa, for hexadecimal printf. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-parse.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-parse.c
Changed
@@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 1999-2000, 2002-2003, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 1999-2000, 2002-2003, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf-parse.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf-parse.h
Changed
@@ -1,5 +1,5 @@ /* Parse printf format string. - Copyright (C) 1999, 2002-2003, 2005, 2007, 2010-2021 Free Software + Copyright (C) 1999, 2002-2003, 2005, 2007, 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/printf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/printf.c
Changed
@@ -1,9 +1,9 @@ /* Formatted output to a stream. - Copyright (C) 2007, 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/raise.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/raise.c
Changed
@@ -1,6 +1,6 @@ /* Provide a non-threads replacement for the POSIX raise function. - Copyright (C) 2002-2003, 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2002-2003, 2005-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/readdir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/readdir.c
Changed
@@ -1,5 +1,5 @@ /* Read the next entry of a directory. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/realloc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/realloc.c
Changed
@@ -1,6 +1,6 @@ /* realloc() function that is glibc compatible. - Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2021 Free Software + Copyright (C) 1997, 2003-2004, 2006-2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/reallocarray.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/reallocarray.c
Changed
@@ -1,6 +1,6 @@ /* reallocarray function that is glibc compatible. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/rmdir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/rmdir.c
Changed
@@ -1,6 +1,6 @@ /* Work around rmdir bugs. - Copyright (C) 1988, 1990, 1999, 2003-2006, 2009-2021 Free Software + Copyright (C) 1988, 1990, 1999, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/save-cwd.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/save-cwd.c
Changed
@@ -1,11 +1,11 @@ /* save-cwd.c -- Save and restore current working directory. - Copyright (C) 1995, 1997-1998, 2003-2006, 2009-2021 Free Software + Copyright (C) 1995, 1997-1998, 2003-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/save-cwd.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/save-cwd.h
Changed
@@ -1,11 +1,11 @@ /* Save and restore current working directory. - Copyright (C) 1995, 1997-1998, 2003, 2009-2021 Free Software Foundation, + Copyright (C) 1995, 1997-1998, 2003, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/savedir.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/savedir.c
Changed
@@ -1,11 +1,11 @@ /* savedir.c -- save the list of files in a directory in a string - Copyright (C) 1990, 1997-2001, 2003-2006, 2009-2021 Free Software + Copyright (C) 1990, 1997-2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/savedir.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/savedir.h
Changed
@@ -1,11 +1,11 @@ /* Save the list of files in a directory in a string. - Copyright (C) 1997, 1999, 2001, 2003, 2005, 2009-2021 Free Software + Copyright (C) 1997, 1999, 2001, 2003, 2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sig-handler.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/sig-handler.c
Changed
@@ -1,6 +1,6 @@ /* Convenience declarations when working with <signal.h>. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sig-handler.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/sig-handler.h
Changed
@@ -1,6 +1,6 @@ /* Convenience declarations when working with <signal.h>. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sigaction.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/sigaction.c
Changed
@@ -1,5 +1,5 @@ /* POSIX compatible signal blocking. - Copyright (C) 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2008-2022 Free Software Foundation, Inc. Written by Eric Blake <ebb9@byu.net>, 2008. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/signal.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/signal.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <signal.h>. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/signbitd.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/signbitd.c
Changed
@@ -1,5 +1,5 @@ /* signbit() macro: Determine the sign bit of a floating-point number. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/signbitf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/signbitf.c
Changed
@@ -1,5 +1,5 @@ /* signbit() macro: Determine the sign bit of a floating-point number. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/signbitl.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/signbitl.c
Changed
@@ -1,5 +1,5 @@ /* signbit() macro: Determine the sign bit of a floating-point number. - Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sigprocmask.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/sigprocmask.c
Changed
@@ -1,5 +1,5 @@ /* POSIX compatible signal blocking. - Copyright (C) 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2006-2022 Free Software Foundation, Inc. Written by Bruno Haible <bruno@clisp.org>, 2006. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/size_max.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/size_max.h
Changed
@@ -1,5 +1,5 @@ /* size_max.h -- declare SIZE_MAX through system headers - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. Written by Simon Josefsson. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stat-time.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/stat-time.c
Changed
@@ -1,6 +1,6 @@ /* stat-related time functions. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stat-time.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stat-time.h
Changed
@@ -1,6 +1,6 @@ /* stat-related time functions. - Copyright (C) 2005, 2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005, 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stat-w32.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/stat-w32.c
Changed
@@ -1,5 +1,5 @@ /* Core of implementation of fstat and stat for native Windows. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stat-w32.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stat-w32.h
Changed
@@ -1,5 +1,5 @@ /* Core of implementation of fstat and stat for native Windows. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stat.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/stat.c
Changed
@@ -1,5 +1,5 @@ /* Work around platform bugs in stat. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdalign.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdalign.in.h
Changed
@@ -1,6 +1,6 @@ /* A substitute for ISO C11 <stdalign.h>. - Copyright 2011-2021 Free Software Foundation, Inc. + Copyright 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdbool.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdbool.in.h
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2003, 2006-2021 Free Software Foundation, Inc. +/* Copyright (C) 2001-2003, 2006-2022 Free Software Foundation, Inc. Written by Bruno Haible <haible@clisp.cons.org>, 2001. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stddef.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stddef.in.h
Changed
@@ -1,6 +1,6 @@ /* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdint.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdint.in.h
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2002, 2004-2021 Free Software Foundation, Inc. +/* Copyright (C) 2001-2002, 2004-2022 Free Software Foundation, Inc. Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood. This file is part of gnulib.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdio-impl.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdio-impl.h
Changed
@@ -1,5 +1,5 @@ /* Implementation details of FILE streams. - Copyright (C) 2007-2008, 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2008, 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.12.tar.xz/lib/stdio-read.c
Added
@@ -0,0 +1,168 @@ +/* POSIX compatible FILE stream read function. + Copyright (C) 2008-2022 Free Software Foundation, Inc. + Written by Bruno Haible <bruno@clisp.org>, 2011. + + This file is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2.1 of the + License, or (at your option) any later version. + + This file is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. */ + +#include <config.h> + +/* Specification. */ +#include <stdio.h> + +/* Replace these functions only if module 'nonblocking' is requested. */ +#if GNULIB_NONBLOCKING + +/* On native Windows platforms, when read() is called on a non-blocking pipe + with an empty buffer, ReadFile() fails with error GetLastError() = + ERROR_NO_DATA, and read() in consequence fails with error EINVAL. This + read() function is at the basis of the function which fills the buffer of + a FILE stream. */ + +# if defined _WIN32 && ! defined __CYGWIN__ + +# include <errno.h> +# include <io.h> + +# define WIN32_LEAN_AND_MEAN /* avoid including junk */ +# include <windows.h> + +# if GNULIB_MSVC_NOTHROW +# include "msvc-nothrow.h" +# else +# include <io.h> +# endif + +/* Don't assume that UNICODE is not defined. */ +# undef GetNamedPipeHandleState +# define GetNamedPipeHandleState GetNamedPipeHandleStateA + +# define CALL_WITH_ERRNO_FIX(RETTYPE, EXPRESSION, FAILED) \ + if (ferror (stream)) \ + return (EXPRESSION); \ + else \ + { \ + RETTYPE ret; \ + SetLastError (0); \ + ret = (EXPRESSION); \ + if (FAILED) \ + { \ + if (GetLastError () == ERROR_NO_DATA && ferror (stream)) \ + { \ + int fd = fileno (stream); \ + if (fd >= 0) \ + { \ + HANDLE h = (HANDLE) _get_osfhandle (fd); \ + if (GetFileType (h) == FILE_TYPE_PIPE) \ + { \ + /* h is a pipe or socket. */ \ + DWORD state; \ + if (GetNamedPipeHandleState (h, &state, NULL, NULL, \ + NULL, NULL, 0) \ + && (state & PIPE_NOWAIT) != 0) \ + /* h is a pipe in non-blocking mode. \ + Change errno from EINVAL to EAGAIN. */ \ + errno = EAGAIN; \ + } \ + } \ + } \ + } \ + return ret; \ + } + +/* Enable this function definition only if gnulib's <stdio.h> has prepared it. + Otherwise we get a function definition conflict with mingw64's <stdio.h>. */ +# if GNULIB_SCANF +int +scanf (const char *format, ...) +{ + int retval; + va_list args; + + va_start (args, format); + retval = vfscanf (stdin, format, args); + va_end (args); + + return retval; +} +# endif + +/* Enable this function definition only if gnulib's <stdio.h> has prepared it. + Otherwise we get a function definition conflict with mingw64's <stdio.h>. */ +# if GNULIB_FSCANF +int +fscanf (FILE *stream, const char *format, ...) +{ + int retval; + va_list args; + + va_start (args, format); + retval = vfscanf (stream, format, args); + va_end (args); + + return retval; +} +# endif + +/* Enable this function definition only if gnulib's <stdio.h> has prepared it. + Otherwise we get a function definition conflict with mingw64's <stdio.h>. */ +# if GNULIB_VSCANF +int +vscanf (const char *format, va_list args) +{ + return vfscanf (stdin, format, args); +} +# endif + +/* Enable this function definition only if gnulib's <stdio.h> has prepared it. + Otherwise we get a function definition conflict with mingw64's <stdio.h>. */ +# if GNULIB_VFSCANF +int +vfscanf (FILE *stream, const char *format, va_list args) +#undef vfscanf +{ + CALL_WITH_ERRNO_FIX (int, vfscanf (stream, format, args), ret == EOF) +} +# endif + +int +getchar (void) +{ + return fgetc (stdin); +} + +int +fgetc (FILE *stream) +#undef fgetc +{ + CALL_WITH_ERRNO_FIX (int, fgetc (stream), ret == EOF) +} + +char * +fgets (char *s, int n, FILE *stream) +#undef fgets +{ + CALL_WITH_ERRNO_FIX (char *, fgets (s, n, stream), ret == NULL) +} + +/* We intentionally don't bother to fix gets. */ + +size_t +fread (void *ptr, size_t s, size_t n, FILE *stream) +#undef fread +{ + CALL_WITH_ERRNO_FIX (size_t, fread (ptr, s, n, stream), ret < n) +} + +# endif +#endif
View file
_service:tar_scm:gzip-1.12.tar.xz/lib/stdio-write.c
Added
@@ -0,0 +1,206 @@ +/* POSIX compatible FILE stream write function. + Copyright (C) 2008-2022 Free Software Foundation, Inc. + Written by Bruno Haible <bruno@clisp.org>, 2008. + + This file is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 2.1 of the + License, or (at your option) any later version. + + This file is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. */ + +#include <config.h> + +/* Specification. */ +#include <stdio.h> + +/* Replace these functions only if module 'nonblocking' or module 'sigpipe' is + requested. */ +#if GNULIB_NONBLOCKING || GNULIB_SIGPIPE + +/* On native Windows platforms, SIGPIPE does not exist. When write() is + called on a pipe with no readers, WriteFile() fails with error + GetLastError() = ERROR_NO_DATA, and write() in consequence fails with + error EINVAL. This write() function is at the basis of the function + which flushes the buffer of a FILE stream. */ + +# if defined _WIN32 && ! defined __CYGWIN__ + +# include <errno.h> +# include <signal.h> +# include <io.h> + +# define WIN32_LEAN_AND_MEAN /* avoid including junk */ +# include <windows.h> + +# if GNULIB_MSVC_NOTHROW +# include "msvc-nothrow.h" +# else +# include <io.h> +# endif + +/* Don't assume that UNICODE is not defined. */ +# undef GetNamedPipeHandleState +# define GetNamedPipeHandleState GetNamedPipeHandleStateA + +# if GNULIB_NONBLOCKING +# define CLEAR_ERRNO \ + errno = 0; +# define HANDLE_ENOSPC \ + if (errno == ENOSPC && ferror (stream)) \ + { \ + int fd = fileno (stream); \ + if (fd >= 0) \ + { \ + HANDLE h = (HANDLE) _get_osfhandle (fd); \ + if (GetFileType (h) == FILE_TYPE_PIPE) \ + { \ + /* h is a pipe or socket. */ \ + DWORD state; \ + if (GetNamedPipeHandleState (h, &state, NULL, NULL, \ + NULL, NULL, 0) \ + && (state & PIPE_NOWAIT) != 0) \ + /* h is a pipe in non-blocking mode. \ + Change errno from ENOSPC to EAGAIN. */ \ + errno = EAGAIN; \ + } \ + } \ + } \ + else +# else +# define CLEAR_ERRNO +# define HANDLE_ENOSPC +# endif + +# if GNULIB_SIGPIPE +# define CLEAR_LastError \ + SetLastError (0); +# define HANDLE_ERROR_NO_DATA \ + if (GetLastError () == ERROR_NO_DATA && ferror (stream)) \ + { \ + int fd = fileno (stream); \ + if (fd >= 0 \ + && GetFileType ((HANDLE) _get_osfhandle (fd)) \ + == FILE_TYPE_PIPE) \ + { \ + /* Try to raise signal SIGPIPE. */ \ + raise (SIGPIPE); \ + /* If it is currently blocked or ignored, change errno from \ + EINVAL to EPIPE. */ \ + errno = EPIPE; \ + } \ + } \ + else +# else +# define CLEAR_LastError +# define HANDLE_ERROR_NO_DATA +# endif + +# define CALL_WITH_SIGPIPE_EMULATION(RETTYPE, EXPRESSION, FAILED) \ + if (ferror (stream)) \ + return (EXPRESSION); \ + else \ + { \ + RETTYPE ret; \ + CLEAR_ERRNO \ + CLEAR_LastError \ + ret = (EXPRESSION); \ + if (FAILED) \ + { \ + HANDLE_ENOSPC \ + HANDLE_ERROR_NO_DATA \ + ; \ + } \ + return ret; \ + } + +# if !REPLACE_PRINTF_POSIX /* avoid collision with printf.c */ +int +printf (const char *format, ...) +{ + int retval; + va_list args; + + va_start (args, format); + retval = vfprintf (stdout, format, args); + va_end (args); + + return retval; +} +# endif + +# if !REPLACE_FPRINTF_POSIX /* avoid collision with fprintf.c */ +int +fprintf (FILE *stream, const char *format, ...) +{ + int retval; + va_list args; + + va_start (args, format); + retval = vfprintf (stream, format, args); + va_end (args); + + return retval; +} +# endif + +# if !REPLACE_VPRINTF_POSIX /* avoid collision with vprintf.c */ +int +vprintf (const char *format, va_list args) +{ + return vfprintf (stdout, format, args); +} +# endif + +# if !REPLACE_VFPRINTF_POSIX /* avoid collision with vfprintf.c */ +int +vfprintf (FILE *stream, const char *format, va_list args) +#undef vfprintf +{ + CALL_WITH_SIGPIPE_EMULATION (int, vfprintf (stream, format, args), ret == EOF) +} +# endif + +int +putchar (int c) +{ + return fputc (c, stdout); +} + +int +fputc (int c, FILE *stream) +#undef fputc +{ + CALL_WITH_SIGPIPE_EMULATION (int, fputc (c, stream), ret == EOF) +} + +int +fputs (const char *string, FILE *stream) +#undef fputs +{ + CALL_WITH_SIGPIPE_EMULATION (int, fputs (string, stream), ret == EOF) +} + +int +puts (const char *string) +#undef puts +{ + FILE *stream = stdout; + CALL_WITH_SIGPIPE_EMULATION (int, puts (string), ret == EOF) +} + +size_t +fwrite (const void *ptr, size_t s, size_t n, FILE *stream) +#undef fwrite +{ + CALL_WITH_SIGPIPE_EMULATION (size_t, fwrite (ptr, s, n, stream), ret < n) +} + +# endif +#endif
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdio.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdio.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <stdio.h>. - Copyright (C) 2004, 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2004, 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -399,7 +399,8 @@ #endif #if @GNULIB_FOPEN@ -# if @REPLACE_FOPEN@ +# if (@GNULIB_FOPEN@ && @REPLACE_FOPEN@) \ + || (@GNULIB_FOPEN_GNU@ && @REPLACE_FOPEN_FOR_FOPEN_GNU@) # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef fopen # define fopen rpl_fopen
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdlib.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdlib.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <stdlib.h>. - Copyright (C) 1995, 2001-2004, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 1995, 2001-2004, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -111,7 +111,7 @@ #endif /* _GL_ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that - can be freed via 'free'; it can be used only after including <stdlib.h>. */ + can be freed via 'free'; it can be used only after declaring 'free'. */ /* Applies to: functions. Cannot be used on inline functions. */ #ifndef _GL_ATTRIBUTE_DEALLOC_FREE # define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) @@ -260,7 +260,8 @@ #endif #if @GNULIB_CALLOC_POSIX@ -# if @REPLACE_CALLOC@ +# if (@GNULIB_CALLOC_POSIX@ && @REPLACE_CALLOC_FOR_CALLOC_POSIX@) \ + || (@GNULIB_CALLOC_GNU@ && @REPLACE_CALLOC_FOR_CALLOC_GNU@) # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef calloc # define calloc rpl_calloc @@ -474,7 +475,8 @@ by never specifying a zero size), so it does not need malloc or realloc to be redefined. */ #if @GNULIB_MALLOC_POSIX@ -# if @REPLACE_MALLOC@ +# if (@GNULIB_MALLOC_POSIX@ && @REPLACE_MALLOC_FOR_MALLOC_POSIX@) \ + || (@GNULIB_MALLOC_GNU@ && @REPLACE_MALLOC_FOR_MALLOC_GNU@) # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \ || _GL_USE_STDLIB_ALLOC) # undef malloc @@ -828,29 +830,35 @@ /* Sort an array of NMEMB elements, starting at address BASE, each element occupying SIZE bytes, in ascending order according to the comparison function COMPARE. */ +# ifdef __cplusplus +extern "C" { +# endif +# if !GNULIB_defined_qsort_r_fn_types +typedef int (*_gl_qsort_r_compar_fn) (void const *, void const *, void *); +# define GNULIB_defined_qsort_r_fn_types 1 +# endif +# ifdef __cplusplus +} +# endif # if @REPLACE_QSORT_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef qsort_r # define qsort_r rpl_qsort_r # endif _GL_FUNCDECL_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size, - int (*compare) (void const *, void const *, - void *), + _gl_qsort_r_compar_fn compare, void *arg) _GL_ARG_NONNULL ((1, 4))); _GL_CXXALIAS_RPL (qsort_r, void, (void *base, size_t nmemb, size_t size, - int (*compare) (void const *, void const *, - void *), + _gl_qsort_r_compar_fn compare, void *arg)); # else # if !@HAVE_QSORT_R@ _GL_FUNCDECL_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size, - int (*compare) (void const *, void const *, - void *), + _gl_qsort_r_compar_fn compare, void *arg) _GL_ARG_NONNULL ((1, 4))); # endif _GL_CXXALIAS_SYS (qsort_r, void, (void *base, size_t nmemb, size_t size, - int (*compare) (void const *, void const *, - void *), + _gl_qsort_r_compar_fn compare, void *arg)); # endif _GL_CXXALIASWARN (qsort_r); @@ -1101,7 +1109,8 @@ #if @GNULIB_REALLOC_POSIX@ -# if @REPLACE_REALLOC@ +# if (@GNULIB_REALLOC_POSIX@ && @REPLACE_REALLOC_FOR_REALLOC_POSIX@) \ + || (@GNULIB_REALLOC_GNU@ && @REPLACE_REALLOC_FOR_REALLOC_GNU@) # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \ || _GL_USE_STDLIB_ALLOC) # undef realloc
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stdnoreturn.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/stdnoreturn.in.h
Changed
@@ -1,6 +1,6 @@ /* A substitute for ISO C11 <stdnoreturn.h>. - Copyright 2012-2021 Free Software Foundation, Inc. + Copyright 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stpcpy.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/stpcpy.c
Changed
@@ -1,5 +1,5 @@ /* stpcpy.c -- copy a string and return pointer to end of new string - Copyright (C) 1992, 1995, 1997-1998, 2006, 2009-2021 Free Software + Copyright (C) 1992, 1995, 1997-1998, 2006, 2009-2022 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/strdup.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/strdup.c
Changed
@@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996-1998, 2002-2004, 2006-2007, 2009-2021 Free Software +/* Copyright (C) 1991, 1996-1998, 2002-2004, 2006-2007, 2009-2022 Free Software Foundation, Inc. This file is part of the GNU C Library.
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/strerror-override.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/strerror-override.c
Changed
@@ -1,6 +1,6 @@ /* strerror-override.c --- POSIX compatible system error routine - Copyright (C) 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/strerror-override.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/strerror-override.h
Changed
@@ -1,6 +1,6 @@ /* strerror-override.h --- POSIX compatible system error routine - Copyright (C) 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/strerror.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/strerror.c
Changed
@@ -1,6 +1,6 @@ /* strerror.c --- POSIX compatible system error routine - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/strerror_r.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/strerror_r.c
Changed
@@ -1,6 +1,6 @@ /* strerror_r.c --- POSIX compatible system error routine - Copyright (C) 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -34,33 +34,26 @@ #include "strerror-override.h" -#if (__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__) && HAVE___XPG_STRERROR_R /* glibc >= 2.3.4, cygwin >= 1.7.9 */ +#if STRERROR_R_CHAR_P -# define USE_XPG_STRERROR_R 1 -extern -#ifdef __cplusplus -"C" -#endif -int __xpg_strerror_r (int errnum, char *buf, size_t buflen); +# if HAVE___XPG_STRERROR_R +_GL_EXTERN_C int __xpg_strerror_r (int errnum, char *buf, size_t buflen); +# endif -#elif HAVE_DECL_STRERROR_R && !(__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__) +#elif HAVE_DECL_STRERROR_R -/* The system's strerror_r function is OK, except that its third argument +/* The system's strerror_r function's API is OK, except that its third argument is 'int', not 'size_t', or its return type is wrong. */ # include <limits.h> -# define USE_SYSTEM_STRERROR_R 1 - -#else /* (__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__ ? !HAVE___XPG_STRERROR_R : !HAVE_DECL_STRERROR_R) */ +#else /* Use the system's strerror(). Exclude glibc and cygwin because the system strerror_r has the wrong return type, and cygwin 1.7.9 strerror_r clobbers strerror. */ # undef strerror -# define USE_SYSTEM_STRERROR 1 - # if defined __NetBSD__ || defined __hpux || (defined _WIN32 && !defined __CYGWIN__) || defined __sgi || (defined __sun && !defined _LP64) || defined __CYGWIN__ /* No locking needed. */ @@ -166,22 +159,28 @@ int ret; int saved_errno = errno; -#if USE_XPG_STRERROR_R +#if STRERROR_R_CHAR_P { + ret = 0; + +# if HAVE___XPG_STRERROR_R ret = __xpg_strerror_r (errnum, buf, buflen); if (ret < 0) ret = errno; +# endif + if (!*buf) { /* glibc 2.13 would not touch buf on err, so we have to fall back to GNU strerror_r which always returns a thread-safe untruncated string to (partially) copy into our buf. */ - safe_copy (buf, buflen, strerror_r (errnum, buf, buflen)); + char *errstring = strerror_r (errnum, buf, buflen); + ret = errstring ? safe_copy (buf, buflen, errstring) : errno; } } -#elif USE_SYSTEM_STRERROR_R +#elif HAVE_DECL_STRERROR_R if (buflen > INT_MAX) buflen = INT_MAX; @@ -245,7 +244,7 @@ } # endif -#else /* USE_SYSTEM_STRERROR */ +#else /* strerror_r is not declared. */ /* Try to do what strerror (errnum) does, but without clobbering the buffer used by strerror(). */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/string.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/string.in.h
Changed
@@ -1,6 +1,6 @@ /* A GNU-like <string.h>. - Copyright (C) 1995-1996, 2001-2021 Free Software Foundation, Inc. + Copyright (C) 1995-1996, 2001-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -47,9 +47,6 @@ /* NetBSD 5.0 mis-defines NULL. */ #include <stddef.h> -/* Get free(). */ -#include <stdlib.h> - /* MirBSD defines mbslen as a macro. */ #if @GNULIB_MBSLEN@ && defined __MirBSD__ # include <wchar.h> @@ -70,6 +67,35 @@ # include <strings.h> #endif +/* _GL_ATTRIBUTE_DEALLOC (F, I) declares that the function returns pointers + that can be freed by passing them as the Ith argument to the + function F. */ +#ifndef _GL_ATTRIBUTE_DEALLOC +# if __GNUC__ >= 11 +# define _GL_ATTRIBUTE_DEALLOC(f, i) __attribute__ ((__malloc__ (f, i))) +# else +# define _GL_ATTRIBUTE_DEALLOC(f, i) +# endif +#endif + +/* _GL_ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that + can be freed via 'free'; it can be used only after declaring 'free'. */ +/* Applies to: functions. Cannot be used on inline functions. */ +#ifndef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +#endif + +/* _GL_ATTRIBUTE_MALLOC declares that the function returns a pointer to freshly + allocated memory. */ +/* Applies to: functions. */ +#ifndef _GL_ATTRIBUTE_MALLOC +# if __GNUC__ >= 3 || defined __clang__ +# define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__)) +# else +# define _GL_ATTRIBUTE_MALLOC +# endif +#endif + /* The __attribute__ feature is available in gcc versions 2.5 and later. The attribute __pure__ was added in gcc 2.96. */ #ifndef _GL_ATTRIBUTE_PURE @@ -86,6 +112,29 @@ /* The definition of _GL_WARN_ON_USE is copied here. */ +/* Make _GL_ATTRIBUTE_DEALLOC_FREE work, even though <stdlib.h> may not have + been included yet. */ +#if @GNULIB_FREE_POSIX@ +# if (@REPLACE_FREE@ && !defined free \ + && !(defined __cplusplus && defined GNULIB_NAMESPACE)) +/* We can't do '#define free rpl_free' here. */ +_GL_EXTERN_C void rpl_free (void *); +# undef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (rpl_free, 1) +# else +# if defined _MSC_VER +_GL_EXTERN_C void __cdecl free (void *); +# else +_GL_EXTERN_C void free (void *); +# endif +# endif +#else +# if defined _MSC_VER +_GL_EXTERN_C void __cdecl free (void *); +# else +_GL_EXTERN_C void free (void *); +# endif +#endif /* Clear a block of memory. The compiler will not delete a call to this function, even if the block is dead after the call. */ @@ -514,22 +563,35 @@ # undef strndup # define strndup rpl_strndup # endif -_GL_FUNCDECL_RPL (strndup, char *, (char const *__s, size_t __n) - _GL_ARG_NONNULL ((1))); +_GL_FUNCDECL_RPL (strndup, char *, + (char const *__s, size_t __n) + _GL_ARG_NONNULL ((1)) + _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE); _GL_CXXALIAS_RPL (strndup, char *, (char const *__s, size_t __n)); # else -# if ! @HAVE_DECL_STRNDUP@ -_GL_FUNCDECL_SYS (strndup, char *, (char const *__s, size_t __n) - _GL_ARG_NONNULL ((1))); +# if !@HAVE_DECL_STRNDUP@ || __GNUC__ >= 11 +_GL_FUNCDECL_SYS (strndup, char *, + (char const *__s, size_t __n) + _GL_ARG_NONNULL ((1)) + _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE); # endif _GL_CXXALIAS_SYS (strndup, char *, (char const *__s, size_t __n)); # endif _GL_CXXALIASWARN (strndup); -#elif defined GNULIB_POSIXCHECK -# undef strndup -# if HAVE_RAW_DECL_STRNDUP +#else +# if __GNUC__ >= 11 +/* For -Wmismatched-dealloc: Associate strndup with free or rpl_free. */ +_GL_FUNCDECL_SYS (strndup, char *, + (char const *__s, size_t __n) + _GL_ARG_NONNULL ((1)) + _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE); +# endif +# if defined GNULIB_POSIXCHECK +# undef strndup +# if HAVE_RAW_DECL_STRNDUP _GL_WARN_ON_USE (strndup, "strndup is unportable - " "use gnulib module strndup for portability"); +# endif # endif #endif
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/stripslash.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/stripslash.c
Changed
@@ -1,6 +1,6 @@ /* stripslash.c -- remove redundant trailing slashes from a file name - Copyright (C) 1990, 2001, 2003-2006, 2009-2021 Free Software Foundation, + Copyright (C) 1990, 2001, 2003-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sys_stat.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/sys_stat.in.h
Changed
@@ -1,5 +1,5 @@ /* Provide a more complete sys/stat.h header file. - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sys_time.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/sys_time.in.h
Changed
@@ -1,6 +1,6 @@ /* Provide a more complete sys/time.h. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/sys_types.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/sys_types.in.h
Changed
@@ -1,6 +1,6 @@ /* Provide a more complete sys/types.h. - Copyright (C) 2011-2021 Free Software Foundation, Inc. + Copyright (C) 2011-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/time.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/time.in.h
Changed
@@ -1,6 +1,6 @@ /* A more-standard <time.h>. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -120,6 +120,17 @@ _GL_CXXALIASWARN (timespec_get); # endif +/* Set *TS to the current time resolution, and return BASE. + Upon failure, return 0. */ +# if @GNULIB_TIMESPEC_GETRES@ +# if ! @HAVE_TIMESPEC_GETRES@ +_GL_FUNCDECL_SYS (timespec_getres, int, (struct timespec *ts, int base) + _GL_ARG_NONNULL ((1))); +# endif +_GL_CXXALIAS_SYS (timespec_getres, int, (struct timespec *ts, int base)); +_GL_CXXALIASWARN (timespec_getres); +# endif + /* Sleep for at least RQTP seconds unless interrupted, If interrupted, return -1 and store the remaining time into RMTP. See <https://pubs.opengroup.org/onlinepubs/9699919799/functions/nanosleep.html>. */
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/timespec.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/timespec.c
Changed
@@ -1,10 +1,10 @@ /* Inline functions for <timespec.h>. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/timespec.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/timespec.h
Changed
@@ -1,11 +1,11 @@ /* timespec -- System time interface - Copyright (C) 2000, 2002, 2004-2005, 2007, 2009-2021 Free Software + Copyright (C) 2000, 2002, 2004-2005, 2007, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful, @@ -88,6 +88,7 @@ return a.tv_sec + a.tv_nsec / 1e9; } +long int gettime_res (void); struct timespec current_timespec (void); void gettime (struct timespec *) _GL_ARG_NONNULL ((1)); int settime (struct timespec const *) _GL_ARG_NONNULL ((1));
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unistd--.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/unistd--.h
Changed
@@ -1,10 +1,10 @@ /* Like unistd.h, but redefine some names to avoid glitches. - Copyright (C) 2005, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unistd-safer.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/unistd-safer.h
Changed
@@ -1,10 +1,10 @@ /* Invoke unistd-like functions, but avoid some glitches. - Copyright (C) 2001, 2003, 2005, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2001, 2003, 2005, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unistd.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/unistd.c
Changed
@@ -1,6 +1,6 @@ /* Inline functions for <unistd.h>. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unistd.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/unistd.in.h
Changed
@@ -1,5 +1,5 @@ /* Substitute for and wrapper around <unistd.h>. - Copyright (C) 2003-2021 Free Software Foundation, Inc. + Copyright (C) 2003-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -415,16 +415,30 @@ #if @GNULIB_COPY_FILE_RANGE@ -# if !@HAVE_COPY_FILE_RANGE@ +# if @REPLACE_COPY_FILE_RANGE@ +# if !(defined __cplusplus && defined GNULIB_NAMESPACE) +# undef copy_file_range +# define copy_file_range rpl_copy_file_range +# endif +_GL_FUNCDECL_RPL (copy_file_range, ssize_t, (int ifd, off_t *ipos, + int ofd, off_t *opos, + size_t len, unsigned flags)); +_GL_CXXALIAS_RPL (copy_file_range, ssize_t, (int ifd, off_t *ipos, + int ofd, off_t *opos, + size_t len, unsigned flags)); +# else +# if !@HAVE_COPY_FILE_RANGE@ _GL_FUNCDECL_SYS (copy_file_range, ssize_t, (int ifd, off_t *ipos, int ofd, off_t *opos, size_t len, unsigned flags)); +# endif _GL_CXXALIAS_SYS (copy_file_range, ssize_t, (int ifd, off_t *ipos, int ofd, off_t *opos, size_t len, unsigned flags)); # endif _GL_CXXALIASWARN (copy_file_range); #elif defined GNULIB_POSIXCHECK +# undef copy_file_range # if HAVE_RAW_DECL_COPY_FILE_RANGE _GL_WARN_ON_USE (copy_file_range, "copy_file_range is unportable - " @@ -1409,7 +1423,8 @@ Read a password from /dev/tty or stdin. Function getpass() from module 'getpass-gnu': Read a password of arbitrary length from /dev/tty or stdin. */ -# if @REPLACE_GETPASS@ +# if (@GNULIB_GETPASS@ && @REPLACE_GETPASS@) \ + || (@GNULIB_GETPASS_GNU@ && @REPLACE_GETPASS_FOR_GETPASS_GNU@) # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getpass # define getpass rpl_getpass
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unlink.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/unlink.c
Changed
@@ -1,6 +1,6 @@ /* Work around unlink bugs. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/unlinkat.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/unlinkat.c
Changed
@@ -1,10 +1,10 @@ /* Work around unlinkat bugs on Solaris 9 and Hurd. - Copyright (C) 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -58,7 +58,7 @@ rule of letting unlink("link-to-dir/") attempt to unlink a directory. */ struct stat st; - result = lstatat (fd, name, &st); + result = fstatat (fd, name, &st, AT_SYMLINK_NOFOLLOW); if (result == 0 || errno == EOVERFLOW) { /* Trailing NUL will overwrite the trailing slash. */ @@ -71,7 +71,8 @@ memcpy (short_name, name, len); while (len && ISSLASH (short_namelen - 1)) short_name--len = '\0'; - if (len && (lstatat (fd, short_name, &st) || S_ISLNK (st.st_mode))) + if (len && (fstatat (fd, short_name, &st, AT_SYMLINK_NOFOLLOW) + || S_ISLNK (st.st_mode))) { free (short_name); errno = EPERM;
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/utime.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/utime.c
Changed
@@ -1,9 +1,9 @@ /* Work around platform bugs in utime. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/utime.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/utime.in.h
Changed
@@ -1,5 +1,5 @@ /* Substitute for and wrapper around <utime.h>. - Copyright (C) 2017-2021 Free Software Foundation, Inc. + Copyright (C) 2017-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/utimens.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/utimens.c
Changed
@@ -1,10 +1,10 @@ /* Set file access and modification times. - Copyright (C) 2003-2021 Free Software Foundation, Inc. + Copyright (C) 2003-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/utimens.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/utimens.h
Changed
@@ -1,10 +1,10 @@ /* Set file access and modification times. - Copyright 2012-2021 Free Software Foundation, Inc. + Copyright 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/vasnprintf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/vasnprintf.c
Changed
@@ -1,5 +1,5 @@ /* vsprintf with automatic memory allocation. - Copyright (C) 1999, 2002-2021 Free Software Foundation, Inc. + Copyright (C) 1999, 2002-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/vasnprintf.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/vasnprintf.h
Changed
@@ -1,5 +1,5 @@ /* vsprintf with automatic memory allocation. - Copyright (C) 2002-2004, 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2002-2004, 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/verify.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/verify.h
Changed
@@ -1,6 +1,6 @@ /* Compile-time assert-like macros. - Copyright (C) 2005-2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2009-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/vfprintf.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/vfprintf.c
Changed
@@ -1,9 +1,9 @@ /* Formatted output to a stream. - Copyright (C) 2004, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 2004, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; either version 3 of the + published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This file is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/warn-on-use.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/warn-on-use.h
Changed
@@ -1,5 +1,5 @@ /* A C macro for emitting warnings if a function is used. - Copyright (C) 2010-2021 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -84,20 +84,20 @@ # if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) /* A compiler attribute is available in gcc versions 4.3.0 and later. */ # define _GL_WARN_ON_USE(function, message) \ -extern __typeof__ (function) function __attribute__ ((__warning__ (message))) +_GL_WARN_EXTERN_C __typeof__ (function) function __attribute__ ((__warning__ (message))) # define _GL_WARN_ON_USE_ATTRIBUTE(message) \ __attribute__ ((__warning__ (message))) # elif __clang_major__ >= 4 /* Another compiler attribute is available in clang. */ # define _GL_WARN_ON_USE(function, message) \ -extern __typeof__ (function) function \ +_GL_WARN_EXTERN_C __typeof__ (function) function \ __attribute__ ((__diagnose_if__ (1, message, "warning"))) # define _GL_WARN_ON_USE_ATTRIBUTE(message) \ __attribute__ ((__diagnose_if__ (1, message, "warning"))) # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING /* Verify the existence of the function. */ # define _GL_WARN_ON_USE(function, message) \ -extern __typeof__ (function) function +_GL_WARN_EXTERN_C __typeof__ (function) function # define _GL_WARN_ON_USE_ATTRIBUTE(message) # else /* Unsupported. */ # define _GL_WARN_ON_USE(function, message) \
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/wchar.in.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/wchar.in.h
Changed
@@ -1,6 +1,6 @@ /* A substitute for ISO C99 <wchar.h>, for platforms that have issues. - Copyright (C) 2007-2021 Free Software Foundation, Inc. + Copyright (C) 2007-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -72,9 +72,6 @@ # include <stddef.h> #endif -/* Get free(). */ -#include <stdlib.h> - /* Include the original <wchar.h> if it exists. Some builds of uClibc lack it. */ /* The include_next requires a split double-inclusion guard. */ @@ -87,6 +84,35 @@ #ifndef _@GUARD_PREFIX@_WCHAR_H #define _@GUARD_PREFIX@_WCHAR_H +/* _GL_ATTRIBUTE_DEALLOC (F, I) declares that the function returns pointers + that can be freed by passing them as the Ith argument to the + function F. */ +#ifndef _GL_ATTRIBUTE_DEALLOC +# if __GNUC__ >= 11 +# define _GL_ATTRIBUTE_DEALLOC(f, i) __attribute__ ((__malloc__ (f, i))) +# else +# define _GL_ATTRIBUTE_DEALLOC(f, i) +# endif +#endif + +/* _GL_ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that + can be freed via 'free'; it can be used only after declaring 'free'. */ +/* Applies to: functions. Cannot be used on inline functions. */ +#ifndef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +#endif + +/* _GL_ATTRIBUTE_MALLOC declares that the function returns a pointer to freshly + allocated memory. */ +/* Applies to: functions. */ +#ifndef _GL_ATTRIBUTE_MALLOC +# if __GNUC__ >= 3 || defined __clang__ +# define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__)) +# else +# define _GL_ATTRIBUTE_MALLOC +# endif +#endif + /* The __attribute__ feature is available in gcc versions 2.5 and later. The attribute __pure__ was added in gcc 2.96. */ #ifndef _GL_ATTRIBUTE_PURE @@ -149,6 +175,29 @@ # endif #endif +/* Make _GL_ATTRIBUTE_DEALLOC_FREE work, even though <stdlib.h> may not have + been included yet. */ +#if @GNULIB_FREE_POSIX@ +# if (@REPLACE_FREE@ && !defined free \ + && !(defined __cplusplus && defined GNULIB_NAMESPACE)) +/* We can't do '#define free rpl_free' here. */ +_GL_EXTERN_C void rpl_free (void *); +# undef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (rpl_free, 1) +# else +# if defined _MSC_VER +_GL_EXTERN_C void __cdecl free (void *); +# else +_GL_EXTERN_C void free (void *); +# endif +# endif +#else +# if defined _MSC_VER +_GL_EXTERN_C void __cdecl free (void *); +# else +_GL_EXTERN_C void free (void *); +# endif +#endif /* Convert a single-byte character to a wide character. */ #if @GNULIB_BTOWC@
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-initguard.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-initguard.h
Changed
@@ -1,5 +1,5 @@ /* Init guards, somewhat like spinlocks (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-mutex.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-mutex.c
Changed
@@ -1,5 +1,5 @@ /* Plain mutexes (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-mutex.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-mutex.h
Changed
@@ -1,5 +1,5 @@ /* Plain mutexes (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-once.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-once.c
Changed
@@ -1,5 +1,5 @@ /* Once-only control (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-once.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-once.h
Changed
@@ -1,5 +1,5 @@ /* Once-only control (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-recmutex.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-recmutex.c
Changed
@@ -1,5 +1,5 @@ /* Plain recursive mutexes (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-recmutex.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-recmutex.h
Changed
@@ -1,5 +1,5 @@ /* Plain recursive mutexes (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-rwlock.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-rwlock.c
Changed
@@ -1,5 +1,5 @@ /* Read-write locks (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/windows-rwlock.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/windows-rwlock.h
Changed
@@ -1,5 +1,5 @@ /* Read-write locks (native Windows implementation). - Copyright (C) 2005-2021 Free Software Foundation, Inc. + Copyright (C) 2005-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xalloc-die.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/xalloc-die.c
Changed
@@ -1,11 +1,11 @@ /* Report a memory allocation failure and exit. - Copyright (C) 1997-2000, 2002-2004, 2006, 2009-2021 Free Software + Copyright (C) 1997-2000, 2002-2004, 2006, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xalloc-oversized.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/xalloc-oversized.h
Changed
@@ -1,6 +1,6 @@ /* xalloc-oversized.h -- memory allocation size checking - Copyright (C) 1990-2000, 2003-2004, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 1990-2000, 2003-2004, 2006-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xalloc.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/xalloc.h
Changed
@@ -1,10 +1,10 @@ /* xalloc.h -- malloc with out-of-memory checking - Copyright (C) 1990-2000, 2003-2004, 2006-2021 Free Software Foundation, Inc. + Copyright (C) 1990-2000, 2003-2004, 2006-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -60,6 +60,9 @@ void *ximalloc (idx_t s) _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_ALLOC_SIZE ((1)) _GL_ATTRIBUTE_RETURNS_NONNULL; +void *xinmalloc (idx_t n, idx_t s) + _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE + _GL_ATTRIBUTE_ALLOC_SIZE ((1, 2)) _GL_ATTRIBUTE_RETURNS_NONNULL; void *xzalloc (size_t s) _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_ALLOC_SIZE ((1)) _GL_ATTRIBUTE_RETURNS_NONNULL;
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xmalloc.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/xmalloc.c
Changed
@@ -1,10 +1,10 @@ /* xmalloc.c -- malloc with out of memory checking - Copyright (C) 1990-2000, 2002-2006, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 1990-2000, 2002-2006, 2008-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -101,6 +101,12 @@ return xreallocarray (NULL, n, s); } +void * +xinmalloc (idx_t n, idx_t s) +{ + return xireallocarray (NULL, n, s); +} + /* If P is null, allocate a block of at least *PS bytes; otherwise, reallocate P so that it contains more than *PS bytes. *PS must be nonzero unless P is null. Set *PS to the new block's size, and
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xsize.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/xsize.c
Changed
@@ -1,6 +1,6 @@ /* Checked size_t computations. - Copyright (C) 2012-2021 Free Software Foundation, Inc. + Copyright (C) 2012-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/xsize.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/xsize.h
Changed
@@ -1,6 +1,6 @@ /* xsize.h -- Checked size_t computations. - Copyright (C) 2003, 2008-2021 Free Software Foundation, Inc. + Copyright (C) 2003, 2008-2022 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/yesno.c -> _service:tar_scm:gzip-1.12.tar.xz/lib/yesno.c
Changed
@@ -1,10 +1,10 @@ /* yesno.c -- read a yes/no response from stdin - Copyright (C) 1990, 1998, 2001, 2003-2021 Free Software Foundation, Inc. + Copyright (C) 1990, 1998, 2001, 2003-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lib/yesno.h -> _service:tar_scm:gzip-1.12.tar.xz/lib/yesno.h
Changed
@@ -1,9 +1,9 @@ /* declare yesno - Copyright (C) 2004, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 2004, 2009-2022 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful,
View file
_service:tar_scm:gzip-1.11.tar.xz/lzw.h -> _service:tar_scm:gzip-1.12.tar.xz/lzw.h
Changed
@@ -1,6 +1,6 @@ /* lzw.h -- define the lzw functions. - Copyright (C) 1994-2021 Free Software Foundation, Inc. + Copyright (C) 1994-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly. This program is free software; you can redistribute it and/or modify @@ -45,7 +45,5 @@ #define FIRST (CLEAR+1) /* first free entry */ extern int maxbits; /* max bits per code for LZW */ -extern int block_mode; /* block compress mode -C compatible with 2.0 */ -extern int lzw (int in, int out); extern int unlzw (int in, int out);
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/00gnulib.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/00gnulib.m4
Changed
@@ -1,5 +1,5 @@ # 00gnulib.m4 serial 8 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/absolute-header.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/absolute-header.m4
Changed
@@ -1,5 +1,5 @@ # absolute-header.m4 serial 17 -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/alloca.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/alloca.m4
Changed
@@ -1,5 +1,5 @@ -# alloca.m4 serial 20 -dnl Copyright (C) 2002-2004, 2006-2007, 2009-2021 Free Software Foundation, +# alloca.m4 serial 21 +dnl Copyright (C) 2002-2004, 2006-2007, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -26,17 +26,15 @@ AC_DEFINE(HAVE_ALLOCA, 1, Define to 1 if you have 'alloca' after including <alloca.h>, a header that may be supplied by this distribution.) - ALLOCA_H=alloca.h + GL_GENERATE_ALLOCA_H=true else dnl alloca exists as a library function, i.e. it is slow and probably dnl a memory leak. Don't define HAVE_ALLOCA in this case. - ALLOCA_H= + GL_GENERATE_ALLOCA_H=false fi else - ALLOCA_H=alloca.h + GL_GENERATE_ALLOCA_H=true fi - AC_SUBST(ALLOCA_H) - AM_CONDITIONAL(GL_GENERATE_ALLOCA_H, test -n "$ALLOCA_H") if test $ac_cv_working_alloca_h = yes; then HAVE_ALLOCA_H=1
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/asm-underscore.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/asm-underscore.m4
Changed
@@ -1,5 +1,5 @@ # asm-underscore.m4 serial 5 -dnl Copyright (C) 2010-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2010-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/calloc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/calloc.m4
Changed
@@ -1,6 +1,6 @@ -# calloc.m4 serial 27 +# calloc.m4 serial 29 -# Copyright (C) 2004-2021 Free Software Foundation, Inc. +# Copyright (C) 2004-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -58,8 +58,9 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_FUNC_CALLOC_POSIX) - if test $REPLACE_CALLOC = 0; then - _AC_FUNC_CALLOC_IF(, REPLACE_CALLOC=1) + REPLACE_CALLOC_FOR_CALLOC_GNU="$REPLACE_CALLOC_FOR_CALLOC_POSIX" + if test $REPLACE_CALLOC_FOR_CALLOC_GNU = 0; then + _AC_FUNC_CALLOC_IF(, REPLACE_CALLOC_FOR_CALLOC_GNU=1) fi )# gl_FUNC_CALLOC_GNU @@ -72,8 +73,8 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_FUNC_MALLOC_POSIX) - if test $REPLACE_MALLOC = 1; then - REPLACE_CALLOC=1 + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_CALLOC_FOR_CALLOC_POSIX=1 fi dnl Although in theory we should also test for size_t overflow, dnl in practice testing for ptrdiff_t overflow suffices
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/chdir-long.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/chdir-long.m4
Changed
@@ -6,7 +6,7 @@ # never fails with ENAMETOOLONG. # Arrange to compile chdir-long.c only on systems that define PATH_MAX. -dnl Copyright (C) 2004-2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2004-2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/clock_time.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/clock_time.m4
Changed
@@ -1,10 +1,11 @@ -# clock_time.m4 serial 10 -dnl Copyright (C) 2002-2006, 2009-2021 Free Software Foundation, Inc. +# clock_time.m4 serial 11 +dnl Copyright (C) 2002-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. -# Check for clock_gettime and clock_settime, and set LIB_CLOCK_GETTIME. +# Check for clock_getres, clock_gettime and clock_settime, +# and set LIB_CLOCK_GETTIME. # For a program named, say foo, you should add a line like the following # in the corresponding Makefile.am file: # foo_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) @@ -26,6 +27,6 @@ AC_SEARCH_LIBS(clock_gettime, rt posix4, test "$ac_cv_search_clock_gettime" = "none required" || LIB_CLOCK_GETTIME=$ac_cv_search_clock_gettime) - AC_CHECK_FUNCS(clock_gettime clock_settime) + AC_CHECK_FUNCS(clock_getres clock_gettime clock_settime) LIBS=$gl_saved_libs )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/close.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/close.m4
Changed
@@ -1,5 +1,5 @@ # close.m4 serial 9 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/closedir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/closedir.m4
Changed
@@ -1,5 +1,5 @@ # closedir.m4 serial 6 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/dirent-safer.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/dirent-safer.m4
Changed
@@ -1,5 +1,5 @@ #serial 2 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/dirent_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/dirent_h.m4
Changed
@@ -1,5 +1,5 @@ # dirent_h.m4 serial 19 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/dirfd.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/dirfd.m4
Changed
@@ -2,7 +2,7 @@ dnl Find out how to get the file descriptor associated with an open DIR*. -# Copyright (C) 2001-2006, 2008-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2006, 2008-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/double-slash-root.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/double-slash-root.m4
Changed
@@ -1,5 +1,5 @@ # double-slash-root.m4 serial 4 -*- Autoconf -*- -dnl Copyright (C) 2006, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/dup.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/dup.m4
Changed
@@ -1,5 +1,5 @@ # dup.m4 serial 7 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/dup2.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/dup2.m4
Changed
@@ -1,5 +1,5 @@ #serial 27 -dnl Copyright (C) 2002, 2005, 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002, 2005, 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/eealloc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/eealloc.m4
Changed
@@ -1,5 +1,5 @@ # eealloc.m4 serial 3 -dnl Copyright (C) 2003, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/errno_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/errno_h.m4
Changed
@@ -1,5 +1,5 @@ -# errno_h.m4 serial 13 -dnl Copyright (C) 2004, 2006, 2008-2021 Free Software Foundation, Inc. +# errno_h.m4 serial 14 +dnl Copyright (C) 2004, 2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -68,13 +68,11 @@ gl_cv_header_errno_h_complete=yes) ) if test $gl_cv_header_errno_h_complete = yes; then - ERRNO_H='' + GL_GENERATE_ERRNO_H=false else gl_NEXT_HEADERS(errno.h) - ERRNO_H='errno.h' + GL_GENERATE_ERRNO_H=true fi - AC_SUBST(ERRNO_H) - AM_CONDITIONAL(GL_GENERATE_ERRNO_H, test -n "$ERRNO_H") gl_REPLACE_ERRNO_VALUE(EMULTIHOP) gl_REPLACE_ERRNO_VALUE(ENOLINK) gl_REPLACE_ERRNO_VALUE(EOVERFLOW) @@ -88,7 +86,7 @@ # Set the variables EOVERFLOW_HIDDEN and EOVERFLOW_VALUE. AC_DEFUN(gl_REPLACE_ERRNO_VALUE, - if test -n "$ERRNO_H"; then + if $GL_GENERATE_ERRNO_H; then AC_CACHE_CHECK(for $1 value, gl_cv_header_errno_h_$1, AC_EGREP_CPP(yes, #include <errno.h>
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/error.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/error.m4
Changed
@@ -1,6 +1,6 @@ -#serial 14 +#serial 15 -# Copyright (C) 1996-1998, 2001-2004, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 1996-1998, 2001-2004, 2009-2022 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -22,6 +22,10 @@ # Prerequisites of lib/error.c. AC_DEFUN(gl_PREREQ_ERROR, + dnl Use system extensions on Android, so that AC_FUNC_STRERROR_R + dnl discovers the GNU API for strerror_r on Android API level 23 and later. + AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) + AC_REQUIRE(AC_FUNC_STRERROR_R) : )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/exponentd.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/exponentd.m4
Changed
@@ -1,5 +1,5 @@ # exponentd.m4 serial 3 -dnl Copyright (C) 2007-2008, 2010-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2008, 2010-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/exponentf.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/exponentf.m4
Changed
@@ -1,5 +1,5 @@ # exponentf.m4 serial 2 -dnl Copyright (C) 2007-2008, 2010-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2008, 2010-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/exponentl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/exponentl.m4
Changed
@@ -1,5 +1,5 @@ # exponentl.m4 serial 5 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/extensions.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/extensions.m4
Changed
@@ -1,7 +1,7 @@ # serial 22 -*- Autoconf -*- # Enable extensions on systems that normally disable them. -# Copyright (C) 2003, 2006-2021 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/extern-inline.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/extern-inline.m4
Changed
@@ -1,13 +1,28 @@ dnl 'extern inline' a la ISO C99. -dnl Copyright 2012-2021 Free Software Foundation, Inc. +dnl Copyright 2012-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN(gl_EXTERN_INLINE, - AH_VERBATIM(extern_inline, + AC_CACHE_CHECK(whether ctype.h defines __header_inline, + gl_cv_have___header_inline, + AC_PREPROC_IFELSE( + AC_LANG_SOURCE(#include <ctype.h> + #ifndef __header_inline + #error "<ctype.h> does not define __header_inline" + #endif + ), + gl_cv_have___header_inline=yes, + gl_cv_have___header_inline=no)) + if test "$gl_cv_have___header_inline" = yes; then + AC_DEFINE(HAVE___HEADER_INLINE, 1, + Define to 1 if ctype.h defines __header_inline.) + fi + + AH_VERBATIM(HAVE___HEADER_INLINE_1, /* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see @@ -17,7 +32,8 @@ mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. - This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. + This bug was observed with Oracle Developer Studio 12.6 + (Sun C 5.15 SunOS_sparc 2017/05/30). Suppress extern inline (with or without __attribute__ ((__gnu_inline__))) on configurations that mistakenly use 'static inline' to implement @@ -53,7 +69,7 @@ */ #if (((defined __APPLE__ && defined __MACH__) \ || defined __DragonFly__ || defined __FreeBSD__) \ - && (defined __header_inline \ + && (defined HAVE___HEADER_INLINE \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ @@ -83,8 +99,8 @@ # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else -# define _GL_INLINE static _GL_UNUSED -# define _GL_EXTERN_INLINE static _GL_UNUSED +# define _GL_INLINE _GL_UNUSED static +# define _GL_EXTERN_INLINE _GL_UNUSED static #endif /* In GCC 4.6 (inclusive) to 5.1 (exclusive),
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fchdir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fchdir.m4
Changed
@@ -1,5 +1,5 @@ -# fchdir.m4 serial 26 -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +# fchdir.m4 serial 27 +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -17,8 +17,6 @@ AC_REQUIRE(gl_TEST_FCHDIR) if test $HAVE_FCHDIR = 0; then - AC_LIBOBJ(fchdir) - gl_PREREQ_FCHDIR AC_DEFINE(REPLACE_FCHDIR, 1, Define to 1 if gnulib's fchdir() replacement is used.) dnl We must also replace anything that can manipulate a directory fd,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fclose.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fclose.m4
Changed
@@ -1,5 +1,5 @@ # fclose.m4 serial 9 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fcntl-o.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fcntl-o.m4
Changed
@@ -1,5 +1,5 @@ # fcntl-o.m4 serial 7 -dnl Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fcntl-safer.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fcntl-safer.m4
Changed
@@ -1,5 +1,5 @@ #serial 9 -dnl Copyright (C) 2005-2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2005-2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fcntl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fcntl.m4
Changed
@@ -1,5 +1,5 @@ # fcntl.m4 serial 11 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fcntl_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fcntl_h.m4
Changed
@@ -1,6 +1,6 @@ # serial 20 # Configure fcntl.h. -dnl Copyright (C) 2006-2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006-2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fdatasync.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fdatasync.m4
Changed
@@ -1,5 +1,5 @@ # fdatasync.m4 serial 5 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fdopendir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fdopendir.m4
Changed
@@ -1,7 +1,7 @@ # serial 14 # See if we need to provide fdopendir. -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fflush.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fflush.m4
Changed
@@ -1,6 +1,6 @@ # fflush.m4 serial 18 -# Copyright (C) 2007-2021 Free Software Foundation, Inc. +# Copyright (C) 2007-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/filenamecat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/filenamecat.m4
Changed
@@ -1,5 +1,5 @@ # filenamecat.m4 serial 11 -dnl Copyright (C) 2002-2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/float_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/float_h.m4
Changed
@@ -1,5 +1,5 @@ -# float_h.m4 serial 12 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# float_h.m4 serial 13 +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -8,18 +8,18 @@ AC_REQUIRE(AC_PROG_CC) AC_REQUIRE(AC_CANONICAL_HOST) - FLOAT_H= + GL_GENERATE_FLOAT_H=false REPLACE_FLOAT_LDBL=0 case "$host_os" in aix* | beos* | openbsd* | mirbsd* | irix*) - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; freebsd* | dragonfly*) case "$host_cpu" in changequote(,)dnl i3456786 ) changequote(,)dnl - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; x86_64 ) # On x86_64 systems, the C compiler may still be generating @@ -33,21 +33,21 @@ #endif ), , - FLOAT_H=float.h) + GL_GENERATE_FLOAT_H=true) ;; esac ;; linux*) case "$host_cpu" in powerpc*) - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; esac ;; esac case "$host_os" in aix* | freebsd* | dragonfly* | linux*) - if test -n "$FLOAT_H"; then + if $GL_GENERATE_FLOAT_H; then REPLACE_FLOAT_LDBL=1 fi ;; @@ -95,14 +95,12 @@ REPLACE_ITOLD=1 dnl We add the workaround to <float.h> but also to <math.h>, dnl to increase the chances that the fix function gets pulled in. - FLOAT_H=float.h + GL_GENERATE_FLOAT_H=true ;; esac - if test -n "$FLOAT_H"; then + if $GL_GENERATE_FLOAT_H; then gl_NEXT_HEADERS(float.h) fi - AC_SUBST(FLOAT_H) - AM_CONDITIONAL(GL_GENERATE_FLOAT_H, test -n "$FLOAT_H") AC_SUBST(REPLACE_ITOLD) )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fpieee.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fpieee.m4
Changed
@@ -1,5 +1,5 @@ # fpieee.m4 serial 2 -*- coding: utf-8 -*- -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fprintf-posix.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fprintf-posix.m4
Changed
@@ -1,5 +1,5 @@ # fprintf-posix.m4 serial 14 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fpurge.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fpurge.m4
Changed
@@ -1,5 +1,5 @@ # fpurge.m4 serial 12 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/freading.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/freading.m4
Changed
@@ -1,5 +1,5 @@ # freading.m4 serial 2 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/free.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/free.m4
Changed
@@ -1,5 +1,5 @@ # free.m4 serial 6 -# Copyright (C) 2003-2005, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2003-2005, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/frexp.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/frexp.m4
Changed
@@ -1,5 +1,5 @@ # frexp.m4 serial 16 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/frexpl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/frexpl.m4
Changed
@@ -1,5 +1,5 @@ # frexpl.m4 serial 22 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fseek.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fseek.m4
Changed
@@ -1,5 +1,5 @@ # fseek.m4 serial 4 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fseeko.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fseeko.m4
Changed
@@ -1,5 +1,5 @@ # fseeko.m4 serial 20 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fseterr.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fseterr.m4
Changed
@@ -1,5 +1,5 @@ # fseterr.m4 serial 1 -dnl Copyright (C) 2012-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2012-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fstat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fstat.m4
Changed
@@ -1,5 +1,5 @@ # fstat.m4 serial 8 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/fsync.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/fsync.m4
Changed
@@ -1,5 +1,5 @@ # fsync.m4 serial 2 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/ftell.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/ftell.m4
Changed
@@ -1,5 +1,5 @@ # ftell.m4 serial 3 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/ftello.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/ftello.m4
Changed
@@ -1,5 +1,5 @@ # ftello.m4 serial 14 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/getcwd.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/getcwd.m4
Changed
@@ -1,6 +1,6 @@ # getcwd.m4 - check for working getcwd that is compatible with glibc -# Copyright (C) 2001, 2003-2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003-2007, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/getdtablesize.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/getdtablesize.m4
Changed
@@ -1,5 +1,5 @@ # getdtablesize.m4 serial 8 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/getopt.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/getopt.m4
Changed
@@ -1,5 +1,5 @@ -# getopt.m4 serial 47 -dnl Copyright (C) 2002-2006, 2008-2021 Free Software Foundation, Inc. +# getopt.m4 serial 48 +dnl Copyright (C) 2002-2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -21,6 +21,8 @@ REPLACE_GETOPT=1 fi ) + GL_GENERATE_GETOPT_H=false + GL_GENERATE_GETOPT_CDEFS_H=false if test $REPLACE_GETOPT = 1; then dnl Arrange for getopt.h to be created. gl_GETOPT_SUBSTITUTE_HEADER @@ -374,8 +376,6 @@ AC_DEFINE(__GETOPT_PREFIX, rpl_, Define to rpl_ if the getopt replacement functions and variables should be used.) - GETOPT_H=getopt.h - GETOPT_CDEFS_H=getopt-cdefs.h - AC_SUBST(GETOPT_H) - AC_SUBST(GETOPT_CDEFS_H) + GL_GENERATE_GETOPT_H=true + GL_GENERATE_GETOPT_CDEFS_H=true )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/getprogname.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/getprogname.m4
Changed
@@ -1,6 +1,6 @@ # getprogname.m4 - check for getprogname or replacements for it -# Copyright (C) 2016-2021 Free Software Foundation, Inc. +# Copyright (C) 2016-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/gettime.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/gettime.m4
Changed
@@ -1,5 +1,5 @@ -# gettime.m4 serial 9 -dnl Copyright (C) 2002, 2004-2006, 2009-2021 Free Software Foundation, Inc. +# gettime.m4 serial 11 +dnl Copyright (C) 2002, 2004-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -9,5 +9,13 @@ dnl Prerequisites of lib/gettime.c. AC_REQUIRE(gl_CLOCK_TIME) AC_REQUIRE(gl_TIMESPEC) - AC_CHECK_FUNCS_ONCE(gettimeofday) + AC_CHECK_FUNCS_ONCE(timespec_get) +) + +AC_DEFUN(gl_GETTIME_RES, + + dnl Prerequisites of lib/gettime-res.c. + AC_REQUIRE(gl_CLOCK_TIME) + AC_REQUIRE(gl_TIMESPEC) + AC_CHECK_FUNCS_ONCE(timespec_getres) )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/gettimeofday.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/gettimeofday.m4
Changed
@@ -1,6 +1,6 @@ # serial 29 -# Copyright (C) 2001-2003, 2005, 2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2003, 2005, 2007, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/gnu-make.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/gnu-make.m4
Changed
@@ -1,6 +1,6 @@ # Determine whether recent-enough GNU Make is being used. -# Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/gnulib-common.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/gnulib-common.m4
Changed
@@ -1,5 +1,5 @@ -# gnulib-common.m4 serial 67 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +# gnulib-common.m4 serial 72 +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -69,7 +69,9 @@ /* Attributes. */ #if (defined __has_attribute \ && (!defined __clang_minor__ \ - || 3 < __clang_major__ + (5 <= __clang_minor__))) + || (defined __apple_build_version__ \ + ? 6000000 <= __apple_build_version__ \ + : 3 < __clang_major__ + (5 <= __clang_minor__)))) # define _GL_HAS_ATTRIBUTE(attr) __has_attribute (__##attr##__) #else # define _GL_HAS_ATTRIBUTE(attr) _GL_ATTR_##attr @@ -174,14 +176,19 @@ that can be freed by passing them as the Ith argument to the function F. _GL_ATTRIBUTE_DEALLOC_FREE declares that the function returns pointers that - can be freed via 'free'; it can be used only after including <stdlib.h>. */ + can be freed via 'free'; it can be used only after declaring 'free'. */ /* Applies to: functions. Cannot be used on inline functions. */ #if _GL_GNUC_PREREQ (11, 0) # define _GL_ATTRIBUTE_DEALLOC(f, i) __attribute__ ((__malloc__ (f, i))) #else # define _GL_ATTRIBUTE_DEALLOC(f, i) #endif -#define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +/* If gnulib's <string.h> or <wchar.h> has already defined this macro, continue + to use this earlier definition, since <stdlib.h> may not have been included + yet. */ +#ifndef _GL_ATTRIBUTE_DEALLOC_FREE +# define _GL_ATTRIBUTE_DEALLOC_FREE _GL_ATTRIBUTE_DEALLOC (free, 1) +#endif /* _GL_ATTRIBUTE_DEPRECATED: Declares that an entity is deprecated. The compiler may warn if the entity is used. */ @@ -813,6 +820,24 @@ ) ) +# gl_CONDITIONAL(conditional, condition) +# is like AM_CONDITIONAL(conditional, condition), except that it does not +# produce an error +# configure: error: conditional "..." was never defined. +# Usually this means the macro was only invoked conditionally. +# when only invoked conditionally. Instead, in that case, both the _TRUE +# and the _FALSE case are disabled. +AC_DEFUN(gl_CONDITIONAL, + + pushdef(AC_CONFIG_COMMANDS_PRE, :)dnl + AM_CONDITIONAL($1, $2) + popdef(AC_CONFIG_COMMANDS_PRE)dnl + if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + $1_TRUE='#' + $1_FALSE='#' + fi +) + # gl_CC_ALLOW_WARNINGS # sets and substitutes a variable GL_CFLAG_ALLOW_WARNINGS, to a $(CC) option # that reverts a preceding '-Werror' option, if available. @@ -879,6 +904,102 @@ AC_SUBST(GL_CXXFLAG_ALLOW_WARNINGS) ) +# gl_CC_GNULIB_WARNINGS +# sets and substitutes a variable GL_CFLAG_GNULIB_WARNINGS, to a $(CC) option +# set that enables or disables warnings as suitable for the Gnulib coding style. +AC_DEFUN(gl_CC_GNULIB_WARNINGS, + + AC_REQUIRE(gl_CC_ALLOW_WARNINGS) + dnl Assume that the compiler supports -Wno-* options only if it also supports + dnl -Wno-error. + GL_CFLAG_GNULIB_WARNINGS='' + if test -n "$GL_CFLAG_ALLOW_WARNINGS"; then + dnl Enable these warning options: + dnl + dnl GCC clang + dnl -Wno-cast-qual >= 3 >= 3.9 + dnl -Wno-conversion >= 3 >= 3.9 + dnl -Wno-float-conversion >= 4.9 >= 3.9 + dnl -Wno-float-equal >= 3 >= 3.9 + dnl -Wimplicit-fallthrough >= 7 >= 3.9 + dnl -Wno-pedantic >= 4.8 >= 3.9 + dnl -Wno-sign-compare >= 3 >= 3.9 + dnl -Wno-sign-conversion >= 4.3 >= 3.9 + dnl -Wno-type-limits >= 4.3 >= 3.9 + dnl -Wno-undef >= 3 >= 3.9 + dnl -Wno-unsuffixed-float-constants >= 4.5 + dnl -Wno-unused-function >= 3 >= 3.9 + dnl -Wno-unused-parameter >= 3 >= 3.9 + dnl + cat > conftest.c <<\EOF + #if __GNUC__ >= 3 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-cast-qual + -Wno-conversion + -Wno-float-equal + -Wno-sign-compare + -Wno-undef + -Wno-unused-function + -Wno-unused-parameter + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 9) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-float-conversion + #endif + #if __GNUC__ >= 7 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wimplicit-fallthrough + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 8) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-pedantic + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 3) > 4 || (__clang_major__ + (__clang_minor__ >= 9) > 3) + -Wno-sign-conversion + -Wno-type-limits + #endif + #if __GNUC__ + (__GNUC_MINOR__ >= 5) > 4 + -Wno-unsuffixed-float-constants + #endif +EOF + gl_command="$CC $CFLAGS $CPPFLAGS -E conftest.c > conftest.out" + if AC_TRY_EVAL(gl_command); then + gl_options=`grep -v '#' conftest.out` + for word in $gl_options; do + GL_CFLAG_GNULIB_WARNINGS="$GL_CFLAG_GNULIB_WARNINGS $word" + done + fi + rm -f conftest.c conftest.out + fi + AC_SUBST(GL_CFLAG_GNULIB_WARNINGS) +) + +dnl gl_CONDITIONAL_HEADER(foo.h) +dnl takes a shell variable GL_GENERATE_FOO_H (with value true or false) as input +dnl and produces +dnl - an AC_SUBSTed variable FOO_H that is either a file name or empty, based +dnl on whether GL_GENERATE_FOO_H is true or false, +dnl - an Automake conditional GL_GENERATE_FOO_H that evaluates to the value of +dnl the shell variable GL_GENERATE_FOO_H. +AC_DEFUN(gl_CONDITIONAL_HEADER, + + m4_pushdef(gl_header_name, AS_TR_SH(m4_toupper($1))) + m4_pushdef(gl_generate_var, GL_GENERATE_AS_TR_SH(m4_toupper($1))) + m4_pushdef(gl_generate_cond, GL_GENERATE_AS_TR_SH(m4_toupper($1))) + case "$gl_generate_var" in + false) gl_header_name='' ;; + true) + dnl It is OK to use a .h file in lib/ from within tests/, but not vice + dnl versa. + if test -z "$gl_header_name"; then + gl_header_name="${gl_source_base_prefix}$1" + fi + ;; + *) echo "*** gl_generate_var is not set correctly" 1>&2; exit 1 ;; + esac + AC_SUBST(gl_header_name) + gl_CONDITIONAL(gl_generate_cond, $gl_generate_var) + m4_popdef(gl_generate_cond) + m4_popdef(gl_generate_var) + m4_popdef(gl_header_name) +) + dnl Expands to some code for use in .c programs that, on native Windows, defines dnl the Microsoft deprecated alias function names to the underscore-prefixed dnl actual function names. With this macro, these function names are available
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/gnulib-comp.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/gnulib-comp.m4
Changed
@@ -1,9 +1,9 @@ # DO NOT EDIT! GENERATED AUTOMATICALLY! -# Copyright (C) 2002-2021 Free Software Foundation, Inc. +# Copyright (C) 2002-2022 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This file is distributed in the hope that it will be useful, @@ -42,7 +42,6 @@ AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) AC_REQUIRE(gl_PROG_AR_RANLIB) - AC_REQUIRE(AM_PROG_CC_C_O) # Code from module absolute-header: # Code from module alloca-opt: # Code from module announce-gen: @@ -102,11 +101,11 @@ AC_REQUIRE(gl_SET_LARGEFILE_SOURCE) # Code from module fseterr: # Code from module fstat: - # Code from module fstatat: # Code from module fsync: # Code from module ftell: # Code from module ftello: AC_REQUIRE(gl_SET_LARGEFILE_SOURCE) + # Code from module gen-header: # Code from module gendocs: # Code from module getcwd-lgpl: # Code from module getdtablesize: @@ -187,7 +186,6 @@ # Code from module ssize_t: # Code from module stat: # Code from module stat-time: - # Code from module statat: # Code from module std-gnu11: # Code from module stdalign: # Code from module stdbool: @@ -218,6 +216,7 @@ # Code from module utime: # Code from module utime-h: # Code from module utimens: + # Code from module vararrays: # Code from module vasnprintf: # Code from module vc-list-files: # Code from module verify: @@ -255,125 +254,126 @@ m4_pushdef(GL_MODULE_INDICATOR_PREFIX, GL) gl_COMMON gl_source_base='lib' + gl_source_base_prefix= gl_FUNC_ALLOCA + gl_CONDITIONAL_HEADER(alloca.h) + AC_PROG_MKDIR_P AC_REQUIRE(AC_CANONICAL_HOST) gl_FUNC_CALLOC_GNU - if test $REPLACE_CALLOC = 1; then + if test $REPLACE_CALLOC_FOR_CALLOC_GNU = 1; then AC_LIBOBJ(calloc) fi + gl_STDLIB_MODULE_INDICATOR(calloc-gnu) gl_FUNC_CALLOC_POSIX - if test $REPLACE_CALLOC = 1; then + if test $REPLACE_CALLOC_FOR_CALLOC_POSIX = 1; then AC_LIBOBJ(calloc) fi gl_STDLIB_MODULE_INDICATOR(calloc-posix) gl_UNISTD_MODULE_INDICATOR(chdir) gl_FUNC_CHDIR_LONG - if test $gl_cv_have_unlimited_file_name_length = no; then - AC_LIBOBJ(chdir-long) + gl_CONDITIONAL(GL_COND_OBJ_CHDIR_LONG, + test $gl_cv_have_unlimited_file_name_length = no) + AM_COND_IF(GL_COND_OBJ_CHDIR_LONG, gl_PREREQ_CHDIR_LONG - fi + ) gl_CLOCK_TIME gl_MODULE_INDICATOR_FOR_TESTS(cloexec) gl_FUNC_CLOSE - if test $REPLACE_CLOSE = 1; then - AC_LIBOBJ(close) - fi + gl_CONDITIONAL(GL_COND_OBJ_CLOSE, test $REPLACE_CLOSE = 1) gl_UNISTD_MODULE_INDICATOR(close) gl_FUNC_CLOSEDIR - if test $HAVE_CLOSEDIR = 0 || test $REPLACE_CLOSEDIR = 1; then - AC_LIBOBJ(closedir) - fi + gl_CONDITIONAL(GL_COND_OBJ_CLOSEDIR, + test $HAVE_CLOSEDIR = 0 || test $REPLACE_CLOSEDIR = 1) gl_DIRENT_MODULE_INDICATOR(closedir) gl_DIRENT_H gl_DIRENT_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_DIRENT_SAFER gl_MODULE_INDICATOR(dirent-safer) gl_FUNC_DIRFD - if test $ac_cv_func_dirfd = no && test $gl_cv_func_dirfd_macro = no \ - || test $REPLACE_DIRFD = 1; then - AC_LIBOBJ(dirfd) + gl_CONDITIONAL(GL_COND_OBJ_DIRFD, + test $ac_cv_func_dirfd = no && test $gl_cv_func_dirfd_macro = no || test $REPLACE_DIRFD = 1) + AM_COND_IF(GL_COND_OBJ_DIRFD, gl_PREREQ_DIRFD - fi + ) gl_DIRENT_MODULE_INDICATOR(dirfd) gl_DOUBLE_SLASH_ROOT gl_FUNC_DUP - if test $REPLACE_DUP = 1; then - AC_LIBOBJ(dup) + gl_CONDITIONAL(GL_COND_OBJ_DUP, test $REPLACE_DUP = 1) + AM_COND_IF(GL_COND_OBJ_DUP, gl_PREREQ_DUP - fi + ) gl_UNISTD_MODULE_INDICATOR(dup) gl_FUNC_DUP2 - if test $REPLACE_DUP2 = 1; then - AC_LIBOBJ(dup2) + gl_CONDITIONAL(GL_COND_OBJ_DUP2, test $REPLACE_DUP2 = 1) + AM_COND_IF(GL_COND_OBJ_DUP2, gl_PREREQ_DUP2 - fi + ) gl_UNISTD_MODULE_INDICATOR(dup2) gl_HEADER_ERRNO_H + gl_CONDITIONAL_HEADER(errno.h) + AC_PROG_MKDIR_P gl_ERROR - if test $ac_cv_lib_error_at_line = no; then - AC_LIBOBJ(error) + gl_CONDITIONAL(GL_COND_OBJ_ERROR, test "$ac_cv_lib_error_at_line" = no) + AM_COND_IF(GL_COND_OBJ_ERROR, gl_PREREQ_ERROR - fi + ) m4_ifdef(AM_XGETTEXT_OPTION, AM_XGETTEXT_OPTION(--flag=error:3:c-format) AM_XGETTEXT_OPTION(--flag=error_at_line:5:c-format)) AC_REQUIRE(gl_EXTERN_INLINE) gl_FUNC_FCHDIR + gl_CONDITIONAL(GL_COND_OBJ_FCHDIR, test $HAVE_FCHDIR = 0) + AM_COND_IF(GL_COND_OBJ_FCHDIR, + gl_PREREQ_FCHDIR + ) gl_UNISTD_MODULE_INDICATOR(fchdir) gl_FUNC_FCLOSE - if test $REPLACE_FCLOSE = 1; then - AC_LIBOBJ(fclose) - fi + gl_CONDITIONAL(GL_COND_OBJ_FCLOSE, test $REPLACE_FCLOSE = 1) gl_STDIO_MODULE_INDICATOR(fclose) gl_FUNC_FCNTL - if test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1; then - AC_LIBOBJ(fcntl) - fi + gl_CONDITIONAL(GL_COND_OBJ_FCNTL, + test $HAVE_FCNTL = 0 || test $REPLACE_FCNTL = 1) gl_FCNTL_MODULE_INDICATOR(fcntl) gl_FCNTL_H gl_FCNTL_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_FCNTL_SAFER gl_MODULE_INDICATOR(fcntl-safer) gl_MODULE_INDICATOR(fd-safer-flag) gl_FUNC_FDATASYNC - if test $HAVE_FDATASYNC = 0; then - AC_LIBOBJ(fdatasync) - fi + gl_CONDITIONAL(GL_COND_OBJ_FDATASYNC, test $HAVE_FDATASYNC = 0) gl_UNISTD_MODULE_INDICATOR(fdatasync) gl_FUNC_FDOPENDIR - if test $HAVE_FDOPENDIR = 0 || test $REPLACE_FDOPENDIR = 1; then - AC_LIBOBJ(fdopendir) - fi + gl_CONDITIONAL(GL_COND_OBJ_FDOPENDIR, + test $HAVE_FDOPENDIR = 0 || test $REPLACE_FDOPENDIR = 1) gl_DIRENT_MODULE_INDICATOR(fdopendir) gl_MODULE_INDICATOR(fdopendir) gl_FUNC_FFLUSH - if test $REPLACE_FFLUSH = 1; then - AC_LIBOBJ(fflush) + gl_CONDITIONAL(GL_COND_OBJ_FFLUSH, test $REPLACE_FFLUSH = 1) + AM_COND_IF(GL_COND_OBJ_FFLUSH, gl_PREREQ_FFLUSH - fi + ) gl_MODULE_INDICATOR(fflush) gl_STDIO_MODULE_INDICATOR(fflush) gl_FILE_NAME_CONCAT_LGPL gl_FLOAT_H - if test $REPLACE_FLOAT_LDBL = 1; then - AC_LIBOBJ(float) - fi - if test $REPLACE_ITOLD = 1; then - AC_LIBOBJ(itold) - fi + gl_CONDITIONAL_HEADER(float.h) + AC_PROG_MKDIR_P + gl_CONDITIONAL(GL_COND_OBJ_FLOAT, test $REPLACE_FLOAT_LDBL = 1) + gl_CONDITIONAL(GL_COND_OBJ_ITOLD, test $REPLACE_ITOLD = 1) gl_FUNC_FPRINTF_POSIX gl_STDIO_MODULE_INDICATOR(fprintf-posix) gl_FUNC_FPURGE - if test $HAVE_FPURGE = 0 || test $REPLACE_FPURGE = 1; then - AC_LIBOBJ(fpurge) - fi + gl_CONDITIONAL(GL_COND_OBJ_FPURGE, + test $HAVE_FPURGE = 0 || test $REPLACE_FPURGE = 1) gl_STDIO_MODULE_INDICATOR(fpurge) gl_FUNC_FREADING gl_FUNC_FREE - if test $REPLACE_FREE = 1; then - AC_LIBOBJ(free) + gl_CONDITIONAL(GL_COND_OBJ_FREE, test $REPLACE_FREE = 1) + AM_COND_IF(GL_COND_OBJ_FREE, gl_PREREQ_FREE - fi + ) gl_STDLIB_MODULE_INDICATOR(free-posix) gl_FUNC_FREXP_NO_LIBM if test $gl_func_frexp_no_libm != yes; then @@ -386,86 +386,79 @@ fi gl_MATH_MODULE_INDICATOR(frexpl) gl_FUNC_FSEEK - if test $REPLACE_FSEEK = 1; then - AC_LIBOBJ(fseek) - fi + gl_CONDITIONAL(GL_COND_OBJ_FSEEK, test $REPLACE_FSEEK = 1) gl_STDIO_MODULE_INDICATOR(fseek) gl_FUNC_FSEEKO - if test $HAVE_FSEEKO = 0 || test $REPLACE_FSEEKO = 1; then - AC_LIBOBJ(fseeko) + gl_CONDITIONAL(GL_COND_OBJ_FSEEKO, + test $HAVE_FSEEKO = 0 || test $REPLACE_FSEEKO = 1) + AM_COND_IF(GL_COND_OBJ_FSEEKO, gl_PREREQ_FSEEKO - fi + ) gl_STDIO_MODULE_INDICATOR(fseeko) gl_FUNC_FSETERR - if test $ac_cv_func___fseterr = no; then - AC_LIBOBJ(fseterr) - fi + gl_CONDITIONAL(GL_COND_OBJ_FSETERR, test $ac_cv_func___fseterr = no) gl_FUNC_FSTAT - if test $REPLACE_FSTAT = 1; then - AC_LIBOBJ(fstat) + gl_CONDITIONAL(GL_COND_OBJ_FSTAT, test $REPLACE_FSTAT = 1) + AM_COND_IF(GL_COND_OBJ_FSTAT, case "$host_os" in mingw*) AC_LIBOBJ(stat-w32) ;; esac gl_PREREQ_FSTAT - fi + ) gl_SYS_STAT_MODULE_INDICATOR(fstat) - gl_FUNC_FSTATAT - if test $HAVE_FSTATAT = 0 || test $REPLACE_FSTATAT = 1; then - AC_LIBOBJ(fstatat) - fi - gl_SYS_STAT_MODULE_INDICATOR(fstatat) gl_FUNC_FSYNC - if test $HAVE_FSYNC = 0; then - AC_LIBOBJ(fsync) + gl_CONDITIONAL(GL_COND_OBJ_FSYNC, test $HAVE_FSYNC = 0) + AM_COND_IF(GL_COND_OBJ_FSYNC, gl_PREREQ_FSYNC - fi + ) gl_UNISTD_MODULE_INDICATOR(fsync) gl_FUNC_FTELL - if test $REPLACE_FTELL = 1; then - AC_LIBOBJ(ftell) - fi + gl_CONDITIONAL(GL_COND_OBJ_FTELL, test $REPLACE_FTELL = 1) gl_STDIO_MODULE_INDICATOR(ftell) gl_FUNC_FTELLO - if test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1; then - AC_LIBOBJ(ftello) + gl_CONDITIONAL(GL_COND_OBJ_FTELLO, + test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1) + AM_COND_IF(GL_COND_OBJ_FTELLO, gl_PREREQ_FTELLO - fi + ) gl_STDIO_MODULE_INDICATOR(ftello) gl_FUNC_GETCWD_LGPL - if test $REPLACE_GETCWD = 1; then - AC_LIBOBJ(getcwd-lgpl) - fi + gl_CONDITIONAL(GL_COND_OBJ_GETCWD_LGPL, test $REPLACE_GETCWD = 1) gl_UNISTD_MODULE_INDICATOR(getcwd) gl_FUNC_GETDTABLESIZE - if test $HAVE_GETDTABLESIZE = 0 || test $REPLACE_GETDTABLESIZE = 1; then - AC_LIBOBJ(getdtablesize) + gl_CONDITIONAL(GL_COND_OBJ_GETDTABLESIZE, + test $HAVE_GETDTABLESIZE = 0 || test $REPLACE_GETDTABLESIZE = 1) + AM_COND_IF(GL_COND_OBJ_GETDTABLESIZE, gl_PREREQ_GETDTABLESIZE - fi + ) gl_UNISTD_MODULE_INDICATOR(getdtablesize) gl_FUNC_GETOPT_GNU dnl Because of the way gl_FUNC_GETOPT_GNU is implemented (the gl_getopt_required dnl mechanism), there is no need to do any AC_LIBOBJ or AC_SUBST here; they are dnl done in the getopt-posix module. gl_FUNC_GETOPT_POSIX - if test $REPLACE_GETOPT = 1; then - AC_LIBOBJ(getopt) - AC_LIBOBJ(getopt1) + gl_CONDITIONAL_HEADER(getopt.h) + gl_CONDITIONAL_HEADER(getopt-cdefs.h) + AC_PROG_MKDIR_P + gl_CONDITIONAL(GL_COND_OBJ_GETOPT, test $REPLACE_GETOPT = 1) + AM_COND_IF(GL_COND_OBJ_GETOPT, dnl Define the substituted variable GNULIB_UNISTD_H_GETOPT to 1. gl_UNISTD_H_REQUIRE_DEFAULTS gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_UNISTD_H_GETOPT, 1) - fi + ) gl_UNISTD_MODULE_INDICATOR(getopt-posix) gl_FUNC_GETPROGNAME AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) gl_GETTIME gl_FUNC_GETTIMEOFDAY - if test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1; then - AC_LIBOBJ(gettimeofday) + gl_CONDITIONAL(GL_COND_OBJ_GETTIMEOFDAY, + test $HAVE_GETTIMEOFDAY = 0 || test $REPLACE_GETTIMEOFDAY = 1) + AM_COND_IF(GL_COND_OBJ_GETTIMEOFDAY, gl_PREREQ_GETTIMEOFDAY - fi + ) gl_SYS_TIME_MODULE_INDICATOR(gettimeofday) gl_GNU_MAKE # Autoconf 2.61a.99 and earlier don't support linking a file only @@ -480,6 +473,7 @@ GNUmakefile=$GNUmakefile)) gl_INTTYPES_INCOMPLETE gl_INTTYPES_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_FUNC_ISNAND_NO_LIBM if test $gl_func_isnand_no_libm != yes; then AC_LIBOBJ(isnand) @@ -498,94 +492,90 @@ AC_REQUIRE(gl_LARGEFILE) gl_IGNORE_UNUSED_LIBRARIES gl_LIMITS_H + gl_CONDITIONAL_HEADER(limits.h) + AC_PROG_MKDIR_P gl_LOCK gl_MODULE_INDICATOR(lock) gl_FUNC_LSEEK - if test $REPLACE_LSEEK = 1; then - AC_LIBOBJ(lseek) - fi + gl_CONDITIONAL(GL_COND_OBJ_LSEEK, test $REPLACE_LSEEK = 1) gl_UNISTD_MODULE_INDICATOR(lseek) gl_FUNC_LSTAT - if test $REPLACE_LSTAT = 1; then - AC_LIBOBJ(lstat) + gl_CONDITIONAL(GL_COND_OBJ_LSTAT, test $REPLACE_LSTAT = 1) + AM_COND_IF(GL_COND_OBJ_LSTAT, gl_PREREQ_LSTAT - fi + ) gl_SYS_STAT_MODULE_INDICATOR(lstat) AC_CONFIG_COMMANDS_PRE(m4_ifdef(AH_HEADER, AC_SUBST(CONFIG_INCLUDE, m4_defn(AH_HEADER)))) AC_REQUIRE(AC_PROG_SED) AC_REQUIRE(AC_PROG_GREP) gl_FUNC_MALLOC_GNU - if test $REPLACE_MALLOC = 1; then + if test $REPLACE_MALLOC_FOR_MALLOC_GNU = 1; then AC_LIBOBJ(malloc) fi + gl_STDLIB_MODULE_INDICATOR(malloc-gnu) AC_REQUIRE(gl_FUNC_MALLOC_POSIX) - if test $REPLACE_MALLOC = 1; then + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then AC_LIBOBJ(malloc) fi gl_STDLIB_MODULE_INDICATOR(malloc-posix) gl_MALLOCA gl_MATH_H gl_MATH_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_FUNC_MEMCHR - if test $REPLACE_MEMCHR = 1; then - AC_LIBOBJ(memchr) + gl_CONDITIONAL(GL_COND_OBJ_MEMCHR, test $REPLACE_MEMCHR = 1) + AM_COND_IF(GL_COND_OBJ_MEMCHR, gl_PREREQ_MEMCHR - fi + ) gl_STRING_MODULE_INDICATOR(memchr) gl_FUNC_MEMPCPY - if test $HAVE_MEMPCPY = 0; then - AC_LIBOBJ(mempcpy) + gl_CONDITIONAL(GL_COND_OBJ_MEMPCPY, test $HAVE_MEMPCPY = 0) + AM_COND_IF(GL_COND_OBJ_MEMPCPY, gl_PREREQ_MEMPCPY - fi + ) gl_STRING_MODULE_INDICATOR(mempcpy) gl_FUNC_MEMRCHR - if test $ac_cv_func_memrchr = no; then - AC_LIBOBJ(memrchr) + gl_CONDITIONAL(GL_COND_OBJ_MEMRCHR, test $ac_cv_func_memrchr = no) + AM_COND_IF(GL_COND_OBJ_MEMRCHR, gl_PREREQ_MEMRCHR - fi + ) gl_STRING_MODULE_INDICATOR(memrchr) gl_MINMAX AC_REQUIRE(gl_MSVC_INVAL) - if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then - AC_LIBOBJ(msvc-inval) - fi + gl_CONDITIONAL(GL_COND_OBJ_MSVC_INVAL, + test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1) AC_REQUIRE(gl_MSVC_NOTHROW) - if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then - AC_LIBOBJ(msvc-nothrow) - fi + gl_CONDITIONAL(GL_COND_OBJ_MSVC_NOTHROW, + test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1) gl_MODULE_INDICATOR(msvc-nothrow) gl_MULTIARCH gl_FUNC_OPEN - if test $REPLACE_OPEN = 1; then - AC_LIBOBJ(open) + gl_CONDITIONAL(GL_COND_OBJ_OPEN, test $REPLACE_OPEN = 1) + AM_COND_IF(GL_COND_OBJ_OPEN, gl_PREREQ_OPEN - fi + ) gl_FCNTL_MODULE_INDICATOR(open) gl_FUNC_OPENAT - if test $HAVE_OPENAT = 0 || test $REPLACE_OPENAT = 1; then - AC_LIBOBJ(openat) + gl_CONDITIONAL(GL_COND_OBJ_OPENAT, + test $HAVE_OPENAT = 0 || test $REPLACE_OPENAT = 1) + AM_COND_IF(GL_COND_OBJ_OPENAT, gl_PREREQ_OPENAT - fi + ) gl_MODULE_INDICATOR(openat) dnl for lib/getcwd.c gl_FCNTL_MODULE_INDICATOR(openat) gl_OPENAT_SAFER gl_MODULE_INDICATOR(openat-safer) gl_FUNC_OPENDIR - if test $HAVE_OPENDIR = 0 || test $REPLACE_OPENDIR = 1; then - AC_LIBOBJ(opendir) - fi + gl_CONDITIONAL(GL_COND_OBJ_OPENDIR, + test $HAVE_OPENDIR = 0 || test $REPLACE_OPENDIR = 1) gl_DIRENT_MODULE_INDICATOR(opendir) gl_PATHMAX gl_FUNC_PERROR - if test $REPLACE_PERROR = 1; then - AC_LIBOBJ(perror) - fi + gl_CONDITIONAL(GL_COND_OBJ_PERROR, test $REPLACE_PERROR = 1) gl_STRING_MODULE_INDICATOR(perror) gl_FUNC_PIPE - if test $HAVE_PIPE = 0; then - AC_LIBOBJ(pipe) - fi + gl_CONDITIONAL(GL_COND_OBJ_PIPE, test $HAVE_PIPE = 0) gl_UNISTD_MODULE_INDICATOR(pipe) gl_FUNC_PRINTF_FREXP gl_FUNC_PRINTF_FREXPL @@ -593,83 +583,91 @@ gl_STDIO_MODULE_INDICATOR(printf-posix) m4_divert_text(INIT_PREPARE, gl_printf_safe=yes) gl_FUNC_RAISE - if test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1; then - AC_LIBOBJ(raise) + gl_CONDITIONAL(GL_COND_OBJ_RAISE, + test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1) + AM_COND_IF(GL_COND_OBJ_RAISE, gl_PREREQ_RAISE - fi + ) gl_SIGNAL_MODULE_INDICATOR(raise) gl_FUNC_READDIR - if test $HAVE_READDIR = 0; then - AC_LIBOBJ(readdir) - fi + gl_CONDITIONAL(GL_COND_OBJ_READDIR, test $HAVE_READDIR = 0) gl_DIRENT_MODULE_INDICATOR(readdir) gl_FUNC_REALLOC_GNU - if test $REPLACE_REALLOC = 1; then + if test $REPLACE_REALLOC_FOR_REALLOC_GNU = 1; then AC_LIBOBJ(realloc) fi + gl_STDLIB_MODULE_INDICATOR(realloc-gnu) gl_FUNC_REALLOC_POSIX - if test $REPLACE_REALLOC = 1; then + if test $REPLACE_REALLOC_FOR_REALLOC_POSIX = 1; then AC_LIBOBJ(realloc) fi gl_STDLIB_MODULE_INDICATOR(realloc-posix) gl_FUNC_REALLOCARRAY - if test $HAVE_REALLOCARRAY = 0 || test $REPLACE_REALLOCARRAY = 1; then - AC_LIBOBJ(reallocarray) + gl_CONDITIONAL(GL_COND_OBJ_REALLOCARRAY, + test $HAVE_REALLOCARRAY = 0 || test $REPLACE_REALLOCARRAY = 1) + AM_COND_IF(GL_COND_OBJ_REALLOCARRAY, gl_PREREQ_REALLOCARRAY - fi + ) gl_MODULE_INDICATOR(reallocarray) gl_STDLIB_MODULE_INDICATOR(reallocarray) gl_FUNC_RMDIR - if test $REPLACE_RMDIR = 1; then - AC_LIBOBJ(rmdir) - fi + gl_CONDITIONAL(GL_COND_OBJ_RMDIR, test $REPLACE_RMDIR = 1) gl_UNISTD_MODULE_INDICATOR(rmdir) gl_SAVE_CWD gl_SAVEDIR gl_SIGACTION - if test $HAVE_SIGACTION = 0; then - AC_LIBOBJ(sigaction) + gl_CONDITIONAL(GL_COND_OBJ_SIGACTION, test $HAVE_SIGACTION = 0) + AM_COND_IF(GL_COND_OBJ_SIGACTION, gl_PREREQ_SIGACTION - fi + ) gl_SIGNAL_MODULE_INDICATOR(sigaction) gl_SIGNAL_H gl_SIGNAL_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_SIGNBIT - if test $REPLACE_SIGNBIT = 1; then - AC_LIBOBJ(signbitf) - AC_LIBOBJ(signbitd) - AC_LIBOBJ(signbitl) - fi + gl_CONDITIONAL(GL_COND_OBJ_SIGNBIT3, test $REPLACE_SIGNBIT = 1) gl_MATH_MODULE_INDICATOR(signbit) gl_SIGNALBLOCKING - if test $HAVE_POSIX_SIGNALBLOCKING = 0; then - AC_LIBOBJ(sigprocmask) + gl_CONDITIONAL(GL_COND_OBJ_SIGPROCMASK, test $HAVE_POSIX_SIGNALBLOCKING = 0) + AM_COND_IF(GL_COND_OBJ_SIGPROCMASK, gl_PREREQ_SIGPROCMASK - fi + ) gl_SIGNAL_MODULE_INDICATOR(sigprocmask) gl_SIZE_MAX gt_TYPE_SSIZE_T gl_FUNC_STAT - if test $REPLACE_STAT = 1; then - AC_LIBOBJ(stat) + gl_CONDITIONAL(GL_COND_OBJ_STAT, test $REPLACE_STAT = 1) + AM_COND_IF(GL_COND_OBJ_STAT, case "$host_os" in mingw*) AC_LIBOBJ(stat-w32) ;; esac gl_PREREQ_STAT - fi + ) gl_SYS_STAT_MODULE_INDICATOR(stat) gl_STAT_TIME gl_STAT_BIRTHTIME - gl_MODULE_INDICATOR(statat) dnl for lib/openat.h gl_STDALIGN_H - AM_STDBOOL_H + gl_CONDITIONAL_HEADER(stdalign.h) + AC_PROG_MKDIR_P + gl_STDBOOL_H + gl_CONDITIONAL_HEADER(stdbool.h) + AC_PROG_MKDIR_P gl_STDDEF_H gl_STDDEF_H_REQUIRE_DEFAULTS + gl_CONDITIONAL_HEADER(stddef.h) + AC_PROG_MKDIR_P gl_STDINT_H + gl_CONDITIONAL_HEADER(stdint.h) + dnl Because of gl_REPLACE_LIMITS_H: + gl_CONDITIONAL_HEADER(limits.h) + AC_PROG_MKDIR_P gl_STDIO_H gl_STDIO_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P + gl_CONDITIONAL(GL_COND_OBJ_STDIO_READ, test $REPLACE_STDIO_READ_FUNCS = 1) + gl_CONDITIONAL(GL_COND_OBJ_STDIO_WRITE, test $REPLACE_STDIO_WRITE_FUNCS = 1) dnl No need to create extra modules for these functions. Everyone who uses dnl <stdio.h> likely needs them. gl_STDIO_MODULE_INDICATOR(fscanf) @@ -695,41 +693,44 @@ gl_STDIO_MODULE_INDICATOR(fwrite) gl_STDLIB_H gl_STDLIB_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_STDNORETURN_H + gl_CONDITIONAL_HEADER(stdnoreturn.h) + AC_PROG_MKDIR_P gl_FUNC_STPCPY - if test $HAVE_STPCPY = 0; then - AC_LIBOBJ(stpcpy) + gl_CONDITIONAL(GL_COND_OBJ_STPCPY, test $HAVE_STPCPY = 0) + AM_COND_IF(GL_COND_OBJ_STPCPY, gl_PREREQ_STPCPY - fi + ) gl_STRING_MODULE_INDICATOR(stpcpy) gl_FUNC_STRDUP_POSIX - if test $REPLACE_STRDUP = 1; then - AC_LIBOBJ(strdup) + gl_CONDITIONAL(GL_COND_OBJ_STRDUP, test $REPLACE_STRDUP = 1) + AM_COND_IF(GL_COND_OBJ_STRDUP, gl_PREREQ_STRDUP - fi + ) gl_STRING_MODULE_INDICATOR(strdup) gl_FUNC_STRERROR - if test $REPLACE_STRERROR = 1; then - AC_LIBOBJ(strerror) - fi + gl_CONDITIONAL(GL_COND_OBJ_STRERROR, test $REPLACE_STRERROR = 1) gl_MODULE_INDICATOR(strerror) gl_STRING_MODULE_INDICATOR(strerror) AC_REQUIRE(gl_HEADER_ERRNO_H) AC_REQUIRE(gl_FUNC_STRERROR_0) - if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then - AC_LIBOBJ(strerror-override) + gl_CONDITIONAL(GL_COND_OBJ_STRERROR_OVERRIDE, + test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1) + AM_COND_IF(GL_COND_OBJ_STRERROR_OVERRIDE, gl_PREREQ_SYS_H_WINSOCK2 - fi + ) gl_FUNC_STRERROR_R - if test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1; then + AS_IF(test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1, AC_LIBOBJ(strerror_r) gl_PREREQ_STRERROR_R - fi + ) gl_STRING_MODULE_INDICATOR(strerror_r) dnl For the modules argp, error. gl_MODULE_INDICATOR(strerror_r-posix) gl_STRING_H gl_STRING_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_SYS_STAT_H gl_SYS_STAT_H_REQUIRE_DEFAULTS AC_PROG_MKDIR_P @@ -742,29 +743,31 @@ AC_REQUIRE(gl_THREADLIB) gl_TIME_H gl_TIME_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_TIMESPEC gl_UNISTD_H gl_UNISTD_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_UNISTD_SAFER gl_FUNC_UNLINK - if test $REPLACE_UNLINK = 1; then - AC_LIBOBJ(unlink) - fi + gl_CONDITIONAL(GL_COND_OBJ_UNLINK, test $REPLACE_UNLINK = 1) gl_UNISTD_MODULE_INDICATOR(unlink) gl_FUNC_UNLINKAT - if test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1; then - AC_LIBOBJ(unlinkat) - fi + gl_CONDITIONAL(GL_COND_OBJ_UNLINKAT, + test $HAVE_UNLINKAT = 0 || test $REPLACE_UNLINKAT = 1) gl_UNISTD_MODULE_INDICATOR(unlinkat) gl_FUNC_UTIME - if test $HAVE_UTIME = 0 || test $REPLACE_UTIME = 1; then - AC_LIBOBJ(utime) + gl_CONDITIONAL(GL_COND_OBJ_UTIME, + test $HAVE_UTIME = 0 || test $REPLACE_UTIME = 1) + AM_COND_IF(GL_COND_OBJ_UTIME, gl_PREREQ_UTIME - fi + ) gl_UTIME_MODULE_INDICATOR(utime) gl_UTIME_H gl_UTIME_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P gl_UTIMENS + AC_C_VARARRAYS AC_REQUIRE(AC_C_RESTRICT) gl_FUNC_VASNPRINTF gl_FUNC_VFPRINTF_POSIX @@ -772,30 +775,19 @@ gl_MODULE_INDICATOR(vfprintf-posix) gl_WCHAR_H gl_WCHAR_H_REQUIRE_DEFAULTS + AC_PROG_MKDIR_P AC_REQUIRE(AC_CANONICAL_HOST) - case "$host_os" in - mingw*) - AC_LIBOBJ(windows-mutex) - ;; - esac + gl_CONDITIONAL(GL_COND_OBJ_WINDOWS_MUTEX, + case "$host_os" in mingw*) true;; *) false;; esac) AC_REQUIRE(AC_CANONICAL_HOST) - case "$host_os" in - mingw*) - AC_LIBOBJ(windows-once) - ;; - esac + gl_CONDITIONAL(GL_COND_OBJ_WINDOWS_ONCE, + case "$host_os" in mingw*) true;; *) false;; esac) AC_REQUIRE(AC_CANONICAL_HOST) - case "$host_os" in - mingw*) - AC_LIBOBJ(windows-recmutex) - ;; - esac + gl_CONDITIONAL(GL_COND_OBJ_WINDOWS_RECMUTEX, + case "$host_os" in mingw*) true;; *) false;; esac) AC_REQUIRE(AC_CANONICAL_HOST) - case "$host_os" in - mingw*) - AC_LIBOBJ(windows-rwlock) - ;; - esac + gl_CONDITIONAL(GL_COND_OBJ_WINDOWS_RWLOCK, + case "$host_os" in mingw*) true;; *) false;; esac) gl_XALLOC gl_MODULE_INDICATOR(xalloc) gl_MODULE_INDICATOR(xalloc-die) @@ -824,16 +816,28 @@ AC_CONFIG_COMMANDS_PRE( gl_libobjs= gl_ltlibobjs= + gl_libobjdeps= if test -n "$gl_LIBOBJS"; then # Remove the extension. +changequote(,)dnl sed_drop_objext='s/\.o$//;s/\.obj$//' + sed_dirname1='s,//*,/,g' + sed_dirname2='s,\(.\)/$,\1,' + sed_dirname3='s,^^/*$,.,' + sed_dirname4='s,\(.\)/^/*$,\1,' + sed_basename1='s,.*/,,' +changequote(, )dnl for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" + i_dir=`echo "$i" | sed -e "$sed_dirname1" -e "$sed_dirname2" -e "$sed_dirname3" -e "$sed_dirname4"` + i_base=`echo "$i" | sed -e "$sed_basename1"` + gl_libobjdeps="$gl_libobjdeps $i_dir/\$(DEPDIR)/$i_base.Po" done fi AC_SUBST(gl_LIBOBJS, $gl_libobjs) AC_SUBST(gl_LTLIBOBJS, $gl_ltlibobjs) + AC_SUBST(gl_LIBOBJDEPS, $gl_libobjdeps) ) gltests_libdeps= gltests_ltlibdeps= @@ -846,6 +850,7 @@ m4_pushdef(GL_MODULE_INDICATOR_PREFIX, GL) gl_COMMON gl_source_base='tests' + gl_source_base_prefix= changequote(,)dnl gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/^A-Z0-9_/_/g'`_GNULIB_TESTS changequote(, )dnl @@ -874,17 +879,30 @@ AC_CONFIG_COMMANDS_PRE( gltests_libobjs= gltests_ltlibobjs= + gltests_libobjdeps= if test -n "$gltests_LIBOBJS"; then # Remove the extension. +changequote(,)dnl sed_drop_objext='s/\.o$//;s/\.obj$//' + sed_dirname1='s,//*,/,g' + sed_dirname2='s,\(.\)/$,\1,' + sed_dirname3='s,^^/*$,.,' + sed_dirname4='s,\(.\)/^/*$,\1,' + sed_basename1='s,.*/,,' +changequote(, )dnl for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" + i_dir=`echo "$i" | sed -e "$sed_dirname1" -e "$sed_dirname2" -e "$sed_dirname3" -e "$sed_dirname4"` + i_base=`echo "$i" | sed -e "$sed_basename1"` + gltests_libobjdeps="$gltests_libobjdeps $i_dir/\$(DEPDIR)/$i_base.Po" done fi AC_SUBST(gltests_LIBOBJS, $gltests_libobjs) AC_SUBST(gltests_LTLIBOBJS, $gltests_ltlibobjs) + AC_SUBST(gltests_LIBOBJDEPS, $gltests_libobjdeps) ) + AC_REQUIRE(gl_CC_GNULIB_WARNINGS) LIBGZIP_LIBDEPS="$gl_libdeps" AC_SUBST(LIBGZIP_LIBDEPS) LIBGZIP_LTLIBDEPS="$gl_ltlibdeps" @@ -1028,7 +1046,6 @@ lib/fseterr.c lib/fseterr.h lib/fstat.c - lib/fstatat.c lib/fsync.c lib/ftell.c lib/ftello.c @@ -1128,12 +1145,13 @@ lib/stat-w32.c lib/stat-w32.h lib/stat.c - lib/statat.c lib/stdalign.in.h lib/stdbool.in.h lib/stddef.in.h lib/stdint.in.h lib/stdio-impl.h + lib/stdio-read.c + lib/stdio-write.c lib/stdio.in.h lib/stdlib.in.h lib/stdnoreturn.in.h @@ -1229,7 +1247,6 @@ m4/fseeko.m4 m4/fseterr.m4 m4/fstat.m4 - m4/fstatat.m4 m4/fsync.m4 m4/ftell.m4 m4/ftello.m4 @@ -1330,6 +1347,7 @@ m4/utime_h.m4 m4/utimens.m4 m4/utimes.m4 + m4/vararrays.m4 m4/vasnprintf.m4 m4/vfprintf-posix.m4 m4/warn-on-use.m4
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/include_next.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/include_next.m4
Changed
@@ -1,5 +1,5 @@ # include_next.m4 serial 26 -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -193,9 +193,9 @@ if test AS_VAR_GET(gl_header_exists) = yes; then AS_VAR_POPDEF(gl_header_exists) ) - gl_ABSOLUTE_HEADER_ONE(gl_HEADER_NAME) - AS_VAR_COPY(gl_header, gl_cv_absolute_AS_TR_SH(gl_HEADER_NAME)) - AS_VAR_SET(gl_next_header, '"'$gl_header'"') + gl_ABSOLUTE_HEADER_ONE(gl_HEADER_NAME) + AS_VAR_COPY(gl_header, gl_cv_absolute_AS_TR_SH(gl_HEADER_NAME)) + AS_VAR_SET(gl_next_header, '"'$gl_header'"') m4_if($2, check, else AS_VAR_SET(gl_next_header, '<'gl_HEADER_NAME'>')
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/intmax_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/intmax_t.m4
Changed
@@ -1,5 +1,5 @@ # intmax_t.m4 serial 9 -dnl Copyright (C) 1997-2004, 2006-2007, 2009-2021 Free Software Foundation, +dnl Copyright (C) 1997-2004, 2006-2007, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/inttypes.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/inttypes.m4
Changed
@@ -1,5 +1,5 @@ -# inttypes.m4 serial 35 -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +# inttypes.m4 serial 36 +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -36,7 +36,7 @@ AC_DEFUN(gl_INTTYPES_PRI_SCN, PRIPTR_PREFIX= - if test -n "$STDINT_H"; then + if $GL_GENERATE_STDINT_H; then dnl Using the gnulib <stdint.h>. It defines intptr_t to 'long' or dnl 'long long', depending on _WIN64. AC_COMPILE_IFELSE(
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/inttypes_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/inttypes_h.m4
Changed
@@ -1,5 +1,5 @@ # inttypes_h.m4 serial 10 -dnl Copyright (C) 1997-2004, 2006, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 1997-2004, 2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/isnand.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/isnand.m4
Changed
@@ -1,5 +1,5 @@ # isnand.m4 serial 12 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/isnanf.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/isnanf.m4
Changed
@@ -1,5 +1,5 @@ # isnanf.m4 serial 18 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/isnanl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/isnanl.m4
Changed
@@ -1,5 +1,5 @@ # isnanl.m4 serial 22 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/largefile.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/largefile.m4
Changed
@@ -1,7 +1,7 @@ # Enable large files on systems where this is not the default. # Enable support for files on Linux file systems with 64-bit inode numbers. -# Copyright 1992-1996, 1998-2021 Free Software Foundation, Inc. +# Copyright 1992-1996, 1998-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/ldexpl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/ldexpl.m4
Changed
@@ -1,5 +1,5 @@ # ldexpl.m4 serial 17 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/lib-ignore.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/lib-ignore.m4
Changed
@@ -1,6 +1,6 @@ # If possible, ignore libraries that are not depended on. -dnl Copyright (C) 2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/limits-h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/limits-h.m4
Changed
@@ -1,6 +1,6 @@ dnl Check whether limits.h has needed features. -dnl Copyright 2016-2021 Free Software Foundation, Inc. +dnl Copyright 2016-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -27,18 +27,15 @@ gl_cv_header_limits_width=yes, gl_cv_header_limits_width=no)) if test "$gl_cv_header_limits_width" = yes; then - LIMITS_H= + GL_GENERATE_LIMITS_H=false else - LIMITS_H=limits.h + GL_GENERATE_LIMITS_H=true fi - AC_SUBST(LIMITS_H) - AM_CONDITIONAL(GL_GENERATE_LIMITS_H, test -n "$LIMITS_H") ) dnl Unconditionally enables the replacement of <limits.h>. AC_DEFUN(gl_REPLACE_LIMITS_H, AC_REQUIRE(gl_LIMITS_H) - LIMITS_H='limits.h' - AM_CONDITIONAL(GL_GENERATE_LIMITS_H, test -n "$LIMITS_H") + GL_GENERATE_LIMITS_H=true )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/lock.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/lock.m4
Changed
@@ -1,5 +1,5 @@ # lock.m4 serial 14 -dnl Copyright (C) 2005-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2005-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/lseek.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/lseek.m4
Changed
@@ -1,5 +1,5 @@ -# lseek.m4 serial 11 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# lseek.m4 serial 12 +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -59,7 +59,7 @@ ;; esac ) - if test $gl_cv_func_lseek_pipe = no; then + if test "$gl_cv_func_lseek_pipe" = no; then REPLACE_LSEEK=1 AC_DEFINE(LSEEK_PIPE_BROKEN, 1, Define to 1 if lseek does not detect pipes.) @@ -69,4 +69,10 @@ if test $WINDOWS_64_BIT_OFF_T = 1; then REPLACE_LSEEK=1 fi + + dnl macOS SEEK_DATA is incompatible with other platforms. + case $host_os in + darwin*) + REPLACE_LSEEK=1;; + esac )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/lstat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/lstat.m4
Changed
@@ -1,6 +1,6 @@ # serial 33 -# Copyright (C) 1997-2001, 2003-2021 Free Software Foundation, Inc. +# Copyright (C) 1997-2001, 2003-2022 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/malloc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/malloc.m4
Changed
@@ -1,5 +1,5 @@ -# malloc.m4 serial 27 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# malloc.m4 serial 28 +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -43,8 +43,9 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_FUNC_MALLOC_POSIX) - if test $REPLACE_MALLOC = 0; then - _AC_FUNC_MALLOC_IF(, REPLACE_MALLOC=1) + REPLACE_MALLOC_FOR_MALLOC_GNU="$REPLACE_MALLOC_FOR_MALLOC_POSIX" + if test $REPLACE_MALLOC_FOR_MALLOC_GNU = 0; then + _AC_FUNC_MALLOC_IF(, REPLACE_MALLOC_FOR_MALLOC_GNU=1) fi ) @@ -56,7 +57,7 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_CHECK_MALLOC_PTRDIFF) - test "$gl_cv_malloc_ptrdiff" = yes || REPLACE_MALLOC=1 + test "$gl_cv_malloc_ptrdiff" = yes || REPLACE_MALLOC_FOR_MALLOC_POSIX=1 ) # Test whether malloc, realloc, calloc refuse to create objects @@ -109,7 +110,7 @@ AC_DEFINE(HAVE_MALLOC_POSIX, 1, Define if malloc, realloc, and calloc set errno on allocation failure.) else - REPLACE_MALLOC=1 + REPLACE_MALLOC_FOR_MALLOC_POSIX=1 fi )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/malloca.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/malloca.m4
Changed
@@ -1,5 +1,5 @@ # malloca.m4 serial 2 -dnl Copyright (C) 2003-2004, 2006-2007, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2003-2004, 2006-2007, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/manywarnings.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/manywarnings.m4
Changed
@@ -1,5 +1,5 @@ # manywarnings.m4 serial 23 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/math_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/math_h.m4
Changed
@@ -1,5 +1,5 @@ # math_h.m4 serial 125 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/memchr.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/memchr.m4
Changed
@@ -1,5 +1,5 @@ # memchr.m4 serial 18 -dnl Copyright (C) 2002-2004, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2004, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/mempcpy.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/mempcpy.m4
Changed
@@ -1,5 +1,5 @@ # mempcpy.m4 serial 12 -dnl Copyright (C) 2003-2004, 2006-2007, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2003-2004, 2006-2007, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/memrchr.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/memrchr.m4
Changed
@@ -1,5 +1,5 @@ # memrchr.m4 serial 11 -dnl Copyright (C) 2002-2003, 2005-2007, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2002-2003, 2005-2007, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/minmax.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/minmax.m4
Changed
@@ -1,5 +1,5 @@ # minmax.m4 serial 4 -dnl Copyright (C) 2005, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2005, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/mmap-anon.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/mmap-anon.m4
Changed
@@ -1,5 +1,5 @@ # mmap-anon.m4 serial 12 -dnl Copyright (C) 2005, 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2005, 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/mode_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/mode_t.m4
Changed
@@ -1,5 +1,5 @@ # mode_t.m4 serial 2 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/msvc-inval.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/msvc-inval.m4
Changed
@@ -1,5 +1,5 @@ # msvc-inval.m4 serial 1 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/msvc-nothrow.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/msvc-nothrow.m4
Changed
@@ -1,5 +1,5 @@ # msvc-nothrow.m4 serial 1 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/multiarch.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/multiarch.m4
Changed
@@ -1,5 +1,5 @@ # multiarch.m4 serial 9 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/nocrash.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/nocrash.m4
Changed
@@ -1,5 +1,5 @@ # nocrash.m4 serial 5 -dnl Copyright (C) 2005, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2005, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/off_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/off_t.m4
Changed
@@ -1,5 +1,5 @@ # off_t.m4 serial 1 -dnl Copyright (C) 2012-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2012-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/open-cloexec.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/open-cloexec.m4
Changed
@@ -1,6 +1,6 @@ # Test whether O_CLOEXEC is defined. -dnl Copyright 2017-2021 Free Software Foundation, Inc. +dnl Copyright 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/open-slash.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/open-slash.m4
Changed
@@ -1,5 +1,5 @@ # open-slash.m4 serial 2 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/open.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/open.m4
Changed
@@ -1,5 +1,5 @@ # open.m4 serial 15 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/openat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/openat.m4
Changed
@@ -1,7 +1,7 @@ # serial 46 # See if we need to use our replacement for Solaris' openat et al functions. -dnl Copyright (C) 2004-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2004-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/opendir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/opendir.m4
Changed
@@ -1,5 +1,5 @@ # opendir.m4 serial 5 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/pathmax.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/pathmax.m4
Changed
@@ -1,5 +1,5 @@ # pathmax.m4 serial 11 -dnl Copyright (C) 2002-2003, 2005-2006, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2002-2003, 2005-2006, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/perror.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/perror.m4
Changed
@@ -1,5 +1,5 @@ -# perror.m4 serial 9 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +# perror.m4 serial 10 +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -15,7 +15,7 @@ dnl since on glibc systems, strerror_r is replaced only for signature dnl issues, and perror is just fine. Rather, we only want to dnl replace perror if strerror_r was replaced for a content fix. - if test "$ERRNO_H:$REPLACE_STRERROR_0" != :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" != false:0; then dnl The system's perror() cannot know about the new errno values we add dnl to <errno.h>, or any fix for strerror(0). Replace it. REPLACE_PERROR=1
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/pipe.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/pipe.m4
Changed
@@ -1,5 +1,5 @@ # pipe.m4 serial 2 -dnl Copyright (C) 2010-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2010-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/printf-frexp.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/printf-frexp.m4
Changed
@@ -1,5 +1,5 @@ # printf-frexp.m4 serial 5 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/printf-frexpl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/printf-frexpl.m4
Changed
@@ -1,5 +1,5 @@ # printf-frexpl.m4 serial 10 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/printf-posix-rpl.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/printf-posix-rpl.m4
Changed
@@ -1,5 +1,5 @@ # printf-posix-rpl.m4 serial 4 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/printf.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/printf.m4
Changed
@@ -1,5 +1,5 @@ # printf.m4 serial 73 -dnl Copyright (C) 2003, 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003, 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/pthread_rwlock_rdlock.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/pthread_rwlock_rdlock.m4
Changed
@@ -1,5 +1,5 @@ # pthread_rwlock_rdlock.m4 serial 4 -dnl Copyright (C) 2017-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/raise.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/raise.m4
Changed
@@ -1,5 +1,5 @@ # raise.m4 serial 4 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/readdir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/readdir.m4
Changed
@@ -1,5 +1,5 @@ # readdir.m4 serial 1 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/realloc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/realloc.m4
Changed
@@ -1,5 +1,5 @@ -# realloc.m4 serial 24 -dnl Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# realloc.m4 serial 26 +dnl Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -43,8 +43,8 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_FUNC_REALLOC_POSIX) - if test $REPLACE_REALLOC = 0; then - _AC_FUNC_REALLOC_IF(, REPLACE_REALLOC=1) + if test $REPLACE_REALLOC_FOR_REALLOC_GNU = 0; then + _AC_FUNC_REALLOC_IF(, REPLACE_REALLOC_FOR_REALLOC_GNU=1) fi )# gl_FUNC_REALLOC_GNU @@ -57,7 +57,7 @@ AC_REQUIRE(gl_STDLIB_H_DEFAULTS) AC_REQUIRE(gl_FUNC_MALLOC_POSIX) - if test $REPLACE_MALLOC = 1; then - REPLACE_REALLOC=1 + if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then + REPLACE_REALLOC_FOR_REALLOC_POSIX=1 fi )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/reallocarray.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/reallocarray.m4
Changed
@@ -1,5 +1,5 @@ # reallocarray.m4 serial 3 -dnl Copyright (C) 2017-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/rmdir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/rmdir.m4
Changed
@@ -1,5 +1,5 @@ # rmdir.m4 serial 18 -dnl Copyright (C) 2002, 2005, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002, 2005, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/save-cwd.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/save-cwd.m4
Changed
@@ -1,5 +1,5 @@ # serial 10 -dnl Copyright (C) 2002-2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/savedir.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/savedir.m4
Changed
@@ -1,5 +1,5 @@ # savedir.m4 serial 10 -dnl Copyright (C) 2002-2003, 2005-2006, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2002-2003, 2005-2006, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/shell.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/shell.m4
Changed
@@ -1,6 +1,6 @@ # Check for a working shell. -# Copyright (C) 2000-2001, 2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2000-2001, 2007, 2009-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option)
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/sigaction.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/sigaction.m4
Changed
@@ -1,5 +1,5 @@ # sigaction.m4 serial 7 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/signal_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/signal_h.m4
Changed
@@ -1,5 +1,5 @@ # signal_h.m4 serial 22 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/signalblocking.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/signalblocking.m4
Changed
@@ -1,5 +1,5 @@ # signalblocking.m4 serial 17 -dnl Copyright (C) 2001-2002, 2006-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2001-2002, 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/signbit.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/signbit.m4
Changed
@@ -1,5 +1,5 @@ # signbit.m4 serial 20 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/size_max.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/size_max.m4
Changed
@@ -1,5 +1,5 @@ # size_max.m4 serial 12 -dnl Copyright (C) 2003, 2005-2006, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003, 2005-2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/ssize_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/ssize_t.m4
Changed
@@ -1,5 +1,5 @@ # ssize_t.m4 serial 5 (gettext-0.18.2) -dnl Copyright (C) 2001-2003, 2006, 2010-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2001-2003, 2006, 2010-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stat-time.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stat-time.m4
Changed
@@ -1,6 +1,6 @@ # Checks for stat-related time functions. -# Copyright (C) 1998-1999, 2001, 2003, 2005-2007, 2009-2021 Free Software +# Copyright (C) 1998-1999, 2001, 2003, 2005-2007, 2009-2022 Free Software # Foundation, Inc. # This file is free software; the Free Software Foundation
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stat.m4
Changed
@@ -1,6 +1,6 @@ # serial 18 -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdalign.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdalign.m4
Changed
@@ -1,6 +1,6 @@ # Check for stdalign.h that conforms to C11. -dnl Copyright 2011-2021 Free Software Foundation, Inc. +dnl Copyright 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -49,11 +49,8 @@ gl_cv_header_working_stdalign_h=no)) if test $gl_cv_header_working_stdalign_h = yes; then - STDALIGN_H='' + GL_GENERATE_STDALIGN_H=false else - STDALIGN_H='stdalign.h' + GL_GENERATE_STDALIGN_H=true fi - - AC_SUBST(STDALIGN_H) - AM_CONDITIONAL(GL_GENERATE_STDALIGN_H, test -n "$STDALIGN_H") )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdbool.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdbool.m4
Changed
@@ -1,15 +1,15 @@ # Check for stdbool.h that conforms to C99. -dnl Copyright (C) 2002-2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. -#serial 8 +#serial 9 # Prepare for substituting <stdbool.h> if it is not supported. -AC_DEFUN(AM_STDBOOL_H, +AC_DEFUN(gl_STDBOOL_H, AC_REQUIRE(AC_CHECK_HEADER_STDBOOL) AC_REQUIRE(AC_CANONICAL_HOST) @@ -22,20 +22,18 @@ case "$host_os" in solaris*) if test -z "$GCC"; then - STDBOOL_H='stdbool.h' + GL_GENERATE_STDBOOL_H=true else - STDBOOL_H='' + GL_GENERATE_STDBOOL_H=false fi ;; *) - STDBOOL_H='' + GL_GENERATE_STDBOOL_H=false ;; esac else - STDBOOL_H='stdbool.h' + GL_GENERATE_STDBOOL_H=true fi - AC_SUBST(STDBOOL_H) - AM_CONDITIONAL(GL_GENERATE_STDBOOL_H, test -n "$STDBOOL_H") if test "$ac_cv_type__Bool" = yes; then HAVE__BOOL=1 @@ -45,9 +43,6 @@ AC_SUBST(HAVE__BOOL) ) -# AM_STDBOOL_H will be renamed to gl_STDBOOL_H in the future. -AC_DEFUN(gl_STDBOOL_H, AM_STDBOOL_H) - # This version of the macro is needed in autoconf <= 2.68. AC_DEFUN(AC_CHECK_HEADER_STDBOOL,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stddef_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stddef_h.m4
Changed
@@ -1,5 +1,5 @@ -# stddef_h.m4 serial 11 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +# stddef_h.m4 serial 12 +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -14,7 +14,7 @@ dnl Persuade OpenBSD <stddef.h> to declare max_align_t. AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) - STDDEF_H= + GL_GENERATE_STDDEF_H=false dnl Test whether the type max_align_t exists and whether its alignment dnl "is as great as is supported by the implementation in all contexts". @@ -41,12 +41,12 @@ ) if test $gl_cv_type_max_align_t = no; then HAVE_MAX_ALIGN_T=0 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi AC_CACHE_CHECK(whether NULL can be used in arbitrary expressions, @@ -58,12 +58,10 @@ gl_cv_decl_null_works=no)) if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 - STDDEF_H=stddef.h + GL_GENERATE_STDDEF_H=true fi - AC_SUBST(STDDEF_H) - AM_CONDITIONAL(GL_GENERATE_STDDEF_H, test -n "$STDDEF_H") - if test -n "$STDDEF_H"; then + if $GL_GENERATE_STDDEF_H; then gl_NEXT_HEADERS(stddef.h) fi )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdint.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdint.m4
Changed
@@ -1,5 +1,5 @@ -# stdint.m4 serial 60 -dnl Copyright (C) 2001-2021 Free Software Foundation, Inc. +# stdint.m4 serial 61 +dnl Copyright (C) 2001-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -296,7 +296,7 @@ HAVE_C99_STDINT_H=0 HAVE_SYS_BITYPES_H=0 HAVE_SYS_INTTYPES_H=0 - STDINT_H=stdint.h + GL_GENERATE_STDINT_H=true case "$gl_cv_header_working_stdint_h" in *yes) HAVE_C99_STDINT_H=1 @@ -341,7 +341,7 @@ ), gl_cv_header_stdint_width=yes)) if test "$gl_cv_header_stdint_width" = yes; then - STDINT_H= + GL_GENERATE_STDINT_H=false fi ;; *) @@ -364,8 +364,6 @@ AC_SUBST(HAVE_C99_STDINT_H) AC_SUBST(HAVE_SYS_BITYPES_H) AC_SUBST(HAVE_SYS_INTTYPES_H) - AC_SUBST(STDINT_H) - AM_CONDITIONAL(GL_GENERATE_STDINT_H, test -n "$STDINT_H") ) dnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES)
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdint_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdint_h.m4
Changed
@@ -1,5 +1,5 @@ # stdint_h.m4 serial 9 -dnl Copyright (C) 1997-2004, 2006, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 1997-2004, 2006, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdio_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdio_h.m4
Changed
@@ -1,5 +1,5 @@ -# stdio_h.m4 serial 56 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +# stdio_h.m4 serial 59 +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -40,41 +40,32 @@ attribute "__gnu_printf__" instead of "__printf__") fi - dnl This ifdef is necessary to avoid an error "missing file lib/stdio-read.c" - dnl "expected source file, required through AC_LIBSOURCES, not found". It is - dnl also an optimization, to avoid performing a configure check whose result - dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING - dnl or GNULIB_NONBLOCKING redundant. + dnl This ifdef is an optimization, to avoid performing a configure check whose + dnl result is not used. But it does not make the test of + dnl GNULIB_STDIO_H_NONBLOCKING or GNULIB_NONBLOCKING redundant. m4_ifdef(gl_NONBLOCKING_IO, gl_NONBLOCKING_IO if test $gl_cv_have_nonblocking != yes; then REPLACE_STDIO_READ_FUNCS=1 - AC_LIBOBJ(stdio-read) fi ) - dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c" - dnl "expected source file, required through AC_LIBSOURCES, not found". It is - dnl also an optimization, to avoid performing a configure check whose result - dnl is not used. But it does not make the test of GNULIB_STDIO_H_SIGPIPE or - dnl GNULIB_SIGPIPE redundant. + dnl This ifdef is an optimization, to avoid performing a configure check whose + dnl result is not used. But it does not make the test of + dnl GNULIB_STDIO_H_SIGPIPE or GNULIB_SIGPIPE redundant. m4_ifdef(gl_SIGNAL_SIGPIPE, gl_SIGNAL_SIGPIPE if test $gl_cv_header_signal_h_SIGPIPE != yes; then REPLACE_STDIO_WRITE_FUNCS=1 - AC_LIBOBJ(stdio-write) fi ) - dnl This ifdef is necessary to avoid an error "missing file lib/stdio-write.c" - dnl "expected source file, required through AC_LIBSOURCES, not found". It is - dnl also an optimization, to avoid performing a configure check whose result - dnl is not used. But it does not make the test of GNULIB_STDIO_H_NONBLOCKING - dnl or GNULIB_NONBLOCKING redundant. + dnl This ifdef is an optimization, to avoid performing a configure check whose + dnl result is not used. But it does not make the test of + dnl GNULIB_STDIO_H_NONBLOCKING or GNULIB_NONBLOCKING redundant. m4_ifdef(gl_NONBLOCKING_IO, gl_NONBLOCKING_IO if test $gl_cv_have_nonblocking != yes; then REPLACE_STDIO_WRITE_FUNCS=1 - AC_LIBOBJ(stdio-write) fi ) @@ -119,6 +110,7 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FGETC) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FGETS) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FOPEN) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FOPEN_GNU) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FPRINTF) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FPRINTF_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FPURGE) @@ -202,6 +194,7 @@ REPLACE_FDOPEN=0; AC_SUBST(REPLACE_FDOPEN) REPLACE_FFLUSH=0; AC_SUBST(REPLACE_FFLUSH) REPLACE_FOPEN=0; AC_SUBST(REPLACE_FOPEN) + REPLACE_FOPEN_FOR_FOPEN_GNU=0; AC_SUBST(REPLACE_FOPEN_FOR_FOPEN_GNU) REPLACE_FPRINTF=0; AC_SUBST(REPLACE_FPRINTF) REPLACE_FPURGE=0; AC_SUBST(REPLACE_FPURGE) REPLACE_FREOPEN=0; AC_SUBST(REPLACE_FREOPEN)
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdlib_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdlib_h.m4
Changed
@@ -1,5 +1,5 @@ -# stdlib_h.m4 serial 63 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +# stdlib_h.m4 serial 66 +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -68,12 +68,14 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB__EXIT) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_ALIGNED_ALLOC) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_ATOLL) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_CALLOC_GNU) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_CALLOC_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_CANONICALIZE_FILE_NAME) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_FREE_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETLOADAVG) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETSUBOPT) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GRANTPT) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MALLOC_GNU) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MALLOC_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MBTOWC) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MKDTEMP) @@ -90,6 +92,7 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_RANDOM) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_RANDOM_R) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_REALLOCARRAY) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_REALLOC_GNU) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_REALLOC_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_REALPATH) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_RPMATCH) @@ -164,11 +167,13 @@ HAVE_UNLOCKPT=1; AC_SUBST(HAVE_UNLOCKPT) HAVE_DECL_UNSETENV=1; AC_SUBST(HAVE_DECL_UNSETENV) REPLACE_ALIGNED_ALLOC=0; AC_SUBST(REPLACE_ALIGNED_ALLOC) - REPLACE_CALLOC=0; AC_SUBST(REPLACE_CALLOC) + REPLACE_CALLOC_FOR_CALLOC_GNU=0; AC_SUBST(REPLACE_CALLOC_FOR_CALLOC_GNU) + REPLACE_CALLOC_FOR_CALLOC_POSIX=0; AC_SUBST(REPLACE_CALLOC_FOR_CALLOC_POSIX) REPLACE_CANONICALIZE_FILE_NAME=0; AC_SUBST(REPLACE_CANONICALIZE_FILE_NAME) REPLACE_FREE=0; AC_SUBST(REPLACE_FREE) REPLACE_INITSTATE=0; AC_SUBST(REPLACE_INITSTATE) - REPLACE_MALLOC=0; AC_SUBST(REPLACE_MALLOC) + REPLACE_MALLOC_FOR_MALLOC_GNU=0; AC_SUBST(REPLACE_MALLOC_FOR_MALLOC_GNU) + REPLACE_MALLOC_FOR_MALLOC_POSIX=0; AC_SUBST(REPLACE_MALLOC_FOR_MALLOC_POSIX) REPLACE_MBTOWC=0; AC_SUBST(REPLACE_MBTOWC) REPLACE_MKSTEMP=0; AC_SUBST(REPLACE_MKSTEMP) REPLACE_POSIX_MEMALIGN=0; AC_SUBST(REPLACE_POSIX_MEMALIGN) @@ -178,7 +183,8 @@ REPLACE_QSORT_R=0; AC_SUBST(REPLACE_QSORT_R) REPLACE_RANDOM=0; AC_SUBST(REPLACE_RANDOM) REPLACE_RANDOM_R=0; AC_SUBST(REPLACE_RANDOM_R) - REPLACE_REALLOC=0; AC_SUBST(REPLACE_REALLOC) + REPLACE_REALLOC_FOR_REALLOC_GNU=0; AC_SUBST(REPLACE_REALLOC_FOR_REALLOC_GNU) + REPLACE_REALLOC_FOR_REALLOC_POSIX=0; AC_SUBST(REPLACE_REALLOC_FOR_REALLOC_POSIX) REPLACE_REALLOCARRAY=0; AC_SUBST(REPLACE_REALLOCARRAY) REPLACE_REALPATH=0; AC_SUBST(REPLACE_REALPATH) REPLACE_SETENV=0; AC_SUBST(REPLACE_SETENV)
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stdnoreturn.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stdnoreturn.m4
Changed
@@ -1,6 +1,6 @@ # Check for stdnoreturn.h that conforms to C11. -dnl Copyright 2012-2021 Free Software Foundation, Inc. +dnl Copyright 2012-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -15,7 +15,7 @@ dnl Regardless whether a working <stdnoreturn.h> exists or not, dnl we need our own <stdnoreturn.h>, because of the definition dnl of _Noreturn done by gnulib-common.m4. - STDNORETURN_H='stdnoreturn.h' + GL_GENERATE_STDNORETURN_H=true ;; *) AC_CACHE_CHECK(for working stdnoreturn.h, @@ -43,12 +43,10 @@ gl_cv_header_working_stdnoreturn_h=yes, gl_cv_header_working_stdnoreturn_h=no)) if test $gl_cv_header_working_stdnoreturn_h = yes; then - STDNORETURN_H='' + GL_GENERATE_STDNORETURN_H=false else - STDNORETURN_H='stdnoreturn.h' + GL_GENERATE_STDNORETURN_H=true fi ;; esac - AC_SUBST(STDNORETURN_H) - AM_CONDITIONAL(GL_GENERATE_STDNORETURN_H, test -n "$STDNORETURN_H") )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/stpcpy.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/stpcpy.m4
Changed
@@ -1,5 +1,5 @@ # stpcpy.m4 serial 9 -dnl Copyright (C) 2002, 2007, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002, 2007, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/strdup.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/strdup.m4
Changed
@@ -1,6 +1,6 @@ # strdup.m4 serial 15 -dnl Copyright (C) 2002-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/strerror.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/strerror.m4
Changed
@@ -1,5 +1,5 @@ -# strerror.m4 serial 22 -dnl Copyright (C) 2002, 2007-2021 Free Software Foundation, Inc. +# strerror.m4 serial 23 +dnl Copyright (C) 2002, 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -13,7 +13,7 @@ m4_ifdef(gl_FUNC_STRERROR_R_WORKS, AC_REQUIRE(gl_FUNC_STRERROR_R_WORKS) ) - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then AC_CACHE_CHECK(for working strerror function, gl_cv_func_working_strerror, AC_RUN_IFELSE(
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/strerror_r.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/strerror_r.m4
Changed
@@ -1,5 +1,5 @@ -# strerror_r.m4 serial 21 -dnl Copyright (C) 2002, 2007-2021 Free Software Foundation, Inc. +# strerror_r.m4 serial 24 +dnl Copyright (C) 2002, 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -9,9 +9,6 @@ AC_REQUIRE(gl_STRING_H_DEFAULTS) AC_REQUIRE(gl_FUNC_STRERROR_R_WORKS) - dnl Persuade Solaris <string.h> to declare strerror_r(). - AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) - dnl Some systems don't declare strerror_r() if _THREAD_SAFE and _REENTRANT dnl are not defined. AC_CHECK_DECLS_ONCE(strerror_r) @@ -20,7 +17,7 @@ fi if test $ac_cv_func_strerror_r = yes; then - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then if test $gl_cv_func_strerror_r_posix_signature = yes; then case "$gl_cv_func_strerror_r_works" in dnl The system's strerror_r has bugs. Replace it. @@ -40,6 +37,7 @@ # Prerequisites of lib/strerror_r.c. AC_DEFUN(gl_PREREQ_STRERROR_R, + AC_REQUIRE(AC_FUNC_STRERROR_R) dnl glibc >= 2.3.4 and cygwin 1.7.9 have a function __xpg_strerror_r. AC_CHECK_FUNCS_ONCE(__xpg_strerror_r) AC_CHECK_FUNCS_ONCE(catgets) @@ -52,11 +50,16 @@ AC_REQUIRE(gl_HEADER_ERRNO_H) AC_REQUIRE(AC_CANONICAL_HOST) dnl for cross-compiles + + dnl Persuade Android <string.h> to use the GNU strerror_r API, + dnl and Solaris <string.h> to declare strerror_r. + AC_REQUIRE(gl_USE_SYSTEM_EXTENSIONS) + AC_REQUIRE(gl_FUNC_STRERROR_0) AC_CHECK_FUNCS_ONCE(strerror_r) if test $ac_cv_func_strerror_r = yes; then - if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then + if test "$GL_GENERATE_ERRNO_H:$REPLACE_STRERROR_0" = false:0; then dnl The POSIX prototype is: int strerror_r (int, char *, size_t); dnl glibc, Cygwin: char *strerror_r (int, char *, size_t); dnl AIX 5.1, OSF/1 5.1: int strerror_r (int, char *, int);
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/string_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/string_h.m4
Changed
@@ -1,11 +1,11 @@ # Configure a GNU-like replacement for <string.h>. -# Copyright (C) 2007-2021 Free Software Foundation, Inc. +# Copyright (C) 2007-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 32 +# serial 34 # Written by Paul Eggert. @@ -93,6 +93,8 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MDA_STRDUP, 1) ) m4_require(GL_MODULE_INDICATOR_PREFIX_STRING_H_MODULE_INDICATOR_DEFAULTS) + dnl Make sure the shell variable for GNULIB_FREE_POSIX is initialized. + gl_STDLIB_H_REQUIRE_DEFAULTS AC_REQUIRE(gl_STRING_H_DEFAULTS) )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/sys_socket_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/sys_socket_h.m4
Changed
@@ -1,5 +1,5 @@ -# sys_socket_h.m4 serial 28 -dnl Copyright (C) 2005-2021 Free Software Foundation, Inc. +# sys_socket_h.m4 serial 29 +dnl Copyright (C) 2005-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -22,6 +22,7 @@ ;; esac + GL_GENERATE_SYS_SOCKET_H=false AC_CACHE_CHECK(whether <sys/socket.h> is self-contained, gl_cv_header_sys_socket_h_selfcontained, @@ -44,7 +45,7 @@ gl_cv_header_sys_socket_h_shut=no) ) if test $gl_cv_header_sys_socket_h_shut = no; then - SYS_SOCKET_H='sys/socket.h' + GL_GENERATE_SYS_SOCKET_H=true fi fi fi @@ -83,7 +84,7 @@ fi if test $HAVE_STRUCT_SOCKADDR_STORAGE = 0 || test $HAVE_SA_FAMILY_T = 0 \ || test $HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = 0; then - SYS_SOCKET_H='sys/socket.h' + GL_GENERATE_SYS_SOCKET_H=true fi gl_PREREQ_SYS_H_WINSOCK2
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/sys_stat_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/sys_stat_h.m4
Changed
@@ -1,5 +1,5 @@ # sys_stat_h.m4 serial 41 -*- Autoconf -*- -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/sys_time_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/sys_time_h.m4
Changed
@@ -1,7 +1,7 @@ # Configure a replacement for <sys/time.h>. # serial 12 -# Copyright (C) 2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/sys_types_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/sys_types_h.m4
Changed
@@ -1,5 +1,5 @@ # sys_types_h.m4 serial 13 -dnl Copyright (C) 2011-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2011-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/threadlib.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/threadlib.m4
Changed
@@ -1,5 +1,5 @@ -# threadlib.m4 serial 31 -dnl Copyright (C) 2005-2021 Free Software Foundation, Inc. +# threadlib.m4 serial 32 +dnl Copyright (C) 2005-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -84,38 +84,48 @@ AC_REQUIRE(AC_CANONICAL_HOST) AC_CACHE_CHECK(whether imported symbols can be declared weak, gl_cv_have_weak, - gl_cv_have_weak=no - dnl First, test whether the compiler accepts it syntactically. - AC_LINK_IFELSE( - AC_LANG_PROGRAM( - extern void xyzzy (); + case "$host_os" in + cygwin*) + dnl On Cygwin 3.2.0 with gcc 10.2, the test below would succeed, but + dnl programs that use pthread_in_use() with weak symbol references + dnl crash miserably at runtime. + gl_cv_have_weak="guessing no" + ;; + *) + gl_cv_have_weak=no + dnl First, test whether the compiler accepts it syntactically. + AC_LINK_IFELSE( + AC_LANG_PROGRAM( + extern void xyzzy (); #pragma weak xyzzy, - xyzzy();), - gl_cv_have_weak=maybe) - if test $gl_cv_have_weak = maybe; then - dnl Second, test whether it actually works. On Cygwin 1.7.2, with - dnl gcc 4.3, symbols declared weak always evaluate to the address 0. - AC_RUN_IFELSE( - AC_LANG_SOURCE( + xyzzy();), + gl_cv_have_weak=maybe) + if test $gl_cv_have_weak = maybe; then + dnl Second, test whether it actually works. On Cygwin 1.7.2, with + dnl gcc 4.3, symbols declared weak always evaluate to the address 0. + AC_RUN_IFELSE( + AC_LANG_SOURCE( #include <stdio.h> #pragma weak fputs int main () { return (fputs == NULL); }), - gl_cv_have_weak=yes, - gl_cv_have_weak=no, - dnl When cross-compiling, assume that only ELF platforms support - dnl weak symbols. - AC_EGREP_CPP(Extensible Linking Format, - #ifdef __ELF__ - Extensible Linking Format - #endif - , - gl_cv_have_weak="guessing yes", - gl_cv_have_weak="guessing no") - ) - fi + gl_cv_have_weak=yes, + gl_cv_have_weak=no, + dnl When cross-compiling, assume that only ELF platforms support + dnl weak symbols. + AC_EGREP_CPP(Extensible Linking Format, + #ifdef __ELF__ + Extensible Linking Format + #endif + , + gl_cv_have_weak="guessing yes", + gl_cv_have_weak="guessing no") + ) + fi + ;; + esac dnl But when linking statically, weak symbols don't work. case " $LDFLAGS " in *" -static "*) gl_cv_have_weak=no ;;
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/time_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/time_h.m4
Changed
@@ -1,8 +1,8 @@ # Configure a more-standard replacement for <time.h>. -# Copyright (C) 2000-2001, 2003-2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2000-2001, 2003-2007, 2009-2022 Free Software Foundation, Inc. -# serial 18 +# serial 19 # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -133,6 +133,7 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_STRPTIME) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TIMEGM) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TIMESPEC_GET) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TIMESPEC_GETRES) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TIME_R) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TIME_RZ) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_TZSET) @@ -151,6 +152,7 @@ HAVE_STRPTIME=1; AC_SUBST(HAVE_STRPTIME) HAVE_TIMEGM=1; AC_SUBST(HAVE_TIMEGM) HAVE_TIMESPEC_GET=1; AC_SUBST(HAVE_TIMESPEC_GET) + HAVE_TIMESPEC_GETRES=1; AC_SUBST(HAVE_TIMESPEC_GETRES) dnl Even GNU libc does not have timezone_t yet. HAVE_TIMEZONE_T=0; AC_SUBST(HAVE_TIMEZONE_T) dnl If another module says to replace or to not replace, do that.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/timespec.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/timespec.m4
Changed
@@ -1,6 +1,6 @@ #serial 15 -# Copyright (C) 2000-2001, 2003-2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2000-2001, 2003-2007, 2009-2022 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/ungetc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/ungetc.m4
Changed
@@ -1,5 +1,5 @@ # ungetc.m4 serial 10 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/unistd-safer.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/unistd-safer.m4
Changed
@@ -1,5 +1,5 @@ #serial 9 -dnl Copyright (C) 2002, 2005-2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002, 2005-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/unistd_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/unistd_h.m4
Changed
@@ -1,5 +1,5 @@ -# unistd_h.m4 serial 89 -dnl Copyright (C) 2006-2021 Free Software Foundation, Inc. +# unistd_h.m4 serial 90 +dnl Copyright (C) 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -112,6 +112,7 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETOPT_POSIX) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETPAGESIZE) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETPASS) + gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETPASS_GNU) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GETUSERSHELL) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_GROUP_MEMBER) gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_ISATTY) @@ -170,98 +171,100 @@ AC_DEFUN(gl_UNISTD_H_DEFAULTS, dnl Assume proper GNU behavior unless another module says otherwise. - HAVE_CHOWN=1; AC_SUBST(HAVE_CHOWN) - HAVE_COPY_FILE_RANGE=1; AC_SUBST(HAVE_COPY_FILE_RANGE) - HAVE_DUP3=1; AC_SUBST(HAVE_DUP3) - HAVE_EUIDACCESS=1; AC_SUBST(HAVE_EUIDACCESS) - HAVE_EXECVPE=1; AC_SUBST(HAVE_EXECVPE) - HAVE_FACCESSAT=1; AC_SUBST(HAVE_FACCESSAT) - HAVE_FCHDIR=1; AC_SUBST(HAVE_FCHDIR) - HAVE_FCHOWNAT=1; AC_SUBST(HAVE_FCHOWNAT) - HAVE_FDATASYNC=1; AC_SUBST(HAVE_FDATASYNC) - HAVE_FSYNC=1; AC_SUBST(HAVE_FSYNC) - HAVE_FTRUNCATE=1; AC_SUBST(HAVE_FTRUNCATE) - HAVE_GETDTABLESIZE=1; AC_SUBST(HAVE_GETDTABLESIZE) - HAVE_GETENTROPY=1; AC_SUBST(HAVE_GETENTROPY) - HAVE_GETGROUPS=1; AC_SUBST(HAVE_GETGROUPS) - HAVE_GETHOSTNAME=1; AC_SUBST(HAVE_GETHOSTNAME) - HAVE_GETLOGIN=1; AC_SUBST(HAVE_GETLOGIN) - HAVE_GETPAGESIZE=1; AC_SUBST(HAVE_GETPAGESIZE) - HAVE_GETPASS=1; AC_SUBST(HAVE_GETPASS) - HAVE_GROUP_MEMBER=1; AC_SUBST(HAVE_GROUP_MEMBER) - HAVE_LCHOWN=1; AC_SUBST(HAVE_LCHOWN) - HAVE_LINK=1; AC_SUBST(HAVE_LINK) - HAVE_LINKAT=1; AC_SUBST(HAVE_LINKAT) - HAVE_PIPE=1; AC_SUBST(HAVE_PIPE) - HAVE_PIPE2=1; AC_SUBST(HAVE_PIPE2) - HAVE_PREAD=1; AC_SUBST(HAVE_PREAD) - HAVE_PWRITE=1; AC_SUBST(HAVE_PWRITE) - HAVE_READLINK=1; AC_SUBST(HAVE_READLINK) - HAVE_READLINKAT=1; AC_SUBST(HAVE_READLINKAT) - HAVE_SETHOSTNAME=1; AC_SUBST(HAVE_SETHOSTNAME) - HAVE_SLEEP=1; AC_SUBST(HAVE_SLEEP) - HAVE_SYMLINK=1; AC_SUBST(HAVE_SYMLINK) - HAVE_SYMLINKAT=1; AC_SUBST(HAVE_SYMLINKAT) - HAVE_UNLINKAT=1; AC_SUBST(HAVE_UNLINKAT) - HAVE_USLEEP=1; AC_SUBST(HAVE_USLEEP) - HAVE_DECL_ENVIRON=1; AC_SUBST(HAVE_DECL_ENVIRON) - HAVE_DECL_EXECVPE=1; AC_SUBST(HAVE_DECL_EXECVPE) - HAVE_DECL_FCHDIR=1; AC_SUBST(HAVE_DECL_FCHDIR) - HAVE_DECL_FDATASYNC=1; AC_SUBST(HAVE_DECL_FDATASYNC) - HAVE_DECL_GETDOMAINNAME=1; AC_SUBST(HAVE_DECL_GETDOMAINNAME) - HAVE_DECL_GETLOGIN=1; AC_SUBST(HAVE_DECL_GETLOGIN) - HAVE_DECL_GETLOGIN_R=1; AC_SUBST(HAVE_DECL_GETLOGIN_R) - HAVE_DECL_GETPAGESIZE=1; AC_SUBST(HAVE_DECL_GETPAGESIZE) - HAVE_DECL_GETUSERSHELL=1; AC_SUBST(HAVE_DECL_GETUSERSHELL) - HAVE_DECL_SETHOSTNAME=1; AC_SUBST(HAVE_DECL_SETHOSTNAME) - HAVE_DECL_TRUNCATE=1; AC_SUBST(HAVE_DECL_TRUNCATE) - HAVE_DECL_TTYNAME_R=1; AC_SUBST(HAVE_DECL_TTYNAME_R) - HAVE_OS_H=0; AC_SUBST(HAVE_OS_H) - HAVE_SYS_PARAM_H=0; AC_SUBST(HAVE_SYS_PARAM_H) - REPLACE_ACCESS=0; AC_SUBST(REPLACE_ACCESS) - REPLACE_CHOWN=0; AC_SUBST(REPLACE_CHOWN) - REPLACE_CLOSE=0; AC_SUBST(REPLACE_CLOSE) - REPLACE_DUP=0; AC_SUBST(REPLACE_DUP) - REPLACE_DUP2=0; AC_SUBST(REPLACE_DUP2) - REPLACE_EXECL=0; AC_SUBST(REPLACE_EXECL) - REPLACE_EXECLE=0; AC_SUBST(REPLACE_EXECLE) - REPLACE_EXECLP=0; AC_SUBST(REPLACE_EXECLP) - REPLACE_EXECV=0; AC_SUBST(REPLACE_EXECV) - REPLACE_EXECVE=0; AC_SUBST(REPLACE_EXECVE) - REPLACE_EXECVP=0; AC_SUBST(REPLACE_EXECVP) - REPLACE_EXECVPE=0; AC_SUBST(REPLACE_EXECVPE) - REPLACE_FACCESSAT=0; AC_SUBST(REPLACE_FACCESSAT) - REPLACE_FCHOWNAT=0; AC_SUBST(REPLACE_FCHOWNAT) - REPLACE_FTRUNCATE=0; AC_SUBST(REPLACE_FTRUNCATE) - REPLACE_GETCWD=0; AC_SUBST(REPLACE_GETCWD) - REPLACE_GETDOMAINNAME=0; AC_SUBST(REPLACE_GETDOMAINNAME) - REPLACE_GETDTABLESIZE=0; AC_SUBST(REPLACE_GETDTABLESIZE) - REPLACE_GETLOGIN_R=0; AC_SUBST(REPLACE_GETLOGIN_R) - REPLACE_GETGROUPS=0; AC_SUBST(REPLACE_GETGROUPS) - REPLACE_GETPAGESIZE=0; AC_SUBST(REPLACE_GETPAGESIZE) - REPLACE_GETPASS=0; AC_SUBST(REPLACE_GETPASS) - REPLACE_ISATTY=0; AC_SUBST(REPLACE_ISATTY) - REPLACE_LCHOWN=0; AC_SUBST(REPLACE_LCHOWN) - REPLACE_LINK=0; AC_SUBST(REPLACE_LINK) - REPLACE_LINKAT=0; AC_SUBST(REPLACE_LINKAT) - REPLACE_LSEEK=0; AC_SUBST(REPLACE_LSEEK) - REPLACE_PREAD=0; AC_SUBST(REPLACE_PREAD) - REPLACE_PWRITE=0; AC_SUBST(REPLACE_PWRITE) - REPLACE_READ=0; AC_SUBST(REPLACE_READ) - REPLACE_READLINK=0; AC_SUBST(REPLACE_READLINK) - REPLACE_READLINKAT=0; AC_SUBST(REPLACE_READLINKAT) - REPLACE_RMDIR=0; AC_SUBST(REPLACE_RMDIR) - REPLACE_SLEEP=0; AC_SUBST(REPLACE_SLEEP) - REPLACE_SYMLINK=0; AC_SUBST(REPLACE_SYMLINK) - REPLACE_SYMLINKAT=0; AC_SUBST(REPLACE_SYMLINKAT) - REPLACE_TRUNCATE=0; AC_SUBST(REPLACE_TRUNCATE) - REPLACE_TTYNAME_R=0; AC_SUBST(REPLACE_TTYNAME_R) - REPLACE_UNLINK=0; AC_SUBST(REPLACE_UNLINK) - REPLACE_UNLINKAT=0; AC_SUBST(REPLACE_UNLINKAT) - REPLACE_USLEEP=0; AC_SUBST(REPLACE_USLEEP) - REPLACE_WRITE=0; AC_SUBST(REPLACE_WRITE) - UNISTD_H_HAVE_SYS_RANDOM_H=0; AC_SUBST(UNISTD_H_HAVE_SYS_RANDOM_H) - UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST(UNISTD_H_HAVE_WINSOCK2_H) + HAVE_CHOWN=1; AC_SUBST(HAVE_CHOWN) + HAVE_COPY_FILE_RANGE=1; AC_SUBST(HAVE_COPY_FILE_RANGE) + HAVE_DUP3=1; AC_SUBST(HAVE_DUP3) + HAVE_EUIDACCESS=1; AC_SUBST(HAVE_EUIDACCESS) + HAVE_EXECVPE=1; AC_SUBST(HAVE_EXECVPE) + HAVE_FACCESSAT=1; AC_SUBST(HAVE_FACCESSAT) + HAVE_FCHDIR=1; AC_SUBST(HAVE_FCHDIR) + HAVE_FCHOWNAT=1; AC_SUBST(HAVE_FCHOWNAT) + HAVE_FDATASYNC=1; AC_SUBST(HAVE_FDATASYNC) + HAVE_FSYNC=1; AC_SUBST(HAVE_FSYNC) + HAVE_FTRUNCATE=1; AC_SUBST(HAVE_FTRUNCATE) + HAVE_GETDTABLESIZE=1; AC_SUBST(HAVE_GETDTABLESIZE) + HAVE_GETENTROPY=1; AC_SUBST(HAVE_GETENTROPY) + HAVE_GETGROUPS=1; AC_SUBST(HAVE_GETGROUPS) + HAVE_GETHOSTNAME=1; AC_SUBST(HAVE_GETHOSTNAME) + HAVE_GETLOGIN=1; AC_SUBST(HAVE_GETLOGIN) + HAVE_GETPAGESIZE=1; AC_SUBST(HAVE_GETPAGESIZE) + HAVE_GETPASS=1; AC_SUBST(HAVE_GETPASS) + HAVE_GROUP_MEMBER=1; AC_SUBST(HAVE_GROUP_MEMBER) + HAVE_LCHOWN=1; AC_SUBST(HAVE_LCHOWN) + HAVE_LINK=1; AC_SUBST(HAVE_LINK) + HAVE_LINKAT=1; AC_SUBST(HAVE_LINKAT) + HAVE_PIPE=1; AC_SUBST(HAVE_PIPE) + HAVE_PIPE2=1; AC_SUBST(HAVE_PIPE2) + HAVE_PREAD=1; AC_SUBST(HAVE_PREAD) + HAVE_PWRITE=1; AC_SUBST(HAVE_PWRITE) + HAVE_READLINK=1; AC_SUBST(HAVE_READLINK) + HAVE_READLINKAT=1; AC_SUBST(HAVE_READLINKAT) + HAVE_SETHOSTNAME=1; AC_SUBST(HAVE_SETHOSTNAME) + HAVE_SLEEP=1; AC_SUBST(HAVE_SLEEP) + HAVE_SYMLINK=1; AC_SUBST(HAVE_SYMLINK) + HAVE_SYMLINKAT=1; AC_SUBST(HAVE_SYMLINKAT) + HAVE_UNLINKAT=1; AC_SUBST(HAVE_UNLINKAT) + HAVE_USLEEP=1; AC_SUBST(HAVE_USLEEP) + HAVE_DECL_ENVIRON=1; AC_SUBST(HAVE_DECL_ENVIRON) + HAVE_DECL_EXECVPE=1; AC_SUBST(HAVE_DECL_EXECVPE) + HAVE_DECL_FCHDIR=1; AC_SUBST(HAVE_DECL_FCHDIR) + HAVE_DECL_FDATASYNC=1; AC_SUBST(HAVE_DECL_FDATASYNC) + HAVE_DECL_GETDOMAINNAME=1; AC_SUBST(HAVE_DECL_GETDOMAINNAME) + HAVE_DECL_GETLOGIN=1; AC_SUBST(HAVE_DECL_GETLOGIN) + HAVE_DECL_GETLOGIN_R=1; AC_SUBST(HAVE_DECL_GETLOGIN_R) + HAVE_DECL_GETPAGESIZE=1; AC_SUBST(HAVE_DECL_GETPAGESIZE) + HAVE_DECL_GETUSERSHELL=1; AC_SUBST(HAVE_DECL_GETUSERSHELL) + HAVE_DECL_SETHOSTNAME=1; AC_SUBST(HAVE_DECL_SETHOSTNAME) + HAVE_DECL_TRUNCATE=1; AC_SUBST(HAVE_DECL_TRUNCATE) + HAVE_DECL_TTYNAME_R=1; AC_SUBST(HAVE_DECL_TTYNAME_R) + HAVE_OS_H=0; AC_SUBST(HAVE_OS_H) + HAVE_SYS_PARAM_H=0; AC_SUBST(HAVE_SYS_PARAM_H) + REPLACE_ACCESS=0; AC_SUBST(REPLACE_ACCESS) + REPLACE_CHOWN=0; AC_SUBST(REPLACE_CHOWN) + REPLACE_CLOSE=0; AC_SUBST(REPLACE_CLOSE) + REPLACE_COPY_FILE_RANGE=0; AC_SUBST(REPLACE_COPY_FILE_RANGE) + REPLACE_DUP=0; AC_SUBST(REPLACE_DUP) + REPLACE_DUP2=0; AC_SUBST(REPLACE_DUP2) + REPLACE_EXECL=0; AC_SUBST(REPLACE_EXECL) + REPLACE_EXECLE=0; AC_SUBST(REPLACE_EXECLE) + REPLACE_EXECLP=0; AC_SUBST(REPLACE_EXECLP) + REPLACE_EXECV=0; AC_SUBST(REPLACE_EXECV) + REPLACE_EXECVE=0; AC_SUBST(REPLACE_EXECVE) + REPLACE_EXECVP=0; AC_SUBST(REPLACE_EXECVP) + REPLACE_EXECVPE=0; AC_SUBST(REPLACE_EXECVPE) + REPLACE_FACCESSAT=0; AC_SUBST(REPLACE_FACCESSAT) + REPLACE_FCHOWNAT=0; AC_SUBST(REPLACE_FCHOWNAT) + REPLACE_FTRUNCATE=0; AC_SUBST(REPLACE_FTRUNCATE) + REPLACE_GETCWD=0; AC_SUBST(REPLACE_GETCWD) + REPLACE_GETDOMAINNAME=0; AC_SUBST(REPLACE_GETDOMAINNAME) + REPLACE_GETDTABLESIZE=0; AC_SUBST(REPLACE_GETDTABLESIZE) + REPLACE_GETLOGIN_R=0; AC_SUBST(REPLACE_GETLOGIN_R) + REPLACE_GETGROUPS=0; AC_SUBST(REPLACE_GETGROUPS) + REPLACE_GETPAGESIZE=0; AC_SUBST(REPLACE_GETPAGESIZE) + REPLACE_GETPASS=0; AC_SUBST(REPLACE_GETPASS) + REPLACE_GETPASS_FOR_GETPASS_GNU=0; AC_SUBST(REPLACE_GETPASS_FOR_GETPASS_GNU) + REPLACE_ISATTY=0; AC_SUBST(REPLACE_ISATTY) + REPLACE_LCHOWN=0; AC_SUBST(REPLACE_LCHOWN) + REPLACE_LINK=0; AC_SUBST(REPLACE_LINK) + REPLACE_LINKAT=0; AC_SUBST(REPLACE_LINKAT) + REPLACE_LSEEK=0; AC_SUBST(REPLACE_LSEEK) + REPLACE_PREAD=0; AC_SUBST(REPLACE_PREAD) + REPLACE_PWRITE=0; AC_SUBST(REPLACE_PWRITE) + REPLACE_READ=0; AC_SUBST(REPLACE_READ) + REPLACE_READLINK=0; AC_SUBST(REPLACE_READLINK) + REPLACE_READLINKAT=0; AC_SUBST(REPLACE_READLINKAT) + REPLACE_RMDIR=0; AC_SUBST(REPLACE_RMDIR) + REPLACE_SLEEP=0; AC_SUBST(REPLACE_SLEEP) + REPLACE_SYMLINK=0; AC_SUBST(REPLACE_SYMLINK) + REPLACE_SYMLINKAT=0; AC_SUBST(REPLACE_SYMLINKAT) + REPLACE_TRUNCATE=0; AC_SUBST(REPLACE_TRUNCATE) + REPLACE_TTYNAME_R=0; AC_SUBST(REPLACE_TTYNAME_R) + REPLACE_UNLINK=0; AC_SUBST(REPLACE_UNLINK) + REPLACE_UNLINKAT=0; AC_SUBST(REPLACE_UNLINKAT) + REPLACE_USLEEP=0; AC_SUBST(REPLACE_USLEEP) + REPLACE_WRITE=0; AC_SUBST(REPLACE_WRITE) + UNISTD_H_HAVE_SYS_RANDOM_H=0; AC_SUBST(UNISTD_H_HAVE_SYS_RANDOM_H) + UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST(UNISTD_H_HAVE_WINSOCK2_H) UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0; AC_SUBST(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS) )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/unlink.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/unlink.m4
Changed
@@ -1,5 +1,5 @@ # unlink.m4 serial 15 -dnl Copyright (C) 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/unlinkat.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/unlinkat.m4
Changed
@@ -1,5 +1,5 @@ # unlinkat.m4 serial 2 -dnl Copyright (C) 2004-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2004-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/utime.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/utime.m4
Changed
@@ -1,5 +1,5 @@ # utime.m4 serial 4 -dnl Copyright (C) 2017-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/utime_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/utime_h.m4
Changed
@@ -1,5 +1,5 @@ # utime_h.m4 serial 8 -dnl Copyright (C) 2017-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/utimens.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/utimens.m4
Changed
@@ -1,4 +1,4 @@ -dnl Copyright (C) 2003-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/utimes.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/utimes.m4
Changed
@@ -1,7 +1,7 @@ # Detect some bugs in glibc's implementation of utimes. # serial 8 -dnl Copyright (C) 2003-2005, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003-2005, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/vasnprintf.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/vasnprintf.m4
Changed
@@ -1,5 +1,5 @@ # vasnprintf.m4 serial 38 -dnl Copyright (C) 2002-2004, 2006-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2004, 2006-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/vfprintf-posix.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/vfprintf-posix.m4
Changed
@@ -1,5 +1,5 @@ # vfprintf-posix.m4 serial 14 -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/warnings.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/warnings.m4
Changed
@@ -1,5 +1,5 @@ # warnings.m4 serial 16 -dnl Copyright (C) 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/wchar_h.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/wchar_h.m4
Changed
@@ -1,13 +1,13 @@ dnl A placeholder for ISO C99 <wchar.h>, for platforms that have issues. -dnl Copyright (C) 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Eric Blake. -# wchar_h.m4 serial 53 +# wchar_h.m4 serial 55 AC_DEFUN_ONCE(gl_WCHAR_H, @@ -189,6 +189,8 @@ gl_MODULE_INDICATOR_INIT_VARIABLE(GNULIB_MDA_WCSDUP, 1) ) m4_require(GL_MODULE_INDICATOR_PREFIX_WCHAR_H_MODULE_INDICATOR_DEFAULTS) + dnl Make sure the shell variable for GNULIB_FREE_POSIX is initialized. + gl_STDLIB_H_REQUIRE_DEFAULTS AC_REQUIRE(gl_WCHAR_H_DEFAULTS) )
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/wchar_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/wchar_t.m4
Changed
@@ -1,5 +1,5 @@ # wchar_t.m4 serial 4 (gettext-0.18.2) -dnl Copyright (C) 2002-2003, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2003, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/wint_t.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/wint_t.m4
Changed
@@ -1,5 +1,5 @@ # wint_t.m4 serial 11 -dnl Copyright (C) 2003, 2007-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003, 2007-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/xalloc.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/xalloc.m4
Changed
@@ -1,5 +1,5 @@ # xalloc.m4 serial 18 -dnl Copyright (C) 2002-2006, 2009-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2002-2006, 2009-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/xsize.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/xsize.m4
Changed
@@ -1,5 +1,5 @@ # xsize.m4 serial 5 -dnl Copyright (C) 2003-2004, 2008-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2003-2004, 2008-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/year2038.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/year2038.m4
Changed
@@ -1,5 +1,5 @@ # year2038.m4 serial 7 -dnl Copyright (C) 2017-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2017-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/yesno.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/yesno.m4
Changed
@@ -1,5 +1,5 @@ # yesno.m4 serial 6 -dnl Copyright (C) 2002-2003, 2005-2006, 2009-2021 Free Software Foundation, +dnl Copyright (C) 2002-2003, 2005-2006, 2009-2022 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it,
View file
_service:tar_scm:gzip-1.11.tar.xz/m4/zzgnulib.m4 -> _service:tar_scm:gzip-1.12.tar.xz/m4/zzgnulib.m4
Changed
@@ -1,5 +1,5 @@ # zzgnulib.m4 serial 1 -dnl Copyright (C) 2020-2021 Free Software Foundation, Inc. +dnl Copyright (C) 2020-2022 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved.
View file
_service:tar_scm:gzip-1.11.tar.xz/maint.mk -> _service:tar_scm:gzip-1.12.tar.xz/maint.mk
Changed
@@ -2,7 +2,7 @@ # This Makefile fragment tries to be general-purpose enough to be # used by many projects via the gnulib maintainer-makefile module. -## Copyright (C) 2001-2021 Free Software Foundation, Inc. +## Copyright (C) 2001-2022 Free Software Foundation, Inc. ## ## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -64,7 +64,7 @@ # You can override this variable in cfg.mk if your gnulib submodule lives # in a different location. -gnulib_dir ?= $(shell if test -d $(srcdir)/gnulib; then \ +gnulib_dir ?= $(shell if test -f $(srcdir)/gnulib/gnulib-tool; then \ echo $(srcdir)/gnulib; \ else \ echo ${GNULIB_SRCDIR}; \ @@ -473,7 +473,7 @@ @$(VC_LIST_EXCEPT) \ | xargs $(GREP) -nEA2 '^rperror *\(' /dev/null \ | $(GREP) -E '"A-Z' \ - | $(GREP) -vE '"FATAL|"WARNING|"Java|"C#|PRIuMAX' \ + | $(GREP) -vE '"FATAL|"WARNING|"Java|"C#|"PRI' \ && { echo '$(ME): found capitalized error message' 1>&2; \ exit 1; } \ || : @@ -1031,7 +1031,7 @@ -e ' }' prohibit_doubled_words_ = \ - the then in an on if is it but for or at and do to + the then in an on if is it but for or at and do to can # expand the regex before running the check to avoid using expensive captures prohibit_doubled_word_expanded_ = \ $(join $(prohibit_doubled_words_),$(addprefix \s+,$(prohibit_doubled_words_))) @@ -1391,6 +1391,11 @@ && git cat-file tag v$(VERSION) \ | $(gpgv) --status-fd 1 --keyring /dev/null - - 2>/dev/null \ | $(AWK) '/^\GNUPG:\ ERRSIG / {print $$3; exit}') +gpg_key_email ?= \ + $$(gpg --list-key --with-colons $(gpg_key_ID) 2>/dev/null \ + | $(AWK) -F: '/^uid/ {print $$10; exit}' \ + | $(SED) -n 's/.*<\(.*\)>/\1/p') +gpg_keyring_url ?= https://savannah.gnu.org/project/release-gpgkeys.php?group=$(PACKAGE)&download=1 translation_project_ ?= coordinator@translationproject.org @@ -1421,6 +1426,10 @@ --prev=$(PREV_VERSION) \ --curr=$(VERSION) \ --gpg-key-id=$(gpg_key_ID) \ + $$(test -n "$(gpg_key_email)" && \ + echo --gpg-key-email="$(gpg_key_email)") \ + $$(test -n "$(gpg_keyring_url)" && \ + echo --gpg-keyring-url="$(gpg_keyring_url)") \ --srcdir=$(srcdir) \ --news=$(srcdir)/NEWS \ --bootstrap-tools=$(bootstrap-tools) \ @@ -1522,7 +1531,7 @@ release: $(AM_V_GEN)$(MAKE) _version - $(AM_V_GEN)$(MAKE) $(release-type) + $(AM_V_at)$(MAKE) $(release-type) # Override this in cfg.mk if you follow different procedures. release-prep-hook ?= release-prep @@ -1631,12 +1640,32 @@ ls $(PODIR)/*.po | $(SED) 's/\.po//;s,$(PODIR)/,,' | \ sort >> $(PODIR)/LINGUAS - # Running indent once is not idempotent, but running it twice is. +# Indentation + +indent_args ?= -ppi 1 +C_SOURCES ?= $$($(VC_LIST_EXCEPT) | grep '\.ch\(.in\)\?$$') INDENT_SOURCES ?= $(C_SOURCES) +exclude_file_name_regexp--indent ?= $(exclude_file_name_regexp--sc_indent) + .PHONY: indent -indent: - indent $(INDENT_SOURCES) - indent $(INDENT_SOURCES) +indent: # Running indent once is not idempotent, but running it twice is. + $(AM_V_GEN)indent $(indent_args) $(INDENT_SOURCES) && \ + indent $(indent_args) $(INDENT_SOURCES) + +sc_indent: + @if ! command -v indent > /dev/null; then \ + echo 1>&2 '$(ME): sc_indent: indent is missing'; \ + else \ + fail=0; files="$(INDENT_SOURCES)"; \ + for f in $$files; do \ + indent $(indent_args) -st $$f \ + | indent $(indent_args) -st - \ + | diff -u $$f - || fail=1; \ + done; \ + test $$fail = 1 && \ + { echo 1>&2 '$(ME): code format error, try "make indent"'; \ + exit 1; } || :; \ + fi # If you want to set UPDATE_COPYRIGHT_* environment variables, # put the assignments in this variable. @@ -1682,9 +1711,8 @@ exit $$fail tight-scope.mk: $(ME) - @rm -f $@ $@-t @perl -ne '/^# TS-start/.../^# TS-end/ and print' $(srcdir)/$(ME) > $@-t - @chmod a=r $@-t && mv $@-t $@ + @mv $@-t $@ ifeq (a,b) # TS-start
View file
_service:tar_scm:gzip-1.11.tar.xz/revision.h -> _service:tar_scm:gzip-1.12.tar.xz/revision.h
Changed
@@ -1,6 +1,6 @@ /* revision.h -- define the version number - Copyright (C) 1998-1999, 2001-2002, 2006, 2009-2021 Free Software + Copyright (C) 1998-1999, 2001-2002, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly. @@ -20,8 +20,3 @@ #define PATCHLEVEL 0 #define REVDATE "2002-09-30" - -/* This version does not support compression into old compress format: */ -#ifdef LZW -# undef LZW -#endif
View file
_service:tar_scm:gzip-1.11.tar.xz/sample/zfile -> _service:tar_scm:gzip-1.12.tar.xz/sample/zfile
Changed
@@ -1,5 +1,8 @@ #!/bin/sh +LC_ALL=C +export LC_ALL + if test $# = 0; then echo 'zfile: file(1) for programs which may be compressed with gzexe' echo usage: `basename $0` files...
View file
_service:tar_scm:gzip-1.11.tar.xz/tailor.h -> _service:tar_scm:gzip-1.12.tar.xz/tailor.h
Changed
@@ -1,6 +1,6 @@ /* tailor.h -- target dependent definitions - Copyright (C) 1997-1999, 2002, 2006, 2009-2021 Free Software Foundation, + Copyright (C) 1997-1999, 2002, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/Makefile.am -> _service:tar_scm:gzip-1.12.tar.xz/tests/Makefile.am
Changed
@@ -1,5 +1,5 @@ ## Process this file with automake to create Makefile.in -# Copyright 2010-2021 Free Software Foundation, Inc. +# Copyright 2010-2022 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,6 +21,7 @@ hufts \ keep \ list \ + list-big \ memcpy-abuse \ mixed \ null-suffix-clobber \ @@ -35,6 +36,8 @@ z-suffix \ zdiff \ zgrep-f \ + zgrep-abuse \ + zgrep-binary \ zgrep-context \ zgrep-signal \ znew-k @@ -45,6 +48,12 @@ init.sh \ hufts-segv.gz +if LESS +ZLESS_PROG = zless +else +ZLESS_PROG = +endif + built_programs = \ gzip \ gunzip \ @@ -56,7 +65,7 @@ zfgrep \ zforce \ zgrep \ - zless \ + $(ZLESS_PROG) \ zmore \ znew
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/Makefile.in -> _service:tar_scm:gzip-1.12.tar.xz/tests/Makefile.in
Changed
@@ -14,7 +14,7 @@ @SET_MAKE@ -# Copyright 2010-2021 Free Software Foundation, Inc. +# Copyright 2010-2022 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -127,13 +127,12 @@ $(top_srcdir)/m4/free.m4 $(top_srcdir)/m4/frexp.m4 \ $(top_srcdir)/m4/frexpl.m4 $(top_srcdir)/m4/fseek.m4 \ $(top_srcdir)/m4/fseeko.m4 $(top_srcdir)/m4/fseterr.m4 \ - $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fstatat.m4 \ - $(top_srcdir)/m4/fsync.m4 $(top_srcdir)/m4/ftell.m4 \ - $(top_srcdir)/m4/ftello.m4 $(top_srcdir)/m4/getcwd.m4 \ - $(top_srcdir)/m4/getdtablesize.m4 $(top_srcdir)/m4/getopt.m4 \ - $(top_srcdir)/m4/getprogname.m4 $(top_srcdir)/m4/gettime.m4 \ - $(top_srcdir)/m4/gettimeofday.m4 $(top_srcdir)/m4/gnu-make.m4 \ - $(top_srcdir)/m4/gnulib-common.m4 \ + $(top_srcdir)/m4/fstat.m4 $(top_srcdir)/m4/fsync.m4 \ + $(top_srcdir)/m4/ftell.m4 $(top_srcdir)/m4/ftello.m4 \ + $(top_srcdir)/m4/getcwd.m4 $(top_srcdir)/m4/getdtablesize.m4 \ + $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/getprogname.m4 \ + $(top_srcdir)/m4/gettime.m4 $(top_srcdir)/m4/gettimeofday.m4 \ + $(top_srcdir)/m4/gnu-make.m4 $(top_srcdir)/m4/gnulib-common.m4 \ $(top_srcdir)/m4/gnulib-comp.m4 \ $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/intmax_t.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ @@ -471,6 +470,8 @@ FLOAT_H = @FLOAT_H@ GETOPT_CDEFS_H = @GETOPT_CDEFS_H@ GETOPT_H = @GETOPT_H@ +GL_CFLAG_ALLOW_WARNINGS = @GL_CFLAG_ALLOW_WARNINGS@ +GL_CFLAG_GNULIB_WARNINGS = @GL_CFLAG_GNULIB_WARNINGS@ GL_GNULIB_ACCESS = @GL_GNULIB_ACCESS@ GL_GNULIB_ACOSF = @GL_GNULIB_ACOSF@ GL_GNULIB_ACOSL = @GL_GNULIB_ACOSL@ @@ -483,6 +484,7 @@ GL_GNULIB_ATANL = @GL_GNULIB_ATANL@ GL_GNULIB_ATOLL = @GL_GNULIB_ATOLL@ GL_GNULIB_BTOWC = @GL_GNULIB_BTOWC@ +GL_GNULIB_CALLOC_GNU = @GL_GNULIB_CALLOC_GNU@ GL_GNULIB_CALLOC_POSIX = @GL_GNULIB_CALLOC_POSIX@ GL_GNULIB_CANONICALIZE_FILE_NAME = @GL_GNULIB_CANONICALIZE_FILE_NAME@ GL_GNULIB_CBRT = @GL_GNULIB_CBRT@ @@ -553,6 +555,7 @@ GL_GNULIB_FMODF = @GL_GNULIB_FMODF@ GL_GNULIB_FMODL = @GL_GNULIB_FMODL@ GL_GNULIB_FOPEN = @GL_GNULIB_FOPEN@ +GL_GNULIB_FOPEN_GNU = @GL_GNULIB_FOPEN_GNU@ GL_GNULIB_FPRINTF = @GL_GNULIB_FPRINTF@ GL_GNULIB_FPRINTF_POSIX = @GL_GNULIB_FPRINTF_POSIX@ GL_GNULIB_FPURGE = @GL_GNULIB_FPURGE@ @@ -591,6 +594,7 @@ GL_GNULIB_GETOPT_POSIX = @GL_GNULIB_GETOPT_POSIX@ GL_GNULIB_GETPAGESIZE = @GL_GNULIB_GETPAGESIZE@ GL_GNULIB_GETPASS = @GL_GNULIB_GETPASS@ +GL_GNULIB_GETPASS_GNU = @GL_GNULIB_GETPASS_GNU@ GL_GNULIB_GETSUBOPT = @GL_GNULIB_GETSUBOPT@ GL_GNULIB_GETTIMEOFDAY = @GL_GNULIB_GETTIMEOFDAY@ GL_GNULIB_GETUMASK = @GL_GNULIB_GETUMASK@ @@ -636,6 +640,7 @@ GL_GNULIB_LOGL = @GL_GNULIB_LOGL@ GL_GNULIB_LSEEK = @GL_GNULIB_LSEEK@ GL_GNULIB_LSTAT = @GL_GNULIB_LSTAT@ +GL_GNULIB_MALLOC_GNU = @GL_GNULIB_MALLOC_GNU@ GL_GNULIB_MALLOC_POSIX = @GL_GNULIB_MALLOC_POSIX@ GL_GNULIB_MBRLEN = @GL_GNULIB_MBRLEN@ GL_GNULIB_MBRTOWC = @GL_GNULIB_MBRTOWC@ @@ -761,6 +766,7 @@ GL_GNULIB_READLINK = @GL_GNULIB_READLINK@ GL_GNULIB_READLINKAT = @GL_GNULIB_READLINKAT@ GL_GNULIB_REALLOCARRAY = @GL_GNULIB_REALLOCARRAY@ +GL_GNULIB_REALLOC_GNU = @GL_GNULIB_REALLOC_GNU@ GL_GNULIB_REALLOC_POSIX = @GL_GNULIB_REALLOC_POSIX@ GL_GNULIB_REALPATH = @GL_GNULIB_REALPATH@ GL_GNULIB_REMAINDER = @GL_GNULIB_REMAINDER@ @@ -835,6 +841,7 @@ GL_GNULIB_TANL = @GL_GNULIB_TANL@ GL_GNULIB_TIMEGM = @GL_GNULIB_TIMEGM@ GL_GNULIB_TIMESPEC_GET = @GL_GNULIB_TIMESPEC_GET@ +GL_GNULIB_TIMESPEC_GETRES = @GL_GNULIB_TIMESPEC_GETRES@ GL_GNULIB_TIME_R = @GL_GNULIB_TIME_R@ GL_GNULIB_TIME_RZ = @GL_GNULIB_TIME_RZ@ GL_GNULIB_TMPFILE = @GL_GNULIB_TMPFILE@ @@ -906,6 +913,7 @@ GNULIB_GETTIMEOFDAY = @GNULIB_GETTIMEOFDAY@ GNULIB_WARN_CFLAGS = @GNULIB_WARN_CFLAGS@ GREP = @GREP@ +GZIP_TRANSFORMED = @GZIP_TRANSFORMED@ HAVE_ACOSF = @HAVE_ACOSF@ HAVE_ACOSL = @HAVE_ACOSL@ HAVE_ALIGNED_ALLOC = @HAVE_ALIGNED_ALLOC@ @@ -1199,6 +1207,7 @@ HAVE_TANL = @HAVE_TANL@ HAVE_TIMEGM = @HAVE_TIMEGM@ HAVE_TIMESPEC_GET = @HAVE_TIMESPEC_GET@ +HAVE_TIMESPEC_GETRES = @HAVE_TIMESPEC_GETRES@ HAVE_TIMEZONE_T = @HAVE_TIMEZONE_T@ HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ @@ -1260,6 +1269,7 @@ INT32_MAX_LT_INTMAX_MAX = @INT32_MAX_LT_INTMAX_MAX@ INT64_MAX_EQ_LONG_MAX = @INT64_MAX_EQ_LONG_MAX@ LDFLAGS = @LDFLAGS@ +LESS = @LESS@ LIBGZIP_LIBDEPS = @LIBGZIP_LIBDEPS@ LIBGZIP_LTLIBDEPS = @LIBGZIP_LTLIBDEPS@ LIBINTL = @LIBINTL@ @@ -1346,7 +1356,8 @@ REPLACE_ATAN2F = @REPLACE_ATAN2F@ REPLACE_ATANF = @REPLACE_ATANF@ REPLACE_BTOWC = @REPLACE_BTOWC@ -REPLACE_CALLOC = @REPLACE_CALLOC@ +REPLACE_CALLOC_FOR_CALLOC_GNU = @REPLACE_CALLOC_FOR_CALLOC_GNU@ +REPLACE_CALLOC_FOR_CALLOC_POSIX = @REPLACE_CALLOC_FOR_CALLOC_POSIX@ REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ REPLACE_CBRTF = @REPLACE_CBRTF@ REPLACE_CBRTL = @REPLACE_CBRTL@ @@ -1356,6 +1367,7 @@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_CLOSEDIR = @REPLACE_CLOSEDIR@ +REPLACE_COPY_FILE_RANGE = @REPLACE_COPY_FILE_RANGE@ REPLACE_COSF = @REPLACE_COSF@ REPLACE_COSHF = @REPLACE_COSHF@ REPLACE_CREAT = @REPLACE_CREAT@ @@ -1398,6 +1410,7 @@ REPLACE_FMODF = @REPLACE_FMODF@ REPLACE_FMODL = @REPLACE_FMODL@ REPLACE_FOPEN = @REPLACE_FOPEN@ +REPLACE_FOPEN_FOR_FOPEN_GNU = @REPLACE_FOPEN_FOR_FOPEN_GNU@ REPLACE_FPRINTF = @REPLACE_FPRINTF@ REPLACE_FPURGE = @REPLACE_FPURGE@ REPLACE_FREE = @REPLACE_FREE@ @@ -1422,6 +1435,7 @@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_GETPASS = @REPLACE_GETPASS@ +REPLACE_GETPASS_FOR_GETPASS_GNU = @REPLACE_GETPASS_FOR_GETPASS_GNU@ REPLACE_GETTIMEOFDAY = @REPLACE_GETTIMEOFDAY@ REPLACE_GMTIME = @REPLACE_GMTIME@ REPLACE_HUGE_VAL = @REPLACE_HUGE_VAL@ @@ -1460,7 +1474,8 @@ REPLACE_LOGL = @REPLACE_LOGL@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_LSTAT = @REPLACE_LSTAT@ -REPLACE_MALLOC = @REPLACE_MALLOC@ +REPLACE_MALLOC_FOR_MALLOC_GNU = @REPLACE_MALLOC_FOR_MALLOC_GNU@ +REPLACE_MALLOC_FOR_MALLOC_POSIX = @REPLACE_MALLOC_FOR_MALLOC_POSIX@ REPLACE_MBRLEN = @REPLACE_MBRLEN@ REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ REPLACE_MBSINIT = @REPLACE_MBSINIT@ @@ -1504,8 +1519,9 @@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_READLINKAT = @REPLACE_READLINKAT@ -REPLACE_REALLOC = @REPLACE_REALLOC@ REPLACE_REALLOCARRAY = @REPLACE_REALLOCARRAY@ +REPLACE_REALLOC_FOR_REALLOC_GNU = @REPLACE_REALLOC_FOR_REALLOC_GNU@ +REPLACE_REALLOC_FOR_REALLOC_POSIX = @REPLACE_REALLOC_FOR_REALLOC_POSIX@ REPLACE_REALPATH = @REPLACE_REALPATH@ REPLACE_REMAINDER = @REPLACE_REMAINDER@ REPLACE_REMAINDERF = @REPLACE_REMAINDERF@ @@ -1619,6 +1635,8 @@ WINDOWS_STAT_INODES = @WINDOWS_STAT_INODES@ WINDOWS_STAT_TIMESPEC = @WINDOWS_STAT_TIMESPEC@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ +ZDIFF_TRANSFORMED = @ZDIFF_TRANSFORMED@ +ZGREP_TRANSFORMED = @ZGREP_TRANSFORMED@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ @@ -1641,8 +1659,10 @@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ +gl_LIBOBJDEPS = @gl_LIBOBJDEPS@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ +gltests_LIBOBJDEPS = @gltests_LIBOBJDEPS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ @@ -1682,6 +1702,7 @@ hufts \ keep \ list \ + list-big \ memcpy-abuse \ mixed \ null-suffix-clobber \ @@ -1696,6 +1717,8 @@ z-suffix \ zdiff \ zgrep-f \ + zgrep-abuse \ + zgrep-binary \ zgrep-context \ zgrep-signal \ znew-k @@ -1706,6 +1729,8 @@ init.sh \ hufts-segv.gz +@LESS_FALSE@ZLESS_PROG = +@LESS_TRUE@ZLESS_PROG = zless built_programs = \ gzip \ gunzip \ @@ -1717,7 +1742,7 @@ zfgrep \ zforce \ zgrep \ - zless \ + $(ZLESS_PROG) \ zmore \ znew @@ -1985,6 +2010,13 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +list-big.log: list-big + @p='list-big'; \ + b='list-big'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) memcpy-abuse.log: memcpy-abuse @p='memcpy-abuse'; \ b='memcpy-abuse'; \ @@ -2083,6 +2115,20 @@ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) +zgrep-abuse.log: zgrep-abuse + @p='zgrep-abuse'; \ + b='zgrep-abuse'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) +zgrep-binary.log: zgrep-binary + @p='zgrep-binary'; \ + b='zgrep-binary'; \ + $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ + --log-file $$b.log --trs-file $$b.trs \ + $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ + "$$tst" $(AM_TESTS_FD_REDIRECT) zgrep-context.log: zgrep-context @p='zgrep-context'; \ b='zgrep-context'; \
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/gzip-env -> _service:tar_scm:gzip-1.12.tar.xz/tests/gzip-env
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Test the obsolescent GZIP environment variable. -# Copyright 2015-2021 Free Software Foundation, Inc. +# Copyright 2015-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/helin-segv -> _service:tar_scm:gzip-1.12.tar.xz/tests/helin-segv
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Before gzip-1.4, gzip -d would segfault on some inputs. -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/help-version -> _service:tar_scm:gzip-1.12.tar.xz/tests/help-version
Changed
@@ -2,7 +2,7 @@ # Make sure all of these programs work properly # when invoked with --help or --version. -# Copyright (C) 2000-2021 Free Software Foundation, Inc. +# Copyright (C) 2000-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -143,7 +143,7 @@ zcmp_setup () { zdiff_setup; } zcat_setup () { TERM=dumb; export TERM; args=$zin; } gunzip_setup () { zcat_setup; } -zmore_setup () { zcat_setup; } +zmore_setup () { unset PAGER; zcat_setup; } zless_setup () { zcat_setup; } znew_setup () { args=$bigZ_in; } zforce_setup () { zcat_setup; }
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/hufts -> _service:tar_scm:gzip-1.12.tar.xz/tests/hufts
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Exercise bugs whereby invalid input could make gzip -d misbehave. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/init.sh -> _service:tar_scm:gzip-1.12.tar.xz/tests/init.sh
Changed
@@ -1,6 +1,6 @@ # source this file; set up for tests -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -271,12 +271,10 @@ # # First, try to use the mktemp program. # Failing that, we'll roll our own mktemp-like function: -# - try to get random bytes from /dev/urandom +# - try to get random bytes from /dev/urandom, mapping them to file-name bytes # - failing that, generate output from a combination of quickly-varying -# sources and gzip. Ignore non-varying gzip header, and extract -# "random" bits from there. -# - given those bits, map to file-name bytes using tr, and try to create -# the desired directory. +# sources and awk. +# - try to create the desired directory. # - make only $MAX_TRIES_ attempts # Helper function. Print $N pseudo-random bytes from a-zA-Z0-9. @@ -296,20 +294,27 @@ return fi - n_plus_50_=`expr $n_ + 50` - cmds_='date; date +%N; free; who -a; w; ps auxww; ps -ef' - data_=` (eval "$cmds_") 2>&1 | gzip ` - - # Ensure that $data_ has length at least 50+$n_ - while :; do - len_=`echo "$data_"|wc -c` - test $n_plus_50_ -le $len_ && break; - data_=` (echo "$data_"; eval "$cmds_") 2>&1 | gzip ` - done - - echo "$data_" \ - | dd bs=1 skip=50 count=$n_ 2>/dev/null \ - | LC_ALL=C tr -c $chars_ 01234567$chars_$chars_$chars_ + # Fall back on quickly-varying sources + awk. + # Limit awk program to 7th Edition Unix so that it works even on Solaris 10. + + (date; date +%N; free; who -a; w; ps auxww; ps -ef) 2>&1 | awk ' + BEGIN { + n = '"$n_"' + for (i = 0; i < 256; i++) + ordinalsprintf ("%c", i) = i + } + { + for (i = 1; i <= length; i++) + aai++ % n += ordinalsubstr ($0, i, 1) + } + END { + chars = "'"$chars_"'" + charslen = length (chars) + for (i = 0; i < n; i++) + printf "%s", substr (chars, ai % charslen + 1, 1) + printf "\n" + } + ' } mktempd_ () @@ -426,6 +431,23 @@ for sig_ in 1 2 3 13 15; do eval "trap 'Exit $(expr $sig_ + 128)' $sig_" done + + # Remove relative and non-accessible directories from PATH, including '.' + # and Zero-length entries. + saved_IFS="$IFS" + IFS=: + new_PATH= + sep_= + for dir in $PATH; do + case "$dir" in + /*) test -d "$dir/." || continue + new_PATH="${new_PATH}${sep_}${dir}" + sep_=':';; + esac + done + IFS="$saved_IFS" + PATH="$new_PATH" + export PATH } # This is a stub function that is run upon trap (upon regular exit and
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/keep -> _service:tar_scm:gzip-1.12.tar.xz/tests/keep
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Exercise the --keep option. -# Copyright (C) 2013-2021 Free Software Foundation, Inc. +# Copyright (C) 2013-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/list -> _service:tar_scm:gzip-1.12.tar.xz/tests/list
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Exercise the --list option. -# Copyright 2016-2021 Free Software Foundation, Inc. +# Copyright 2016-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.12.tar.xz/tests/list-big
Added
@@ -0,0 +1,31 @@ +#!/bin/sh +# Exercise the --list option with a big file. + +# Copyright 2021-2022 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# limit so don't run it by default. + +. "${srcdir=.}/init.sh"; path_prepend_ .. + +dd bs=65536 seek=65536 if=/dev/null of=big || framework_failure_ + +gzip -1 big || fail=1 +gzip -l big.gz >out || fail=1 +case $(cat out) in + *' 4294967296 '*' big') ;; + *) cat out; fail=1;; +esac + +Exit $fail
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/memcpy-abuse -> _service:tar_scm:gzip-1.12.tar.xz/tests/memcpy-abuse
Changed
@@ -2,7 +2,7 @@ # Before gzip-1.4, this the use of memcpy in inflate_codes could # mistakenly operate on overlapping regions. Exercise that code. -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/mixed -> _service:tar_scm:gzip-1.12.tar.xz/tests/mixed
Changed
@@ -2,7 +2,7 @@ # Ensure that gzip -cdf handles mixed compressed/not-compressed data # Before gzip-1.5, it would produce invalid output. -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/null-suffix-clobber -> _service:tar_scm:gzip-1.12.tar.xz/tests/null-suffix-clobber
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Before gzip-1.5, gzip -d -S '' k.gz would delete F.gz and not create "F" -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/reproducible -> _service:tar_scm:gzip-1.12.tar.xz/tests/reproducible
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Ensure that gzip has repoducible output. -# Copyright 2018-2021 Free Software Foundation, Inc. +# Copyright 2018-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/stdin -> _service:tar_scm:gzip-1.12.tar.xz/tests/stdin
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Ensure that gzip interprets "-" as stdin. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/timestamp -> _service:tar_scm:gzip-1.12.tar.xz/tests/timestamp
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Exercise timestamps. -# Copyright 2016-2021 Free Software Foundation, Inc. +# Copyright 2016-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/trailing-nul -> _service:tar_scm:gzip-1.12.tar.xz/tests/trailing-nul
Changed
@@ -2,7 +2,7 @@ # gzip accepts trailing NUL bytes; don't fail if there is exactly one. # Before gzip-1.4, this would fail. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/two-files -> _service:tar_scm:gzip-1.12.tar.xz/tests/two-files
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Ensure that gzip can compress more than one file. -# Copyright 2020-2021 Free Software Foundation, Inc. +# Copyright 2020-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/unpack-invalid -> _service:tar_scm:gzip-1.12.tar.xz/tests/unpack-invalid
Changed
@@ -2,7 +2,7 @@ # gzip should report invalid 'unpack' input when uncompressing. # With gzip-1.5, it would output invalid data instead. -# Copyright (C) 2012-2021 Free Software Foundation, Inc. +# Copyright (C) 2012-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/unpack-valid -> _service:tar_scm:gzip-1.12.tar.xz/tests/unpack-valid
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Test end-of-block check in unpack code -# Copyright 2017-2021 Free Software Foundation, Inc. +# Copyright 2017-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/upper-suffix -> _service:tar_scm:gzip-1.12.tar.xz/tests/upper-suffix
Changed
@@ -2,7 +2,7 @@ # Ensure an upper-case user-specified suffix works as expected. # This test would have failed in gzip-1.18 -# Copyright 2017-2021 Free Software Foundation, Inc. +# Copyright 2017-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/z-suffix -> _service:tar_scm:gzip-1.12.tar.xz/tests/z-suffix
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Check that -Sz works. -# Copyright 2014-2021 Free Software Foundation, Inc. +# Copyright 2014-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/zdiff -> _service:tar_scm:gzip-1.12.tar.xz/tests/zdiff
Changed
@@ -2,7 +2,7 @@ # Exercise zdiff with two compressed inputs. # Before gzip-1.4, this would fail. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.12.tar.xz/tests/zgrep-abuse
Added
@@ -0,0 +1,41 @@ +#!/bin/sh +# Show how zgrep applied to a crafted file name may overwrite +# a selected file with chosen content. Fixed in gzip-1.12. + +# Copyright (C) 2022 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# limit so don't run it by default. + +. "${srcdir=.}/init.sh"; path_prepend_ .. + +: > z || framework_failure_ +echo test |gzip > 'z| +p +1s|.*|chosen-content| +1w hacked +etouch .\x2fhacked2 +d +# +#' || framework_failure_ + +fail=0 + +zgrep test z* > /dev/null + +# Before the fix, each of these would be created. +test -f hacked && fail=1 +test -f hacked2 && fail=1 + +Exit $fail
View file
_service:tar_scm:gzip-1.12.tar.xz/tests/zgrep-binary
Added
@@ -0,0 +1,30 @@ +#!/bin/sh +# 'zgrep PATTERN FILE' would output "(standard input): binary file matches" +# without mentioning FILE. Fixed in gzip-1.12. + +# Copyright (C) 2022 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <https://www.gnu.org/licenses/>. +# limit so don't run it by default. + +. "${srcdir=.}/init.sh"; path_prepend_ .. + +fail=0 + +unset GREP_OPTIONS + +printf 'foo\0\n' >f || framework_failure_ +LC_ALL=C zgrep foo f >out 2>err && grep '(standard input)' out err && fail=1 + +Exit $fail
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/zgrep-context -> _service:tar_scm:gzip-1.12.tar.xz/tests/zgrep-context
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Ensure that zgrep -15 works. Before gzip-1.5, it would fail. -# Copyright (C) 2012-2021 Free Software Foundation, Inc. +# Copyright (C) 2012-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/zgrep-f -> _service:tar_scm:gzip-1.12.tar.xz/tests/zgrep-f
Changed
@@ -2,7 +2,7 @@ # Ensure that zgrep -f - works like grep -f - # Before gzip-1.4, it would fail. -# Copyright (C) 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 2009-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/zgrep-signal -> _service:tar_scm:gzip-1.12.tar.xz/tests/zgrep-signal
Changed
@@ -2,7 +2,7 @@ # Check that zgrep is terminated gracefully by signal when # its grep/sed pipeline is terminated by a signal. -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/tests/znew-k -> _service:tar_scm:gzip-1.12.tar.xz/tests/znew-k
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Check that znew -K works without compress(1). -# Copyright (C) 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2010-2022 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by
View file
_service:tar_scm:gzip-1.11.tar.xz/trees.c -> _service:tar_scm:gzip-1.12.tar.xz/trees.c
Changed
@@ -1,6 +1,6 @@ /* trees.c -- output deflated data using Huffman coding - Copyright (C) 1997-1999, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1997-1999, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/unlzh.c -> _service:tar_scm:gzip-1.12.tar.xz/unlzh.c
Changed
@@ -390,9 +390,8 @@ decode_start(); while (!done) { n = decode((unsigned) DICSIZ, window); - if (!test && n > 0) { - write_buf(out, (char*)window, n); - } + if (n > 0) + write_buf (out, window, n); } return OK; }
View file
_service:tar_scm:gzip-1.11.tar.xz/unlzw.c -> _service:tar_scm:gzip-1.12.tar.xz/unlzw.c
Changed
@@ -85,7 +85,8 @@ #define de_stack ((char_type *)(&d_bufDIST_BUFSIZE-1)) #define tab_suffixof(i) tab_suffixi -int block_mode = BLOCK_MODE; /* block compress mode -C compatible with 2.0 */ +/* block compress mode -C compatible with 2.0 */ +static int block_mode = BLOCK_MODE; /* ============================================================================ * Decompress in to out. This routine adapts to the codes in the @@ -224,10 +225,8 @@ "posbits:%ld inbuf:%02X %02X %02X %02X %02X\n", posbits, p-1,p0,p1,p2,p3); #endif - if (!test && outpos > 0) { - write_buf(out, (char*)outbuf, outpos); - bytes_out += (off_t)outpos; - } + if (outpos > 0) + write_buf (out, outbuf, outpos); gzip_error (to_stdout ? "corrupt input." : "corrupt input. Use zcat to recover some data."); @@ -256,10 +255,7 @@ outpos += i; } if (outpos >= OUTBUFSIZ) { - if (!test) { - write_buf(out, (char*)outbuf, outpos); - bytes_out += (off_t)outpos; - } + write_buf (out, outbuf, outpos); outpos = 0; } stackp+= i; @@ -280,9 +276,7 @@ } } while (rsize != 0); - if (!test && outpos > 0) { - write_buf(out, (char*)outbuf, outpos); - bytes_out += (off_t)outpos; - } + if (outpos > 0) + write_buf (out, outbuf, outpos); return OK; }
View file
_service:tar_scm:gzip-1.11.tar.xz/unpack.c -> _service:tar_scm:gzip-1.12.tar.xz/unpack.c
Changed
@@ -1,6 +1,6 @@ /* unpack.c -- decompress files in pack format. - Copyright (C) 1997, 1999, 2006, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1997, 1999, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/unzip.c -> _service:tar_scm:gzip-1.12.tar.xz/unzip.c
Changed
@@ -1,6 +1,6 @@ /* unzip.c -- decompress files in gzip or pkzip format. - Copyright (C) 1997-1999, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1997-1999, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify @@ -51,6 +51,8 @@ /* Globals */ +ulg unzip_crc; /* CRC found by 'unzip'. */ + static int decrypt; /* flag to turn on decryption */ static int pkzip = 0; /* set for a pkzip file */ static int ext_header = 0; /* set if extended local header */ @@ -210,6 +212,7 @@ } } ext_header = pkzip = 0; /* for next file */ + unzip_crc = orig_crc; if (err == OK) return OK; exit_code = ERROR; if (!test) abort_gzip();
View file
_service:tar_scm:gzip-1.11.tar.xz/util.c -> _service:tar_scm:gzip-1.12.tar.xz/util.c
Changed
@@ -1,6 +1,6 @@ /* util.c -- utility functions for gzip support - Copyright (C) 1997-1999, 2001-2002, 2006, 2009-2021 Free Software + Copyright (C) 1997-1999, 2001-2002, 2006, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly @@ -112,7 +112,6 @@ errno = 0; while (insize > inptr) { write_buf(out, (char*)inbuf + inptr, insize - inptr); - bytes_out += insize - inptr; got = read_buffer (in, (char *) inbuf, INBUFSIZ); if (got == -1) read_error(); @@ -153,12 +152,14 @@ return crc ^ 0xffffffffL; } +#ifdef IBM_Z_DFLTCC /* Set a new CRC value. */ void setcrc (ulg c) { crc = c ^ 0xffffffffL; } +#endif /* =========================================================================== * Clear input and output buffers @@ -253,9 +254,7 @@ { if (outcnt == 0) return; - if (!test) - write_buf (ofd, outbuf, outcnt); - bytes_out += (off_t)outcnt; + write_buf (ofd, outbuf, outcnt); outcnt = 0; } @@ -268,16 +267,13 @@ if (outcnt == 0) return; updcrc(window, outcnt); - if (!test) { - write_buf(ofd, (char *)window, outcnt); - } - bytes_out += (off_t)outcnt; + write_buf (ofd, window, outcnt); outcnt = 0; } /* =========================================================================== - * Does the same as write(), but also handles partial pipe writes and checks - * for error return. + * Update the count of output bytes. If testing, do not do any + * output. Otherwise, write the buffer, checking for errors. */ void write_buf(fd, buf, cnt) int fd; @@ -286,6 +282,10 @@ { unsigned n; + bytes_out += cnt; + if (test) + return; + while ((n = write_buffer (fd, buf, cnt)) != cnt) { if (n == (unsigned)(-1)) { write_error(); @@ -346,6 +346,7 @@ return r; } +#ifdef NO_MULTIPLE_DOTS /* ======================================================================== * Make a file name legal for file systems not allowing file names with * multiple dots or starting with a dot (such as MSDOS), by changing @@ -364,6 +365,7 @@ if (*--p == '.') *p = '_'; } while (p != name); } +#endif /* Convert the value of the environment variable ENVVAR_NAME to a newly allocated argument vector, and set *ARGCP and *ARGVP
View file
_service:tar_scm:gzip-1.11.tar.xz/zcat.in -> _service:tar_scm:gzip-1.12.tar.xz/zcat.in
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Uncompress files to standard output. -# Copyright (C) 2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2007, 2010-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -48,4 +48,4 @@ --version) printf '%s\n' "$version" || exit 1; exit;; esac -exec gzip -cd "$@" +exec 'gzip' -cd "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/zcmp.in -> _service:tar_scm:gzip-1.12.tar.xz/zcmp.in
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # Compare the uncompressed contents of compressed files, byte by byte. -# Copyright (C) 2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2007, 2010-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -41,4 +41,4 @@ --version) printf '%s\n' "$version" || exit 2; exit;; esac -exec zdiff --__cmp "$@" +exec 'zdiff' --__cmp "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/zdiff.in -> _service:tar_scm:gzip-1.12.tar.xz/zdiff.in
Changed
@@ -1,7 +1,7 @@ #!/bin/sh # sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh -# Copyright (C) 1998, 2002, 2006-2007, 2009-2021 Free Software Foundation, Inc. +# Copyright (C) 1998, 2002, 2006-2007, 2009-2022 Free Software Foundation, Inc. # Copyright (C) 1993 Jean-loup Gailly # This program is free software; you can redistribute it and/or modify @@ -48,51 +48,85 @@ $s/X$/'\''/ ' -while :; do - case $1 in +filesonly= +file1= +file2= +needop= + +for arg +do + case $filesonly$needop$arg in --h*) printf '%s\n' "$usage" || exit 2; exit;; --v*) printf '%s\n' "$version" || exit 2; exit;; - --) shift; break;; - -*\'*) cmp="$cmp '"`printf '%sX\n' "$1" | sed "$escape"`;; - -?*) cmp="$cmp '$1'";; - *) break;; + --) filesonly=t;; + -*\'*) cmp="$cmp '"`printf '%sX\n' "$arg" | LC_ALL=C sed "$escape"`;; + -CDFISUWXx) needop="'$arg'";; + -?*) cmp="$cmp '$arg'";; + *) case $needop in + '') case $arg in + '') printf >&2 '%s\n' "$0: empty file name"; exit 2;; + esac + case $file1 in + '') file1=$arg;; + *) case $file2 in + '') file2=$arg;; + *) printf >&2 '%s\n' "$0: extra operand '$arg'"; exit 2;; + esac;; + esac;; + *) cmp="$cmp $needop '$arg'" + needop=;; + esac;; esac - shift done +case $needop in +'') ;; +*) printf >&2 '%s\n' "$0: $prevarg: option requires an argument -- $needop" + exit 2;; +esac + cmp="$cmp --" -for file -do - test "X$file" = X- || <"$file" || exit 2 -done +case $file1 in +'') printf >&2 '%s\n' "$0: missing operand"; exit 2;; +-) ;; +*) <"$file1" || exit 2;; +esac +case $file2 in +''|-) ;; +*) <"$file2" || exit 2;; +esac gzip_status=0 exec 3>&1 -if test $# -eq 1; then - case $1 in +case $file2 in +'') + case $file1 in *-.gz* | *-.zZ | *.tgaz) - FILE=`expr "X$1" : 'X\(.*\)-.zZtga*$'` + FILE=`LC_ALL=C expr "X$file1" : 'X\(.*\)-.zZtga*$'` gzip_status=$( exec 4>&1 - (gzip -cd -- "$1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$FILE"' >&3 + ('gzip' -cd -- "$file1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$FILE"' >&3 );; *) - printf >&2 '%s\n' "$0: $1: unknown compressed file extension" + printf >&2 '%s\n' "$0: $file1: unknown compressed file extension" exit 2;; - esac -elif test $# -eq 2; then - case "$1" in + esac;; +*) + case $file1,$file2 in + -,-) + gzip_status=$( + exec 4>&1 + ('gzip' -cdfq - 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - - >&3 + );; + *) + case $file1 in *-.gz* | *-.zZ | *.tgaz | -) - case "$2" in + case $file2 in *-.gz* | *-.zZ | *.tgaz | -) - if test "$1$2" = --; then - gzip_status=$( - exec 4>&1 - (gzip -cdfq - 4>&-; echo $? >&4) 3>&- | - eval "$cmp" - - >&3 - ) - elif + if # Reject Solaris 8's buggy /bin/bash 2.03. echo X | (echo X | eval "$cmp" /dev/fd/5 - >/dev/null 2>&1) \ @@ -100,8 +134,9 @@ then gzip_status=$( exec 4>&1 - (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | - ( (gzip -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- 5<&- </dev/null | + ('gzip' -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | + (('gzip' -cdfq -- "$file2" 4>&- + echo $? >&4) 3>&- 5<&- </dev/null | eval "$cmp" /dev/fd/5 - >&3) 5<&0 ) cmp_status=$? @@ -128,10 +163,10 @@ set -C tmp=${TMPDIR}zdiff$$ fi - gzip -cdfq -- "$2" > "$tmp" || exit 2 + 'gzip' -cdfq -- "$file2" > "$tmp" || exit 2 gzip_status=$( exec 4>&1 - (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | + ('gzip' -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | eval "$cmp" - '"$tmp"' >&3 ) cmp_status=$? @@ -142,25 +177,22 @@ *) gzip_status=$( exec 4>&1 - (gzip -cdfq -- "$1" 4>&-; echo $? >&4) 3>&- | - eval "$cmp" - '"$2"' >&3 + ('gzip' -cdfq -- "$file1" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" - '"$file2"' >&3 );; esac;; - *) case "$2" in + *) case $file2 in *-.gz* | *-.zZ | *.tgaz | -) gzip_status=$( exec 4>&1 - (gzip -cdfq -- "$2" 4>&-; echo $? >&4) 3>&- | - eval "$cmp" '"$1"' - >&3 + ('gzip' -cdfq -- "$file2" 4>&-; echo $? >&4) 3>&- | + eval "$cmp" '"$file1"' - >&3 );; - *) eval "$cmp" '"$1"' '"$2"';; + *) eval "$cmp" '"$file1"' '"$file2"';; esac;; - esac -else - printf >&2 '%s\n' \ - "$0: invalid number of operands; try \`$0 --help' for help" - exit 2 -fi + esac;; + esac;; +esac cmp_status=$? test "$gzip_status" -eq 0 || exit 2
View file
_service:tar_scm:gzip-1.11.tar.xz/zegrep.in -> _service:tar_scm:gzip-1.12.tar.xz/zegrep.in
Changed
@@ -1,2 +1,2 @@ #!/bin/sh -exec zgrep -E "$@" +exec 'zgrep' -E "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/zfgrep.in -> _service:tar_scm:gzip-1.12.tar.xz/zfgrep.in
Changed
@@ -1,2 +1,2 @@ #!/bin/sh -exec zgrep -F "$@" +exec 'zgrep' -F "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/zforce.in -> _service:tar_scm:gzip-1.12.tar.xz/zforce.in
Changed
@@ -6,7 +6,7 @@ # 12345678901234 is renamed to 12345678901.gz -# Copyright (C) 2002, 2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2002, 2007, 2010-2022 Free Software Foundation, Inc. # Copyright (C) 1993 Jean-loup Gailly # This program is free software; you can redistribute it and/or modify @@ -56,7 +56,7 @@ continue fi - if gzip -lv < "$i" 2>/dev/null | grep '^defl' > /dev/null; then + if 'gzip' -lv < "$i" 2>/dev/null | grep '^defl' > /dev/null; then new="$i.gz" mv "$i" "$new" && printf '%s\n' "$i -- replaced with $new" || res=1
View file
_service:tar_scm:gzip-1.11.tar.xz/zgrep.1 -> _service:tar_scm:gzip-1.12.tar.xz/zgrep.1
Changed
@@ -49,4 +49,10 @@ .SH AUTHOR Charles Levert (charles@comm.polymtl.ca) .SH "SEE ALSO" -grep(1), gzexe(1), gzip(1), zdiff(1), zforce(1), zmore(1), znew(1) +.BR grep (1), +.BR gzexe (1), +.BR gzip (1), +.BR zdiff (1), +.BR zforce (1), +.BR zmore (1), +.BR znew (1)
View file
_service:tar_scm:gzip-1.11.tar.xz/zgrep.in -> _service:tar_scm:gzip-1.12.tar.xz/zgrep.in
Changed
@@ -3,7 +3,7 @@ # zgrep -- a wrapper around a grep program that decompresses files as needed # Adapted from a version sent by Charles Levert <charles@comm.polymtl.ca> -# Copyright (C) 1998, 2001-2002, 2006-2007, 2009-2021 Free Software Foundation, +# Copyright (C) 1998, 2001-2002, 2006-2007, 2009-2022 Free Software Foundation, # Inc. # Copyright (C) 1993 Jean-loup Gailly @@ -23,6 +23,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. grep='${GREP-'\''@GREP@'\''}' +args= version='zgrep (gzip) @VERSION@ Copyright (C) 2010-2018 Free Software Foundation, Inc. @@ -64,30 +65,33 @@ case $option in (-0123456789EFGHIKLPRTUVZabchilnoqrsuvwxyz*!0123456789*) - arg2=-\'$(expr "X$option" : 'X-.0-9*\(.*\)' | sed "$escape") + arg2=-\'$(LC_ALL=C expr "X$option" : 'X-.0-9*\(.*\)' | + LC_ALL=C sed "$escape") eval "set -- $arg2 "'${1+"$@"}' - option=$(expr "X$option" : 'X\(-.0-9*\)');; + option=$(LC_ALL=C expr "X$option" : 'X\(-.0-9*\)');; (--binary-*=* | --lma*=* | --reg*=*) ;; (-ABCDXdefm | --binary-* | --file | --lma* | --reg*) case ${1?"$option option requires an argument"} in (*\'*) - optarg=" '"$(printf '%s\n' "$1" | sed "$escape");; + optarg=" '"$(printf '%s\n' "$1" | LC_ALL=C sed "$escape");; (*) optarg=" '$1'";; esac shift;; (-f?*\'*) - optarg=" '"$(expr "X$option" : 'X-f\(.*\)' | sed "$escape") + optarg=" '"$(LC_ALL=C expr "X$option" : 'X-f\(.*\)' | + LC_ALL=C sed "$escape") option=-f;; (-f?*) - optarg=" '"$(expr "X$option" : 'X-f\(.*\)')\' + optarg=" '"$(LC_ALL=C expr "X$option" : 'X-f\(.*\)')\' option=-f;; (--file=*\'*) - optarg=" '"$(expr "X$option" : 'X--file=\(.*\)' | sed "$escape") + optarg=" '"$(LC_ALL=C expr "X$option" : 'X--file=\(.*\)' | + LC_ALL=C sed "$escape") option=--file;; (--file=*) - optarg=" '"$(expr "X$option" : 'X--file=\(.*\)')\' + optarg=" '"$(LC_ALL=C expr "X$option" : 'X--file=\(.*\)')\' option=--file;; (--) break;; @@ -96,7 +100,8 @@ (*) case $option in (*\'*) - operands="$operands '"$(printf '%s\n' "$option" | sed "$escape");; + operands="$operands '"$(printf '%s\n' "$option" | LC_ALL=C sed "$escape") + ;; (*) operands="$operands '$option'";; esac @@ -169,12 +174,12 @@ case $option in (*\'?*) - option=\'$(printf '%s\n' "$option" | sed "$escape");; + option=\'$(printf '%s\n' "$option" | LC_ALL=C sed "$escape");; (*) option="'$option'";; esac - grep="$grep $option$optarg" + args="$args $option$optarg" done eval "set -- $operands "'${1+"$@"}' @@ -182,15 +187,23 @@ if test $have_pat -eq 0; then case ${1?"missing pattern; try \`$0 --help' for help"} in (*\'*) - grep="$grep -- '"$(printf '%s\n' "$1" | sed "$escape");; + args="$args -- '"$(printf '%s\n' "$1" | LC_ALL=C sed "$escape");; (*) - grep="$grep -- '$1'";; + args="$args -- '$1'";; esac shift fi if test $# -eq 0; then set -- - +elif test 1 -lt $# && test $no_filename -eq 0; then + with_filename=1 +fi + +l_e=$(eval "(echo e | $grep -H --label=l e) 2>/dev/null") && test "$l_e" = l:e +gnuish_grep="test $? -eq 0" +if $gnuish_grep && test $with_filename -eq 1; then + grep="$grep -H" fi exec 3>&1 @@ -201,11 +214,11 @@ # Fail if gzip or grep (or sed) fails. gzip_status=$( exec 5>&1 - (gzip -cdfq -- "$i" 5>&-; echo $? >&5) 3>&- | + ('gzip' -cdfq -- "$i" 5>&-; echo $? >&5) 3>&- | if test $files_with_matches -eq 1; then - eval "$grep" >/dev/null && { printf '%s\n' "$i" || exit 2; } + eval "$grep$args" >/dev/null && { printf '%s\n' "$i" || exit 2; } elif test $files_without_matches -eq 1; then - eval "$grep" >/dev/null || { + eval "$grep$args" >/dev/null || { r=$? if test $r -eq 1; then printf '%s\n' "$i" || r=2 @@ -213,26 +226,25 @@ test 256 -le $r && r=$(expr 128 + $r % 128) exit $r } - elif test $with_filename -eq 0 && - { test $# -eq 1 || test $no_filename -eq 1; }; then - eval "$grep" + elif $gnuish_grep && test "$i" != -; then + eval "$grep --label \"\$i\"$args" + elif $gnuish_grep || test $with_filename -eq 0; then + eval "$grep$args" else case $i in (*' '* | *'&'* | *'\'* | *'|'*) - i=$(printf '%s\n' "$i" | - sed ' - $!N - $s/&\|/\\&/g - $s/\n/\\n/g - ');; + icolon=$(printf '%s\n' "$i:" | + LC_ALL=C sed -e 's/&\|/\\&/g' -e '$!s/$/\\/');; + (*) icolon="$i:";; esac - sed_script="s|^|$i:|" + sed_script="s|^|$icolon|" # Fail if grep or sed fails. r=$( exec 4>&1 - (eval "$grep" 4>&-; echo $? >&4) 3>&- | sed "$sed_script" >&3 4>&- + (eval "$grep$args" 4>&-; echo $? >&4) 3>&- | + LC_ALL=C sed "$sed_script" >&3 4>&- ) || { r=$?; test $r -lt 2 && r=2; } test 256 -le $r && r=$(expr 128 + $r % 128) exit $r
View file
_service:tar_scm:gzip-1.11.tar.xz/zip.c -> _service:tar_scm:gzip-1.12.tar.xz/zip.c
Changed
@@ -1,6 +1,6 @@ /* zip.c -- compress files to the gzip or pkzip format - Copyright (C) 1997-1999, 2006-2007, 2009-2021 Free Software Foundation, Inc. + Copyright (C) 1997-1999, 2006-2007, 2009-2022 Free Software Foundation, Inc. Copyright (C) 1992-1993 Jean-loup Gailly This program is free software; you can redistribute it and/or modify
View file
_service:tar_scm:gzip-1.11.tar.xz/zless.1 -> _service:tar_scm:gzip-1.12.tar.xz/zless.1
Changed
@@ -20,7 +20,8 @@ .B zless available is important to be worth providing it. .SH "SEE ALSO" -zmore(1), less(1) +.BR zmore (1), +.BR less (1) .SH "BUGS" The .B zless @@ -32,7 +33,7 @@ instead of .RB ".\|.\|." "|zless" . .SH "COPYRIGHT NOTICE" -Copyright \(co 2006-2007, 2015-2021 Free Software Foundation, Inc. +Copyright \(co 2006-2007, 2015-2022 Free Software Foundation, Inc. .br Copyright \(co 1992, 1993 Jean-loup Gailly .PP
View file
_service:tar_scm:gzip-1.11.tar.xz/zless.in -> _service:tar_scm:gzip-1.12.tar.xz/zless.in
Changed
@@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 1998, 2002, 2006-2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 1998, 2002, 2006-2007, 2010-2022 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -65,7 +65,7 @@ *) use_input_pipe_on_stdin='';; esac -LESSOPEN="|$check_exit_status${use_input_pipe_on_stdin}gzip -cdfq -- %s" +LESSOPEN="|$check_exit_status${use_input_pipe_on_stdin}'gzip' -cdfq -- %s" export LESSOPEN exec less "$@"
View file
_service:tar_scm:gzip-1.11.tar.xz/zmore.1 -> _service:tar_scm:gzip-1.12.tar.xz/zmore.1
Changed
@@ -139,4 +139,10 @@ /etc/termcap Terminal data base .SH "SEE ALSO" -more(1), gzip(1), zdiff(1), zgrep(1), znew(1), zforce(1), gzexe(1) +.BR more (1), +.BR gzip (1), +.BR zdiff (1), +.BR zgrep (1), +.BR znew (1), +.BR zforce (1), +.BR gzexe (1)
View file
_service:tar_scm:gzip-1.11.tar.xz/zmore.in -> _service:tar_scm:gzip-1.12.tar.xz/zmore.in
Changed
@@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2001-2002, 2007, 2010-2021 Free Software Foundation, Inc. +# Copyright (C) 2001-2002, 2007, 2010-2022 Free Software Foundation, Inc. # Copyright (C) 1992, 1993 Jean-loup Gailly # This program is free software; you can redistribute it and/or modify @@ -50,5 +50,5 @@ do test $# -lt 2 || printf '::::::::::::::\n%s\n::::::::::::::\n' "$FILE" || break - gzip -cdfq -- "$FILE" + 'gzip' -cdfq -- "$FILE" done 2>&1 | eval ${PAGER-more}
View file
_service:tar_scm:gzip-1.11.tar.xz/znew.1 -> _service:tar_scm:gzip-1.12.tar.xz/znew.1
Changed
@@ -32,7 +32,13 @@ Keep a .Z file when it is smaller than the .gz file; implies .BR -t . .SH "SEE ALSO" -gzip(1), zmore(1), zdiff(1), zgrep(1), zforce(1), gzexe(1), compress(1) +.BR gzip (1), +.BR zmore (1), +.BR zdiff (1), +.BR zgrep (1), +.BR zforce (1), +.BR gzexe (1), +.BR compress(1) .SH BUGS If the .B \-P
View file
_service:tar_scm:gzip-1.11.tar.xz/znew.in -> _service:tar_scm:gzip-1.12.tar.xz/znew.in
Changed
@@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 1998, 2002, 2004, 2007, 2010-2021 Free Software Foundation, +# Copyright (C) 1998, 2002, 2004, 2007, 2010-2022 Free Software Foundation, # Inc. # Copyright (C) 1993 Jean-loup Gailly @@ -18,6 +18,9 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +LC_ALL=C +export LC_ALL + version="znew (gzip) @VERSION@ Copyright (C) 2010-2018 Free Software Foundation, Inc. This is free software. You may redistribute copies of it under the terms of @@ -94,7 +97,7 @@ fi test $keep -eq 1 && old=`wc -c < "$n.Z"` if test $pipe -eq 1; then - if gzip -d < "$n.Z" | gzip $opt > "$n$ext"; then + if 'gzip' -d < "$n.Z" | 'gzip' $opt > "$n$ext"; then # Copy file attributes from old file to new one, if possible. touch -r"$n.Z" -- "$n$ext" 2>/dev/null chmod --reference="$n.Z" -- "$n$ext" 2>/dev/null @@ -111,14 +114,14 @@ res=1; continue fi fi - if gzip -d "$n.Z"; then + if 'gzip' -d "$n.Z"; then : else test $check -eq 1 && mv "$n.$$" "$n.Z" printf '%s\n' "error while uncompressing $n.Z" res=1; continue fi - if gzip $opt "$n"; then + if 'gzip' $opt "$n"; then : else if test $check -eq 1; then @@ -142,7 +145,7 @@ printf '%s\n' "$n.Z smaller than $n$ext -- unchanged" elif test $check -eq 1; then - if gzip -t "$n$ext" ; then + if 'gzip' -t "$n$ext" ; then rm -f "$n.$$" "$n.Z" else test $pipe -eq 0 && mv "$n.$$" "$n.Z"
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2