ANNOUNCE: openssh-1.2.1pre23
David Rankin
drankin at bohemians.lexington.ky.us
Fri Dec 31 01:03:59 EST 1999
On Thu, Dec 30, 1999 at 05:01:39PM +1100, Damien Miller wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> openssh-1.2.1pre23 is available on:
> http://violet.ibs.com.au/openssh/files/
Configure.in has a problem with the way it checks for socklen_t and size_t.
Without this patch, the program never checks correctly, so it always comes
back undefined.
Thanks,
David
--- configure.in.orig Thu Dec 30 08:56:52 1999
+++ configure.in Thu Dec 30 08:58:17 1999
@@ -184,8 +184,10 @@
AC_MSG_CHECKING([For socklen_t])
AC_TRY_COMPILE(
- [#include <sys/types.h>],
- [#include <sys/socket.h>],
+ [
+ #include <sys/types.h>
+ #include <sys/socket.h>
+ ],
[socklen_t foo; foo = 1235;],
[
AC_DEFINE(HAVE_SOCKLEN_T)
@@ -196,8 +198,10 @@
AC_MSG_CHECKING([For size_t])
AC_TRY_COMPILE(
- [#include <sys/types.h>],
- [#include <sys/socket.h>],
+ [
+ #include <sys/types.h>
+ #include <sys/socket.h>
+ ],
[size_t foo; foo = 1235;],
[
AC_DEFINE(HAVE_SIZE_T)
More information about the openssh-unix-dev
mailing list