Testing for the 4.4p1 release, round 2

Darren Tucker dtucker at zip.com.au
Fri Sep 22 19:24:06 EST 2006


On Fri, Sep 22, 2006 at 02:34:43PM +0530, santhi wrote:
> Hi All,
> 
> I have tested the openssh-SNAP-20060922 in the following HP-UX machines:

Thanks.

> HP-UX 11.00 PA-RISC:
> --------------------------
> Configures successfully.  But the compilation ends with the following error:
[...]
> /usr/ccs/bin/ld: Unsatisfied symbols:
>    htonl (first referenced in ./libssh.a(canohost.o)) (code)
> 
> Fix:
> ----
> Include <arpa/inet.h> in canohost.c
[...]
> Include <arpa/inet.h> in packet.c

Both now fixed, thanks.

Index: canohost.c
===================================================================
RCS file: /var/cvs/openssh/canohost.c,v
retrieving revision 1.70
diff -u -p -r1.70 canohost.c
--- canohost.c	5 Aug 2006 02:39:39 -0000	1.70
+++ canohost.c	22 Sep 2006 09:21:46 -0000
@@ -18,6 +18,7 @@
 #include <sys/socket.h>
 
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
 #include <ctype.h>
 #include <errno.h>
Index: packet.c
===================================================================
RCS file: /var/cvs/openssh/packet.c,v
retrieving revision 1.144
diff -u -p -r1.144 packet.c
--- packet.c	21 Sep 2006 03:00:25 -0000	1.144
+++ packet.c	22 Sep 2006 09:21:46 -0000
@@ -50,6 +50,7 @@
 #include <netinet/in_systm.h>
 #include <netinet/in.h>
 #include <netinet/ip.h>
+#include <arpa/inet.h>
 
 #include <errno.h>
 #include <stdarg.h>

-- 
Darren Tucker (dtucker at zip.com.au)
GPG key 8FF4FA69 / D9A3 86E9 7EEE AF4B B2D4  37C9 C982 80C7 8FF4 FA69
    Good judgement comes with experience. Unfortunately, the experience
usually comes from bad judgement.



More information about the openssh-unix-dev mailing list