Please test this snapshot

Lutz Jaenicke Lutz.Jaenicke at aet.TU-Cottbus.DE
Thu Jun 29 18:07:08 EST 2000


On Thu, Jun 29, 2000 at 07:02:05AM +1000, Damien Miller wrote:
> On Wed, 28 Jun 2000, Rip Loomis wrote:
> 
> > Hey Damien--would it be reasonable to release a
> > 2.1.1p2 sometime soon to stop this FAQ?  
> 
> Yes, it has been a lack of time which has prevented me so far.
> 
> It would be great if I could get some feedback on how 
> http://www.mindrot.org/misc/junk/openssh-SNAP-20000629.tar.gz
> works on Solaris, Irix 6.x, HPUX, AIX, Tru64 and SCO.

The snapshot compiles and runs fine on HP-UX 10.20:

There are a small number of warnings (that tend to be typical when
porting software to HP-UX), so I have appended the configuration
and build information.

X11 forwarding does not work, though:
debug: X11 forwarding disabled in user configuration file.

There is a new check used in session_x11_req:
        if (!no_port_forwarding_flag) {
                debug("X11 forwarding disabled in user configuration file.");
                return 0;
        }
1. I would think that the logic is inverted. If no_port_forwarding==1
   we don't want forwarding.
2. You probably meant the no_x11_forwarding_flag, as used and parsed in
   auth-options.c

I have attached my proposed patch.

Best regards,
	Lutz
