2004-03-21 Kenichi Okada <okada@opaopa.org>
[elisp/starttls.git] / ChangeLog
1 2004-03-21  Kenichi Okada  <okada@opaopa.org>
2
3         * configure.in (VERSION): Bump up to 0.10.
4
5 2004-03-21  AIDA Shinra <shinra@j10n.org>
6
7         * starttls.c (main): Fix for small BUFSIZE OS.
8
9 2004-02-17  Daiki Ueno  <ueno@unixuser.org>
10
11         * configure.in: Use AC_LIBOBJ rather than manually modify LIBOBJS.
12
13 2002-03-06  Daiki Ueno  <ueno@unixuser.org>
14
15         * configure.in (VERSION): Bump up to 0.9.
16
17 2002-02-28  Jun-ya Kato <kato@goto.info.waseda.ac.jp>
18
19         * starttls.c (tls_connect) [HAVE_ADDRINFO]: Attempt to connect to
20         all the names of the host.
21         (tls_connect) [!HAVE_ADDRINFO]: Remove too much conversion between
22         host and network byte order.
23
24         * starttls.el (starttls-kill-program): New user option.
25         (starttls-negotiation-by-kill-program): New user option.
26         (starttls-negotiate): Send SIGALRM by kill.exe if
27         `starttls-negotiation-by-kill-program' is non-nil.
28
29 2002-01-23  Daiki Ueno  <ueno@unixuser.org>
30
31         * configure.in (VERSION): Bump up to 0.8.
32
33 2002-01-23  Simon Josefsson <jas@extundo.com>
34
35         * starttls.c (tls_connect): Replace socklen_t with size_t to
36         compile on Solaris 2.6, and also fix typo.
37
38 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
39
40         * configure.in (VERSION): Bump up to 0.7.
41
42 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
43
44         * addrinfo.h: Removed and gave up to emulate getaddrinfo(3). Thus
45         on systems where there is no such thing, we are now being unable
46         to use IPv6.
47         * bittypes.h: Ditto.
48         * getaddrinfo.c: Ditto.
49         * sockstorage.h: Ditto.
50         * Makefile.am: Took off the above stuff from EXTRA_DIST.
51         * configure.in: Don't touch $LIBOBJS even if there is no
52         getaddrinfo working.
53
54         * starttls.c (tls_connect) [!HAVE_ADDRINFO]: Don't use the fake
55         getaddrinfo.
56         
57 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
58
59         * bittypes.h: Add missing header files.
60         * sockstorage.h: Ditto.
61
62         * configure.in: Don't compile getopt.c and getopt1.c if there is
63         getopt_long.
64         * Makefile.am: Don't compile getopt.c and getopt1.c if there is
65         getopt_long; use autoconf's output variable $(LIBOBJS).
66
67         * starttls.c: Put getopt.h between "" instead of <>.
68
69 2002-01-22  Kenichi OKADA  <okada@opaopa.org>
70
71         * starttls.c: Fix the argument of getopt_long.
72
73 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
74
75         * configure.in: Don't check the existence of "socks.h".
76         * starttls.c: Don't include "socks.h".
77
78 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
79
80         * getaddrinfo.c: Synch up with the HEAD of tcpdump/missing/*.
81         * addrinfo.h: Ditto.
82
83         * acinclude.m4: New file.
84         * configure.in: Use macros coming from acinclude.m4.
85
86 2001-10-17   Daiki Ueno  <ueno@unixuser.org>
87
88         * starttls.c (main): Use poll() instead of select() if available.
89
90         * configure.in: Check the existence of sys/poll.h. 
91
92 2001-10-13  Simon Josefsson  <jas@extundo.com>
93
94         * starttls.c (main): Clear fd sets before select().
95
96 2000-11-02      Kenichi OKADA   <okada@opaopa.org>
97
98         * VERSION 0.5 released.
99         * configure.in(AM_INIT_AUTOMAKE): Up.
100
101 2000-11-02   Simon Josefsson <sj@extundo.com>
102
103         * starttls.c: Use `sizeof buffer -1' instead of `BUFSIZ/2'.
104
105 2000-10-07   Daiki Ueno  <ueno@unixuser.org>
106
107         * .cvsignore: Add `aclocal.m4', `install-sh', `mkinstalldirs',
108         `missing' and `elisp-comp'.
109
110         * bootstrap: New file.
111
112         * starttls.c: Change author's mail address.
113         (main): Fix optstring
114
115 2000-08-29      Kenichi OKADA   <okada@opaopa.org>
116
117         * configure.in (AM_INIT_AUTOMAKE): Up.
118
119 2000-08-12      Kenichi OKADA   <okada@opaopa.org>
120
121         * VERSION 0.4 released.
122         (README): Update
123
124 2000-08-12      Kenichi OKADA   <okada@opaopa.org>
125
126         * starttls.c (main): Use `optind'.
127         * starttls.el (starttls-open-stream): Put `starttls-extra-args' on
128         the last arg.
129
130 2000-08-11      Kenichi OKADA   <okada@opaopa.org>
131
132         * VERSION 0.3 released.
133
134 2000-08-11      Kenichi OKADA   <okada@opaopa.org>
135
136         * starttls.c (main): Define optstrings.
137         New option `--force'.
138         * starttls.el (starttls-open-ssl-stream): New function.
139         (starttls-open-stream): Move `starttls-extra-args'.
140
141 2000-08-11      Kenichi OKADA   <okada@opaopa.org>
142
143         * starttls.c: Delete duplicated includes.
144
145 2000-08-10      Kenichi OKADA   <okada@opaopa.org>
146
147         * starttls.c (main): Change `sizeof buffer` to
148         `BUFSIZ/8' or `BUFSIZ/2'.
149
150 2000-08-10      Kenichi OKADA   <okada@opaopa.org>
151
152         * configure.in: explicate $prefix.
153         Auto detect OpenSSL libraries.