configure.in fix (netbsd-current) for 2.1.0p3

itojun at iijlab.net itojun at iijlab.net
Wed May 31 19:48:34 EST 2000


	thanks for great package.  configure.in shipped with 2.1.0p3 includes
	too few header files for detecting struct sockaddr_in6 and in6_addr,
	and the build will fail on netbsd-current (1.4Z).  here's a
	tiny patch to make the build successful.

itojun


diff -u1 openssh-2.1.0p3/configure.in openssh-2.1.0p3+/configure.in
--- openssh-2.1.0p3/configure.in	Tue May 30 11:57:47 2000
+++ openssh-2.1.0p3+/configure.in	Wed May 31 18:31:52 2000
@@ -447,3 +447,5 @@
 		[
+#include <sys/types.h>
 #include <netinet/in.h>
+#include <sys/socket.h>
 		],
@@ -461,2 +463,3 @@
 		[
+#include <sys/types.h>
 #include <netinet/in.h>





More information about the openssh-unix-dev mailing list