-- 
Lutz Jaenicke                             Lutz.Jaenicke at aet.TU-Cottbus.DE
BTU Cottbus               http://www.aet.TU-Cottbus.DE/personen/jaenicke/
Lehrstuhl Allgemeine Elektrotechnik                  Tel. +49 355 69-4129
Universitaetsplatz 3-4, D-03044 Cottbus              Fax. +49 355 69-4153
-------------- next part --------------
--- session.c.orig	Thu Jun 29 10:01:02 2000
+++ session.c	Thu Jun 29 10:01:24 2000
@@ -1371,7 +1371,7 @@
 int
 session_x11_req(Session *s)
 {
-	if (!no_port_forwarding_flag) {
+	if (no_x11_forwarding_flag) {
 		debug("X11 forwarding disabled in user configuration file.");
 		return 0;
 	}
-------------- next part --------------
creating cache ./config.cache
checking for gcc... cc
checking whether the C compiler (cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -L/usr/local/lib -L/usr/lib/X11R6) works... yes
checking whether the C compiler (cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -L/usr/local/lib -L/usr/lib/X11R6) is a cross-compiler... no
checking whether we are using GNU C... no
checking whether cc accepts -g... yes
checking host system type... hppa2.0-hp-hpux10.20
checking how to run the C preprocessor... cc -E
checking for ranlib... ranlib
checking for a BSD compatible install... /opt/imake/bin/install -c
checking for ar... ar
checking for perl... /usr/contrib/bin/perl
checking for ent... no
checking for inline... no
checking for HPUX trusted system password database... no
checking for deflate in -lz... yes
checking for login in -lutil... no
checking for yp_match in -lnsl... no
checking for main in -lsocket... no
checking for bstring.h... no
checking for endian.h... no
checking for lastlog.h... no
checking for limits.h... yes
checking for login.h... no
checking for maillock.h... no
checking for netdb.h... yes
checking for netgroup.h... no
checking for netinet/in_systm.h... yes
checking for paths.h... no
checking for poll.h... yes
checking for pty.h... no
checking for shadow.h... no
checking for security/pam_appl.h... no
checking for sys/bitypes.h... no
checking for sys/bsdtty.h... yes
checking for sys/cdefs.h... no
checking for sys/poll.h... yes
checking for sys/select.h... no
checking for sys/stat.h... yes
checking for sys/stropts.h... yes
checking for sys/sysmacros.h... yes
checking for sys/time.h... yes
checking for sys/ttcompat.h... no
checking for stddef.h... yes
checking for time.h... yes
checking for util.h... no
checking for utmp.h... yes
checking for utmpx.h... yes
checking for arc4random... no
checking for atexit... yes
checking for b64_ntop... no
checking for bcopy... yes
checking for bindresvport_af... no
checking for clock... yes
checking for freeaddrinfo... no
checking for gai_strerror... no
checking for getaddrinfo... no
checking for getnameinfo... no
checking for getrusage... yes
checking for innetgr... yes
checking for md5_crypt... no
checking for memmove... yes
checking for mkdtemp... no
checking for on_exit... no
checking for openpty... no
checking for rresvport_af... no
checking for setenv... no
checking for seteuid... no
checking for setlogin... no
checking for setproctitle... no
checking for setreuid... yes
checking for snprintf... yes
checking for strlcat... no
checking for strlcpy... no
checking for vsnprintf... yes
checking for vhangup... yes
checking for _getpty... no
checking for __b64_ntop... no
checking for gettimeofday... yes
checking for time... yes
checking for login... no
checking for logout... no
checking for updwtmp... no
checking for logwtmp... no
checking for entutent... no
checking for getutent... yes
checking for getutid... yes
checking for getutline... yes
checking for pututline... yes
checking for setutent... yes
checking for utmpname... yes
checking for entutxent... no
checking for getutxent... yes
checking for getutxid... yes
checking for getutxline... yes
checking for pututxline... yes
checking for setutxent... yes
checking for utmpxname... no
checking for login... (cached) no
checking for login in -lbsd... no
checking for daemon... no
checking for daemon in -lbsd... no
checking for getpagesize... yes
checking for OpenSSL directory... /usr/local/ssl
checking for RSA support... yes
checking size of char... 1
checking size of short int... 2
checking size of int... 4
checking size of long int... 4
checking size of long long int... 8
checking for intXX_t types... yes
checking for u_intXX_t types... no
checking for uintXX_t types... yes
checking for socklen_t... no
checking for size_t... yes
checking for ssize_t... yes
checking for sa_family_t... no
checking for pid_t... yes
checking for mode_t... yes
checking for struct sockaddr_storage... no
checking for struct sockaddr_in6... no
checking for struct in6_addr... no
checking for struct addrinfo... no
checking for ut_host field in utmp.h... yes
checking for ut_host field in utmpx.h... yes
checking for syslen field in utmpx.h... no
checking for ut_pid field in utmp.h... yes
checking for ut_type field in utmp.h... yes
checking for ut_type field in utmpx.h... yes
checking for ut_tv field in utmp.h... no
checking for ut_id field in utmp.h... yes
checking for ut_addr field in utmp.h... yes
checking for ut_addr field in utmpx.h... yes
checking for ut_addr_v6 field in utmp.h... no
checking for ut_addr_v6 field in utmpx.h... no
checking for ut_exit field in utmp.h... yes
checking for ut_time field in utmp.h... yes
checking for ut_time field in utmpx.h... no
checking for ut_tv field in utmpx.h... yes
checking for ss_family field in struct sockaddr_storage... no
checking for __ss_family field in struct sockaddr_storage... no
checking if libc defines __progname... no
checking for /dev/ptmx... yes
checking for /dev/ptc... no
checking for /dev/urandom... no
checking for libwrap... yes
checking if the systems has expire shadow information... yes
checking if we need to convert IPv4 in IPv6-mapped addresses... no (default)
checking if your system defines LASTLOG_FILE... no
checking if your system defines _PATH_LASTLOG... no
configure: warning: ** Cannot find lastlog **
checking if your system defines UTMP_FILE... yes
checking if your system defines WTMP_FILE... yes
checking if your system defines UTMPX_FILE... yes
checking if your system defines WTMPX_FILE... no
updating cache ./config.cache
creating ./config.status
creating Makefile
creating ssh_prng_cmds
creating config.h

OpenSSH configured has been configured with the following options.
                 User binaries: /usr/local/openssh/bin
               System binaries: /usr/local/openssh/sbin
           Configuration files: /etc/ssh
               Askpass program: /usr/local/openssh/libexec/ssh/ssh-askpass
                  Manual pages: /usr/local/openssh/man/catX
                      PID file: /var/run1
      Random number collection: EGD (/var/run/egd-pool)
                Manpage format: cat
                   PAM support: no
            KerberosIV support: no
                   AFS support: no
                 S/KEY support: no
          TCP Wrappers support: yes
          MD5 password support: no
   IP address in $DISPLAY hack: no
      Use IPv4 by default hack: no
       Translate v4 in v6 hack: no

Compiler flags: -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include
Linker flags: -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl
Libraries: -lz  -lcrypto  -lwrap

-------------- next part --------------
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-base64.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-bindresvport.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-daemon.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-misc.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-mktemp.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-rresvport.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-setenv.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-snprintf.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-strlcat.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bsd-strlcpy.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c fake-getaddrinfo.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c fake-getnameinfo.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c next-posix.c
	ar rv libopenbsd-compat.a bsd-base64.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o fake-getaddrinfo.o fake-getnameinfo.o next-posix.o
ar: creating libopenbsd-compat.a
a - bsd-base64.o
a - bsd-bindresvport.o
a - bsd-daemon.o
a - bsd-misc.o
a - bsd-mktemp.o
a - bsd-rresvport.o
a - bsd-setenv.o
a - bsd-snprintf.o
a - bsd-strlcat.o
a - bsd-strlcpy.o
a - fake-getaddrinfo.o
a - fake-getnameinfo.o
a - next-posix.o
	ranlib libopenbsd-compat.a
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c atomicio.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c authfd.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c authfile.c
cc: "authfile.c", line 165: warning 604: Pointers are not assignment-compatible.
cc: "authfile.c", line 165: warning 563: Argument #4 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c aux.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c bufaux.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c buffer.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c canohost.c
cc: "canohost.c", line 41: warning 604: Pointers are not assignment-compatible.
cc: "canohost.c", line 41: warning 563: Argument #3 is not the correct type.
cc: "canohost.c", line 152: warning 604: Pointers are not assignment-compatible.
cc: "canohost.c", line 152: warning 563: Argument #5 is not the correct type.
cc: "canohost.c", line 221: warning 604: Pointers are not assignment-compatible.
cc: "canohost.c", line 221: warning 563: Argument #3 is not the correct type.
cc: "canohost.c", line 249: warning 604: Pointers are not assignment-compatible.
cc: "canohost.c", line 249: warning 563: Argument #3 is not the correct type.
cc: "canohost.c", line 254: warning 604: Pointers are not assignment-compatible.
cc: "canohost.c", line 254: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c channels.c
cc: "channels.c", line 516: warning 604: Pointers are not assignment-compatible.
cc: "channels.c", line 516: warning 563: Argument #3 is not the correct type.
cc: "channels.c", line 572: warning 604: Pointers are not assignment-compatible.
cc: "channels.c", line 572: warning 563: Argument #3 is not the correct type.
cc: "channels.c", line 628: warning 604: Pointers are not assignment-compatible.
cc: "channels.c", line 628: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c cipher.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c compat.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c compress.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c crc32.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c deattack.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c dispatch.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c dsa.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c fingerprint.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c hmac.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c hostfile.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c key.c
cc: "key.c", line 148: warning 604: Pointers are not assignment-compatible.
cc: "key.c", line 148: warning 563: Argument #3 is not the correct type.
cc: "key.c", line 269: warning 604: Pointers are not assignment-compatible.
cc: "key.c", line 269: warning 563: Argument #1 is not the correct type.
cc: "key.c", line 313: warning 604: Pointers are not assignment-compatible.
cc: "key.c", line 313: warning 563: Argument #3 is not the correct type.
cc: "key.c", line 315: warning 604: Pointers are not assignment-compatible.
cc: "key.c", line 315: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c kex.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c log.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c match.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c mpaux.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c nchan.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c packet.c
cc: "packet.c", line 173: warning 604: Pointers are not assignment-compatible.
cc: "packet.c", line 173: warning 563: Argument #3 is not the correct type.
cc: "packet.c", line 177: warning 604: Pointers are not assignment-compatible.
cc: "packet.c", line 177: warning 563: Argument #3 is not the correct type.
cc: "packet.c", line 195: warning 604: Pointers are not assignment-compatible.
cc: "packet.c", line 195: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c radix.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c entropy.c
cc: "entropy.c", line 161: warning 604: Pointers are not assignment-compatible.
cc: "entropy.c", line 161: warning 563: Argument #1 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c readpass.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c rsa.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c tildexpand.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c ttymodes.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c uidswap.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c uuencode.c
cc: "uuencode.c", line 41: warning 604: Pointers are not assignment-compatible.
cc: "uuencode.c", line 41: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c xmalloc.c
	ar rv libssh.a atomicio.o authfd.o authfile.o aux.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fingerprint.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o 
ar: creating libssh.a
a - atomicio.o
a - authfd.o
a - authfile.o
a - aux.o
a - bufaux.o
a - buffer.o
a - canohost.o
a - channels.o
a - cipher.o
a - compat.o
a - compress.o
a - crc32.o
a - deattack.o
a - dispatch.o
a - dsa.o
a - fingerprint.o
a - hmac.o
a - hostfile.o
a - key.o
a - kex.o
a - log.o
a - match.o
a - mpaux.o
a - nchan.o
a - packet.o
a - radix.o
a - entropy.o
a - readpass.o
a - rsa.o
a - tildexpand.o
a - ttymodes.o
a - uidswap.o
a - uuencode.o
a - xmalloc.o
	ranlib libssh.a
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c ssh.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c sshconnect.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c sshconnect1.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c sshconnect2.c
cc: "sshconnect2.c", line 323: warning 604: Pointers are not assignment-compatible.
cc: "sshconnect2.c", line 323: warning 563: Argument #3 is not the correct type.
cc: "sshconnect2.c", line 331: warning 604: Pointers are not assignment-compatible.
cc: "sshconnect2.c", line 331: warning 563: Argument #2 is not the correct type.
cc: "sshconnect2.c", line 346: warning 604: Pointers are not assignment-compatible.
cc: "sshconnect2.c", line 346: warning 563: Argument #4 is not the correct type.
cc: "sshconnect2.c", line 353: warning 604: Pointers are not assignment-compatible.
cc: "sshconnect2.c", line 353: warning 563: Argument #2 is not the correct type.
cc: "sshconnect2.c", line 406: warning 604: Pointers are not assignment-compatible.
cc: "sshconnect2.c", line 406: warning 563: Argument #1 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c log-client.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c readconf.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c clientloop.c
	cc -o ssh ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c sshd.c
cc: "auth.h", line 10: warning 558: Empty declaration.
cc: "sshd.c", line 781: warning 604: Pointers are not assignment-compatible.
cc: "sshd.c", line 781: warning 563: Argument #3 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth.c
cc: "auth.h", line 10: warning 558: Empty declaration.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth1.c
cc: "auth.h", line 10: warning 558: Empty declaration.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth2.c
cc: "auth.h", line 10: warning 558: Empty declaration.
cc: "auth2.c", line 331: warning 604: Pointers are not assignment-compatible.
cc: "auth2.c", line 331: warning 563: Argument #2 is not the correct type.
cc: "auth2.c", line 349: warning 604: Pointers are not assignment-compatible.
cc: "auth2.c", line 349: warning 563: Argument #2 is not the correct type.
cc: "auth2.c", line 349: warning 604: Pointers are not assignment-compatible.
cc: "auth2.c", line 349: warning 563: Argument #4 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-rhosts.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-options.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-krb4.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-pam.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-passwd.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-rsa.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c auth-rh-rsa.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c pty.c
cc: "pty.c", line 239: warning 604: Pointers are not assignment-compatible.
cc: "pty.c", line 241: warning 604: Pointers are not assignment-compatible.
cc: "pty.c", line 241: warning 563: Argument #2 is not the correct type.
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c log-server.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c login.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c loginrec.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c servconf.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c serverloop.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c md5crypt.c
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c session.c
cc: "auth.h", line 10: warning 558: Empty declaration.
cc: "session.c", line 412: warning 611: Qualifiers are not assignment-compatible.
cc: "session.c", line 412: warning 563: Argument #1 is not the correct type.
cc: "session.c", line 545: warning 611: Qualifiers are not assignment-compatible.
cc: "session.c", line 545: warning 563: Argument #1 is not the correct type.
cc: "session.c", line 577: warning 604: Pointers are not assignment-compatible.
cc: "session.c", line 577: warning 563: Argument #3 is not the correct type.
	cc -o sshd sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c ssh-add.c
	cc -o ssh-add ssh-add.o log-client.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap 
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c ssh-keygen.c
cc: "ssh-keygen.c", line 129: warning 604: Pointers are not assignment-compatible.
cc: "ssh-keygen.c", line 129: warning 563: Argument #3 is not the correct type.
cc: "ssh-keygen.c", line 219: warning 604: Pointers are not assignment-compatible.
cc: "ssh-keygen.c", line 219: warning 563: Argument #3 is not the correct type.
	cc -o ssh-keygen ssh-keygen.o log-client.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap 
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c ssh-agent.c
cc: "ssh-agent.c", line 426: warning 604: Pointers are not assignment-compatible.
cc: "ssh-agent.c", line 426: warning 563: Argument #3 is not the correct type.
	cc -o ssh-agent ssh-agent.o log-client.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap 
	cc -Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6 -Ae -D_HPUX_SOURCE -I/usr/local/ssl/include -DETCDIR=\"/etc/ssh\" -DSSH_PROGRAM=\"/usr/local/openssh/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/openssh/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c scp.c
	cc -o scp scp.o -L. -L/usr/local/lib -L/usr/lib/X11R6 -L/usr/local/ssl/lib -L/usr/local/ssl -lssh -lopenbsd-compat -lz  -lcrypto  -lwrap 
	/usr/contrib/bin/perl ./fixpaths -D/etc/ssh_config=/etc/ssh/ssh_config -D/etc/known_hosts=/etc/ssh/ssh_known_hosts -D/etc/sshd_config=/etc/ssh/sshd_config -D/etc/shosts.equiv=/etc/ssh/shosts.equiv -D/etc/ssh_host_key=/etc/ssh/ssh_host_key -D/var/run/sshd.pid=/var/run1/sshd.pid ./sshd_config
	/usr/contrib/bin/perl ./fixpaths -D/etc/ssh_config=/etc/ssh/ssh_config -D/etc/known_hosts=/etc/ssh/ssh_known_hosts -D/etc/sshd_config=/etc/ssh/sshd_config -D/etc/shosts.equiv=/etc/ssh/shosts.equiv -D/etc/ssh_host_key=/etc/ssh/ssh_host_key -D/var/run/sshd.pid=/var/run1/sshd.pid ./ssh_config
-------------- next part --------------
CC=cc CFLAGS="-Ae +O2 +DAportable -I/usr/local/include -I/usr/include/X11R6" LDFLAGS="-L/usr/local/lib -L/usr/lib/X11R6" ./configure --prefix=/usr/local/openssh --sysconfdir=/etc/ssh --with-rsh=/usr/local/lib/rsh/remsh --with-tcp-wrappers --with-pid-dir=/var/run1 --with-xauth=/usr/bin/X11/xauth --with-ssl-dir=/usr/local/ssl --with-egd-pool=/var/run/egd-pool


More information about the openssh-unix-dev mailing list