Mercurial > noffle
annotate docs/Makefile.in @ 279:49b452b667a6 noffle
[svn] * src/util.c: localTimeDiff() cached its value and recalculated it every
hour of clock time, regardless of the time the calculated was based on.
This is potentially dangerous at daylight saving changes. So instead
use the cached last result only when the new request is to be based on
a time in the same hour as the cached result.
* src/util.c: Replace the alternate Utl_mktimeGMT() implementation used when
timegm() is not available. The previous version, as suggested by the
glibc timegm() man page, used setenv() and unsetenv() for changing the
environment. These aren't POSIX function, and the POSIX putenv()
(a) is tricky to manage if the same var is being constantly update and
memory isn't to leak, and (b) provides no way to remove an environment
entry. So change to an implementation Wget uses. This should compile on
not glibc systems - the previous version failed to build on Solaris.
author | bears |
---|---|
date | Sun, 17 Nov 2002 15:18:19 +0000 |
parents | a0497ffac49b |
children | c02c4eb95f95 |
rev | line source |
---|---|
278
a0497ffac49b
[svn] I'm not very good at automake. Redo with automake2.13.
bears
parents:
256
diff
changeset
|
1 # Makefile.in generated automatically by automake 1.4-p4 from Makefile.am |
44 | 2 |
278
a0497ffac49b
[svn] I'm not very good at automake. Redo with automake2.13.
bears
parents:
256
diff
changeset
|
3 # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. |
44 | 4 # This Makefile.in is free software; the Free Software Foundation |
5 # gives unlimited permission to copy and/or distribute it, | |
6 # with or without modifications, as long as this notice is preserved. | |
7 | |
8 # This program is distributed in the hope that it will be useful, | |
9 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without | |
10 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A | |
11 # PARTICULAR PURPOSE. | |
12 | |
13 # Process this file with automake to produce Makefile.in | |
14 | |
15 | |
16 SHELL = @SHELL@ | |
17 | |
18 srcdir = @srcdir@ | |
19 top_srcdir = @top_srcdir@ | |
20 VPATH = @srcdir@ | |
21 prefix = @prefix@ | |
22 exec_prefix = @exec_prefix@ | |
23 | |
24 bindir = @bindir@ | |
25 sbindir = @sbindir@ | |
26 libexecdir = @libexecdir@ | |
27 datadir = @datadir@ | |
28 sysconfdir = @sysconfdir@ | |
29 sharedstatedir = @sharedstatedir@ | |
30 localstatedir = @localstatedir@ | |
31 libdir = @libdir@ | |
32 infodir = @infodir@ | |
33 mandir = @mandir@ | |
34 includedir = @includedir@ | |
35 oldincludedir = /usr/include | |
36 | |
37 DESTDIR = | |
38 | |
39 pkgdatadir = $(datadir)/@PACKAGE@ | |
40 pkglibdir = $(libdir)/@PACKAGE@ | |
41 pkgincludedir = $(includedir)/@PACKAGE@ | |
42 | |
43 top_builddir = .. | |
44 | |
45 ACLOCAL = @ACLOCAL@ | |
46 AUTOCONF = @AUTOCONF@ | |
47 AUTOMAKE = @AUTOMAKE@ | |
48 AUTOHEADER = @AUTOHEADER@ | |
49 | |
50 INSTALL = @INSTALL@ | |
51 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) | |
52 INSTALL_DATA = @INSTALL_DATA@ | |
53 INSTALL_SCRIPT = @INSTALL_SCRIPT@ | |
54 transform = @program_transform_name@ | |
55 | |
56 NORMAL_INSTALL = : | |
57 PRE_INSTALL = : | |
58 POST_INSTALL = : | |
59 NORMAL_UNINSTALL = : | |
60 PRE_UNINSTALL = : | |
61 POST_UNINSTALL = : | |
62 CC = @CC@ | |
63 CONFIGFILE = @CONFIGFILE@ | |
64 DOCDIR = @DOCDIR@ | |
65 MAKEINFO = @MAKEINFO@ | |
66 PACKAGE = @PACKAGE@ | |
146
fd821441f016
[svn] Applied patch by Paul Slootman: using the mail program is
enz
parents:
144
diff
changeset
|
67 SENDMAILPROG = @SENDMAILPROG@ |
44 | 68 SPOOLDIR = @SPOOLDIR@ |
69 VERSION = @VERSION@ | |
70 | |
71 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5 | |
72 | |
225
9fb4b7d7e64b
[svn] * docs/Makefile.in: Add testing.txt to documents.
bears
parents:
217
diff
changeset
|
73 EXTRA_DIST = INTERNALS FAQ NOTES testing.txt ${man_MANS} $(PACKAGE).lsm |
44 | 74 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs |
75 CONFIG_HEADER = ../config.h | |
76 CONFIG_CLEAN_FILES = | |
77 man1dir = $(mandir)/man1 | |
78 man5dir = $(mandir)/man5 | |
79 MANS = $(man_MANS) | |
80 | |
81 NROFF = nroff | |
82 DIST_COMMON = Makefile.am Makefile.in | |
83 | |
84 | |
85 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) | |
86 | |
87 TAR = tar | |
88 GZIP_ENV = --best | |
89 all: all-redirect | |
90 .SUFFIXES: | |
91 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) | |
92 cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile | |
93 | |
94 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) | |
95 cd $(top_builddir) \ | |
96 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
97 | |
98 | |
99 install-man1: | |
100 $(mkinstalldirs) $(DESTDIR)$(man1dir) | |
101 @list='$(man1_MANS)'; \ | |
102 l2='$(man_MANS)'; for i in $$l2; do \ | |
103 case "$$i" in \ | |
104 *.1*) list="$$list $$i" ;; \ | |
105 esac; \ | |
106 done; \ | |
107 for i in $$list; do \ | |
108 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ | |
109 else file=$$i; fi; \ | |
110 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ | |
111 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ | |
112 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ | |
113 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ | |
114 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ | |
115 done | |
116 | |
117 uninstall-man1: | |
118 @list='$(man1_MANS)'; \ | |
119 l2='$(man_MANS)'; for i in $$l2; do \ | |
120 case "$$i" in \ | |
121 *.1*) list="$$list $$i" ;; \ | |
122 esac; \ | |
123 done; \ | |
124 for i in $$list; do \ | |
125 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ | |
126 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ | |
127 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ | |
128 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ | |
129 rm -f $(DESTDIR)$(man1dir)/$$inst; \ | |
130 done | |
131 | |
132 install-man5: | |
133 $(mkinstalldirs) $(DESTDIR)$(man5dir) | |
134 @list='$(man5_MANS)'; \ | |
135 l2='$(man_MANS)'; for i in $$l2; do \ | |
136 case "$$i" in \ | |
137 *.5*) list="$$list $$i" ;; \ | |
138 esac; \ | |
139 done; \ | |
140 for i in $$list; do \ | |
141 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ | |
142 else file=$$i; fi; \ | |
143 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ | |
144 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ | |
145 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ | |
146 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst"; \ | |
147 $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst; \ | |
148 done | |
149 | |
150 uninstall-man5: | |
151 @list='$(man5_MANS)'; \ | |
152 l2='$(man_MANS)'; for i in $$l2; do \ | |
153 case "$$i" in \ | |
154 *.5*) list="$$list $$i" ;; \ | |
155 esac; \ | |
156 done; \ | |
157 for i in $$list; do \ | |
158 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ | |
159 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ | |
160 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ | |
161 echo " rm -f $(DESTDIR)$(man5dir)/$$inst"; \ | |
162 rm -f $(DESTDIR)$(man5dir)/$$inst; \ | |
163 done | |
164 install-man: $(MANS) | |
165 @$(NORMAL_INSTALL) | |
166 $(MAKE) $(AM_MAKEFLAGS) install-man1 install-man5 | |
167 uninstall-man: | |
168 @$(NORMAL_UNINSTALL) | |
169 $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 uninstall-man5 | |
170 tags: TAGS | |
171 TAGS: | |
172 | |
173 | |
174 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) | |
175 | |
176 subdir = docs | |
177 | |
178 distdir: $(DISTFILES) | |
179 here=`cd $(top_builddir) && pwd`; \ | |
180 top_distdir=`cd $(top_distdir) && pwd`; \ | |
181 distdir=`cd $(distdir) && pwd`; \ | |
182 cd $(top_srcdir) \ | |
183 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu docs/Makefile | |
184 @for file in $(DISTFILES); do \ | |
185 d=$(srcdir); \ | |
186 if test -d $$d/$$file; then \ | |
144
8b9366fc1361
[svn] Added timeout to Prt_getLn to avoid Noffle hanging if the
enz
parents:
99
diff
changeset
|
187 cp -pr $$d/$$file $(distdir)/$$file; \ |
44 | 188 else \ |
189 test -f $(distdir)/$$file \ | |
190 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ | |
191 || cp -p $$d/$$file $(distdir)/$$file || :; \ | |
192 fi; \ | |
193 done | |
194 info-am: | |
195 info: info-am | |
196 dvi-am: | |
197 dvi: dvi-am | |
198 check-am: all-am | |
199 check: check-am | |
200 installcheck-am: | |
201 installcheck: installcheck-am | |
202 install-exec-am: | |
203 install-exec: install-exec-am | |
204 | |
205 install-data-am: install-man install-data-local | |
206 install-data: install-data-am | |
207 | |
208 install-am: all-am | |
209 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am | |
210 install: install-am | |
211 uninstall-am: uninstall-man uninstall-local | |
212 uninstall: uninstall-am | |
213 all-am: Makefile $(MANS) | |
214 all-redirect: all-am | |
215 install-strip: | |
216 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install | |
217 installdirs: | |
218 $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 | |
219 | |
220 | |
221 mostlyclean-generic: | |
222 | |
223 clean-generic: | |
224 | |
225 distclean-generic: | |
226 -rm -f Makefile $(CONFIG_CLEAN_FILES) | |
227 -rm -f config.cache config.log stamp-h stamp-h[0-9]* | |
228 | |
229 maintainer-clean-generic: | |
230 mostlyclean-am: mostlyclean-generic | |
231 | |
232 mostlyclean: mostlyclean-am | |
233 | |
234 clean-am: clean-generic mostlyclean-am | |
235 | |
236 clean: clean-am | |
237 | |
238 distclean-am: distclean-generic clean-am | |
239 | |
240 distclean: distclean-am | |
241 | |
242 maintainer-clean-am: maintainer-clean-generic distclean-am | |
243 @echo "This command is intended for maintainers to use;" | |
244 @echo "it deletes files that may require special tools to rebuild." | |
245 | |
246 maintainer-clean: maintainer-clean-am | |
247 | |
248 .PHONY: install-man1 uninstall-man1 install-man5 uninstall-man5 \ | |
249 install-man uninstall-man tags distdir info-am info dvi-am dvi check \ | |
250 check-am installcheck-am installcheck install-exec-am install-exec \ | |
251 install-data-local install-data-am install-data install-am install \ | |
252 uninstall-local uninstall-am uninstall all-redirect all-am all \ | |
253 installdirs mostlyclean-generic distclean-generic clean-generic \ | |
254 maintainer-clean-generic clean mostlyclean distclean maintainer-clean | |
255 | |
256 | |
257 install-data-local: | |
253
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
258 $(INSTALL) -o 0 -g 0 -d $(DESTDIR)$(DOCDIR) |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
259 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INTERNALS $(DESTDIR)$(DOCDIR) |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
260 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DESTDIR)$(DOCDIR) |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
261 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DESTDIR)$(DOCDIR) |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
262 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/testing.txt $(DESTDIR)$(DOCDIR) |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
263 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DESTDIR)$(DOCDIR) |
44 | 264 |
265 uninstall-local: | |
253
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
266 rm -f $(DESTDIR)$(DOCDIR)/INTERNALS |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
267 rm -f $(DESTDIR)$(DOCDIR)/FAQ |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
268 rm -f $(DESTDIR)$(DOCDIR)/NOTES |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
269 rm -f $(DESTDIR)$(DOCDIR)/testing.txt |
b67a1eaab41a
[svn] * Makefile.in,docs/Makefile.in: Update to reflect last changes to
bears
parents:
225
diff
changeset
|
270 rm -f $(DESTDIR)$(DOCDIR)/$(PACKAGE).lsm |
44 | 271 |
272 # Tell versions [3.59,3.63) of GNU make to not export all variables. | |
273 # Otherwise a system limit (for SysV at least) may be exceeded. | |
274 .NOEXPORT: |