Mercurial > noffle
annotate packages/redhat/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 |
| 225 | 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. |
| 225 | 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@ | |
| 67 SENDMAILPROG = @SENDMAILPROG@ | |
| 68 SPOOLDIR = @SPOOLDIR@ | |
| 69 VERSION = @VERSION@ | |
| 70 | |
| 71 EXTRA_DIST = noffle-expire noffle.spec | |
| 72 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs | |
| 73 CONFIG_HEADER = ../../config.h | |
| 74 CONFIG_CLEAN_FILES = | |
| 75 DIST_COMMON = README Makefile.am Makefile.in | |
| 76 | |
| 77 | |
| 78 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) | |
| 79 | |
| 80 TAR = tar | |
| 81 GZIP_ENV = --best | |
| 82 all: all-redirect | |
| 83 .SUFFIXES: | |
| 84 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) | |
| 85 cd $(top_srcdir) && $(AUTOMAKE) --gnu packages/redhat/Makefile | |
| 86 | |
| 87 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) | |
| 88 cd $(top_builddir) \ | |
| 89 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
| 90 | |
| 91 tags: TAGS | |
| 92 TAGS: | |
| 93 | |
| 94 | |
| 95 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) | |
| 96 | |
| 97 subdir = packages/redhat | |
| 98 | |
| 99 distdir: $(DISTFILES) | |
| 100 here=`cd $(top_builddir) && pwd`; \ | |
| 101 top_distdir=`cd $(top_distdir) && pwd`; \ | |
| 102 distdir=`cd $(distdir) && pwd`; \ | |
| 103 cd $(top_srcdir) \ | |
| 104 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu packages/redhat/Makefile | |
| 105 @for file in $(DISTFILES); do \ | |
| 106 d=$(srcdir); \ | |
| 107 if test -d $$d/$$file; then \ | |
| 108 cp -pr $$d/$$file $(distdir)/$$file; \ | |
| 109 else \ | |
| 110 test -f $(distdir)/$$file \ | |
| 111 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ | |
| 112 || cp -p $$d/$$file $(distdir)/$$file || :; \ | |
| 113 fi; \ | |
| 114 done | |
| 115 info-am: | |
| 116 info: info-am | |
| 117 dvi-am: | |
| 118 dvi: dvi-am | |
| 119 check-am: all-am | |
| 120 check: check-am | |
| 121 installcheck-am: | |
| 122 installcheck: installcheck-am | |
| 123 install-exec-am: | |
| 124 install-exec: install-exec-am | |
| 125 | |
| 126 install-data-am: | |
| 127 install-data: install-data-am | |
| 128 | |
| 129 install-am: all-am | |
| 130 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am | |
| 131 install: install-am | |
| 132 uninstall-am: | |
| 133 uninstall: uninstall-am | |
| 134 all-am: Makefile | |
| 135 all-redirect: all-am | |
| 136 install-strip: | |
| 137 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install | |
| 138 installdirs: | |
| 139 | |
| 140 | |
| 141 mostlyclean-generic: | |
| 142 | |
| 143 clean-generic: | |
| 144 | |
| 145 distclean-generic: | |
| 146 -rm -f Makefile $(CONFIG_CLEAN_FILES) | |
| 147 -rm -f config.cache config.log stamp-h stamp-h[0-9]* | |
| 148 | |
| 149 maintainer-clean-generic: | |
| 150 mostlyclean-am: mostlyclean-generic | |
| 151 | |
| 152 mostlyclean: mostlyclean-am | |
| 153 | |
| 154 clean-am: clean-generic mostlyclean-am | |
| 155 | |
| 156 clean: clean-am | |
| 157 | |
| 158 distclean-am: distclean-generic clean-am | |
| 159 | |
| 160 distclean: distclean-am | |
| 161 | |
| 162 maintainer-clean-am: maintainer-clean-generic distclean-am | |
| 163 @echo "This command is intended for maintainers to use;" | |
| 164 @echo "it deletes files that may require special tools to rebuild." | |
| 165 | |
| 166 maintainer-clean: maintainer-clean-am | |
| 167 | |
| 168 .PHONY: tags distdir info-am info dvi-am dvi check check-am \ | |
| 169 installcheck-am installcheck install-exec-am install-exec \ | |
| 170 install-data-am install-data install-am install uninstall-am uninstall \ | |
| 171 all-redirect all-am all installdirs mostlyclean-generic \ | |
| 172 distclean-generic clean-generic maintainer-clean-generic clean \ | |
| 173 mostlyclean distclean maintainer-clean | |
| 174 | |
| 175 | |
| 176 # Tell versions [3.59,3.63) of GNU make to not export all variables. | |
| 177 # Otherwise a system limit (for SysV at least) may be exceeded. | |
| 178 .NOEXPORT: |
