summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-03-07 18:06:22 +1100
committerDarren Tucker <dtucker@zip.com.au>2009-03-07 18:06:22 +1100
commit30ed668de0f7755934971f2e7e80b62073091624 (patch)
tree0df3584e525fc34652955ab0e89599d8a18b6844
parentccfee058820699bc6d5f5e10e8f546c1e95b4c1d (diff)
- (dtucker) [configure.ac] Missing comma in type list.
-rw-r--r--ChangeLog1
-rw-r--r--configure.ac6
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index eadd0f7d8..1c982f5d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
6 EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c 6 EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
7 to use them. Allows building with older OpenSSL versions. 7 to use them. Allows building with older OpenSSL versions.
8 - (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed. 8 - (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
9 - (dtucker) [configure.ac] Missing comma in type list.
9 10
1020090306 1120090306
11 - (djm) OpenBSD CVS Sync 12 - (djm) OpenBSD CVS Sync
diff --git a/configure.ac b/configure.ac
index 0ec8a1980..a2cb7a215 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.416 2009/03/07 01:32:22 dtucker Exp $ 1# $Id: configure.ac,v 1.417 2009/03/07 07:06:22 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.416 $) 18AC_REVISION($Revision: 1.417 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -2694,7 +2694,7 @@ AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[
2694#endif 2694#endif
2695]) 2695])
2696 2696
2697AC_CHECK_TYPES([in_addr_t in_port_t],,, 2697AC_CHECK_TYPES([in_addr_t, in_port_t],,,
2698[#include <sys/types.h> 2698[#include <sys/types.h>
2699#include <netinet/in.h>]) 2699#include <netinet/in.h>])
2700 2700