- (dtucker) [configure.ac] Missing comma in type list.
This commit is contained in:
parent
ccfee05882
commit
30ed668de0
|
@ -6,6 +6,7 @@
|
||||||
EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
|
EVP_DigestUpdate to the OLD_EVP compatibility functions and tell schnorr.c
|
||||||
to use them. Allows building with older OpenSSL versions.
|
to use them. Allows building with older OpenSSL versions.
|
||||||
- (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
|
- (dtucker) [configure.ac defines.h] Check for in_port_t and typedef if needed.
|
||||||
|
- (dtucker) [configure.ac] Missing comma in type list.
|
||||||
|
|
||||||
20090306
|
20090306
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.416 2009/03/07 01:32:22 dtucker Exp $
|
# $Id: configure.ac,v 1.417 2009/03/07 07:06:22 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
|
AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
|
||||||
AC_REVISION($Revision: 1.416 $)
|
AC_REVISION($Revision: 1.417 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
|
|
||||||
AC_CONFIG_HEADER(config.h)
|
AC_CONFIG_HEADER(config.h)
|
||||||
|
@ -2694,7 +2694,7 @@ AC_CHECK_TYPES([fsblkcnt_t, fsfilcnt_t],,,[
|
||||||
#endif
|
#endif
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_CHECK_TYPES([in_addr_t in_port_t],,,
|
AC_CHECK_TYPES([in_addr_t, in_port_t],,,
|
||||||
[#include <sys/types.h>
|
[#include <sys/types.h>
|
||||||
#include <netinet/in.h>])
|
#include <netinet/in.h>])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue