annotate docs/Makefile.am @ 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 d6e02253fb76
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
1 # Process this file with automake to produce Makefile.in
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
2
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
3 man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
4
224
e9d3378edec7 [svn] * docs/Makefile.am: Add testing.txt to documents.
bears
parents: 99
diff changeset
5 EXTRA_DIST = INTERNALS FAQ NOTES testing.txt ${man_MANS} $(PACKAGE).lsm
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
6
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
7 install-data-local:
245
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
8 $(INSTALL) -o 0 -g 0 -d $(DESTDIR)$(DOCDIR)
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
9 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INTERNALS $(DESTDIR)$(DOCDIR)
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
10 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DESTDIR)$(DOCDIR)
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
11 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DESTDIR)$(DOCDIR)
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
12 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/testing.txt $(DESTDIR)$(DOCDIR)
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
13 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DESTDIR)$(DOCDIR)
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
14
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
15 uninstall-local:
245
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
16 rm -f $(DESTDIR)$(DOCDIR)/INTERNALS
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
17 rm -f $(DESTDIR)$(DOCDIR)/FAQ
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
18 rm -f $(DESTDIR)$(DOCDIR)/NOTES
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
19 rm -f $(DESTDIR)$(DOCDIR)/testing.txt
d6e02253fb76 [svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec,
bears
parents: 224
diff changeset
20 rm -f $(DESTDIR)$(DOCDIR)/$(PACKAGE).lsm
44
bb6a1bf61279 [svn] Oops. Forgot three files in my last commit:
uh1763
parents:
diff changeset
21