1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
2005-10-07 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (resolve, addrinfo-test, fake-addrinfo-test): Don't
use "$<" outside of implicit rules.
2005-09-07 Ken Raeburn <raeburn@mit.edu>
* fake-addrinfo-test.c: New file.
* Makefile.in (check): Do pass arguments to addrinfo-test
invocation added by Marc's patch.
(fake-addrinfo-test): New target.
(all): Depend on it.
(SRCS): Fix typo in last change. Add fake-addrinfo-test.c.
(OBJS): Add fake-addrinfo-test.o.
2005-09-01 Marc Aurele La France <tsi@ualberta.ca>
* Makefile.in: Build addrinfo-test.
* addrinfo-test.c (main): 'numeric' -> 'numerichost'; Add -n option
to set AI_NUMERICSERV (if available); print usage message when no
arguments are given.
2004-08-23 Ken Raeburn <raeburn@mit.edu>
* addrinfo-test.c: New file.
2003-07-22 Ken Raeburn <raeburn@mit.edu>
* resolve.c (main): If gethostbyname fails, report the failing
hostname.
2002-08-29 Ken Raeburn <raeburn@mit.edu>
* Makefile.in: Revert $(S)=>/ change, for Windows support.
2002-08-23 Ken Raeburn <raeburn@mit.edu>
* Makefile.in: Change $(S)=>/ and $(U)=>.. globally.
2001-07-06 Ezra Peisach <epeisach@mit.edu>
* resolve.c: Include stdlib.h (if present) for exit() prototype.
2001-06-12 Tom Yu <tlyu@mit.edu>
* resolve.c (main): Make error message note that misconfiguration
of /etc/hosts, as well as problems with resolver library, are all
likely to cause failure.
1999-10-26 Wilfredo Sanchez <tritan@mit.edu>
* Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
LOCAL_INCLUDES such that one can override CFLAGS from the command
line without losing CPP search patchs and defines. Some associated
Makefile cleanup.
1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Set the myfulldir and mydir variables (which are
relative to buildtop and thisconfigdir, respectively.)
Mon Mar 30 13:50:15 1998 Ezra Peisach <epeisach@kangaroo.mit.edu>
* resolve.c: Include unistd.h if present on system (for
gethostname prototype).
Wed Feb 18 16:30:37 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
BUILDTOP for new conventions.
Mon Feb 2 16:44:41 1998 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Define BUILDTOP and thisconfigdir in the Makefile
Wed Feb 26 23:12:24 1997 Tom Yu <tlyu@mit.edu>
* Makefile.in: Add $(LIBS) so that compile doesn't blow out under
Solaris due to lack of -lnsl -lsocket.
Sat Feb 22 20:28:32 1997 Theodore Ts'o <tytso@rsts-11.mit.edu>
* resolve.c (main): Make the test for a FQDN be a bit more
stringent.
* Makefile.in (resolve): The resolve program doesn't need to be
linked against the Kerberos library.
Sun Feb 9 01:48:01 1997 Tom Yu <tlyu@mit.edu>
* Makefile.in:
* configure.in: Update to new program build procedure.
Mon Mar 18 21:49:39 1996 Ezra Peisach <epeisach@kangaroo.mit.edu>
* configure.in: Add KRB5_RUN_FLAGS
* Makefile.in: Use runtime flags.
Wed Sep 13 13:57:40 1995 Theodore Y. Ts'o <tytso@dcl>
* resolve.c (main): Fix fencepost error; use argv[1] to test for a
specfied host if argc is >= 1, not just > 1.
Wed Jul 12 12:32:14 EDT 1995 Paul Park (pjpark@mit.edu)
* Makefile.in - Add LD_LIBRARY_PATH in case we were linked with shared
libraries by default.
* configure.in - Remove V5_USE_SHARED_LIB.
Fri Jul 7 16:38:47 EDT 1995 Paul Park (pjpark@mit.edu)
* Makefile.in - Remove LDFLAGS and use DEPLIBS.
* configure.in - Add KRB5_LIBRARIES and V5_USE_SHARED_LIB
Fri Jun 9 18:58:43 1995 <tytso@rsx-11.mit.edu>
* configure.in: Remove standardized set of autoconf macros, which
are now handled by CONFIG_RULES.
Mon May 1 20:00:18 1995 Theodore Y. Ts'o (tytso@dcl)
* resolve.c (main): Add --quiet option which only prints the fully
qualified domain name. This will allow this routine to be
used in the deja gnu tests to determine the FQDN of the
local host.
Tue Apr 25 22:16:38 1995 Mark Eichin <eichin@cygnus.com>
* resolve.c (main): copy the address sent back by gethostbyname
before calling gethostbyaddr, since the return is *static*.
(main): reindent declaration to make add-change-log-entry happy.
|