]> git.cworth.org Git - gzip/blob - README-alpha
Imported Upstream version 1.3.2
[gzip] / README-alpha
1 This is a test release of gzip.
2
3 Please send comments and problem reports to <bug-gzip@gnu.org>.
4
5         Copyright (C) 2001 Free Software Foundation, Inc.
6
7         This file is part of GNU zip (gzip).
8
9         gzip is free software; you can redistribute it and/or modify
10         it under the terms of the GNU General Public License as published by
11         the Free Software Foundation; either version 2, or (at your option)
12         any later version.
13
14         gzip is distributed in the hope that it will be useful,
15         but WITHOUT ANY WARRANTY; without even the implied warranty of
16         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17         GNU General Public License for more details.
18
19         You should have received a copy of the GNU General Public License
20         along with gzip; see the file COPYING.  If not, write to
21         the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22         Boston, MA 02111-1307, USA.
23
24 This release was built with GNU autoconf 2.52f, which you can get from:
25 ftp://alpha.gnu.org/gnu/autoconf/autoconf-2.52f.tar.gz
26
27 This release was built with GNU automake 1.5 patched as follows:
28
29 2001-09-24  Paul Eggert  <eggert@twinsun.com>
30
31         * m4/header.m4 (_AM_Config_Header_Index): Remove.
32         (AM_CONFIG_HEADER): Don't use it.  It wasn't working, and was
33         causing needless rebuilds.
34
35 2001-09-14  Paul Eggert  <eggert@twinsun.com>
36
37         * lib/am/distdir.am (REMOVE_DISTDIR):
38         New macro.  Do not change permission of non-directories.
39         (distdir, dist, dist-bzip2, dist-tarZ, dist-shar, dist-zip, dist-all,
40          distcheck): Use it.
41
42 ===================================================================
43 RCS file: lib/am/distdir.am,v
44 retrieving revision 1.5
45 retrieving revision 1.5.0.1
46 diff -pu -r1.5 -r1.5.0.1
47 --- lib/am/distdir.am   2001/07/14 20:12:52     1.5
48 +++ lib/am/distdir.am   2001/09/15 05:12:18     1.5.0.1
49 @@ -29,6 +29,11 @@ else !%?TOPDIR_P%
50  ?DISTDIR?distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
51  endif !%?TOPDIR_P%
52  
53 +REMOVE_DISTDIR = \
54 +  { test ! -d $(distdir) \
55 +    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
56 +         && rm -fr $(distdir); }; }
57 +
58  distdir: $(DISTFILES)
59  ##
60  ## For Gnits users, this is pretty handy.  Look at 15 lines
61 @@ -47,7 +52,7 @@ endif %?TOPDIR_P%
62  ## Only for the top dir.
63  ##
64  if %?TOPDIR_P%
65 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
66 +       $(REMOVE_DISTDIR)
67         mkdir $(distdir)
68  endif %?TOPDIR_P%
69  ##
70 @@ -168,13 +173,13 @@ GZIP_ENV = --best
71  .PHONY: dist
72  dist: distdir
73         $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
74 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
75 +       $(REMOVE_DISTDIR)
76  
77  if  %?BZIP2%
78  .PHONY: dist-bzip2
79  dist-bzip2: distdir
80         $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2
81 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
82 +       $(REMOVE_DISTDIR)
83  endif  %?BZIP2%
84  
85  
86 @@ -182,7 +187,7 @@ if  %?COMPRESS%
87  .PHONY: dist-tarZ
88  dist-tarZ: distdir
89         $(AMTAR) chof - $(distdir) | compress -c >$(distdir).tar.Z
90 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
91 +       $(REMOVE_DISTDIR)
92  endif  %?COMPRESS%
93  
94  
95 @@ -190,7 +195,7 @@ if  %?SHAR%
96  .PHONY: dist-shar
97  dist-shar: distdir
98         shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
99 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
100 +       $(REMOVE_DISTDIR)
101  endif  %?SHAR%
102  
103  
104 @@ -199,7 +204,7 @@ if  %?ZIP%
105  dist-zip: distdir
106         -rm -f $(distdir).zip
107         zip -rq $(distdir).zip $(distdir)
108 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
109 +       $(REMOVE_DISTDIR)
110  endif  %?ZIP%
111  
112  endif %?TOPDIR_P%
113 @@ -223,7 +228,7 @@ dist-all: distdir
114  ?SHAR? shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
115  ?ZIP?  -rm -f $(distdir).zip
116  ?ZIP?  zip -rq $(distdir).zip $(distdir)
117 -       -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
118 +       $(REMOVE_DISTDIR)
119  
120  endif %?TOPDIR_P%
121  
122 @@ -239,8 +244,7 @@ if %?TOPDIR_P%
123  # tarfile.
124  .PHONY: distcheck
125  distcheck: dist
126 -## Make sure we can remove distdir before trying to remove it.
127 -       -chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir)
128 +       $(REMOVE_DISTDIR)
129         GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
130  ## Make the new source tree read-only.  Distributions ought to work in
131  ## this case.  However, make the top-level directory writable so we
132 @@ -273,7 +277,7 @@ distcheck: dist
133           && (test `find . -type f -print | wc -l` -eq 0 \
134              || (echo "Error: files left after distclean" 1>&2; \
135                  exit 1) )
136 -       -chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir)
137 +       $(REMOVE_DISTDIR)
138         @echo "$(distdir).tar.gz is ready for distribution" | \
139           sed 'h;s/./=/g;p;x;p;x'
140  endif %?TOPDIR_P%
141 ===================================================================
142 RCS file: m4/header.m4,v
143 retrieving revision 1.5
144 retrieving revision 1.5.0.1
145 diff -pu -r1.5 -r1.5.0.1
146 --- m4/header.m4        2001/07/21 05:27:26     1.5
147 +++ m4/header.m4        2001/09/24 18:29:30     1.5.0.1
148 @@ -11,18 +11,16 @@ AC_PREREQ([2.12])
149  
150  AC_DEFUN([AM_CONFIG_HEADER],
151  [ifdef([AC_FOREACH],dnl
152 -        [dnl init our file count if it isn't already
153 -        m4_ifndef([_AM_Config_Header_Index], m4_define([_AM_Config_Header_Index], [0]))
154 +        [
155          dnl prepare to store our destination file list for use in config.status
156          AC_FOREACH([_AM_File], [$1],
157                     [m4_pushdef([_AM_Dest], m4_patsubst(_AM_File, [:.*]))
158 -                   m4_define([_AM_Config_Header_Index], m4_incr(_AM_Config_Header_Index))
159                     dnl and add it to the list of files AC keeps track of, along
160                     dnl with our hook
161                     AC_CONFIG_HEADERS(_AM_File,
162  dnl COMMANDS, [, INIT-CMDS]
163  [# update the timestamp
164 -echo timestamp >"AS_ESCAPE(_AM_DIRNAME(]_AM_Dest[))/stamp-h]_AM_Config_Header_Index["
165 +echo timestamp >"AS_ESCAPE(_AM_DIRNAME(]_AM_Dest[))/stamp-h"
166  ][$2]m4_ifval([$3], [, [$3]]))dnl AC_CONFIG_HEADERS
167                     m4_popdef([_AM_Dest])])],dnl
168  [AC_CONFIG_HEADER([$1])