Needed to do the following to get sftp-server to compile on HP-UX 11. Not sure what the right "portable" fix might be. Also, should sftp-server really be installed in prefix/libexec/ssh/ or just prefix/libexec/? --- defines.h~ Tue Sep 5 07:13:07 2000 +++ defines.h Tue Sep 5 14:36:24 2000 @@ -143,9 +143,7 @@ typedef uint8_t u_int8_t; typedef uint16_t u_int16_t; typedef uint32_t u_int32_t; -/* typedef uint64_t u_int64_t; -*/ # define HAVE_U_INTXX_T 1 # else # if (SIZEOF_CHAR == 1)
On Tue, 5 Sep 2000, Kevin Steves wrote:> Needed to do the following to get sftp-server to compile on HP-UX 11. > Not sure what the right "portable" fix might be. Also, should > sftp-server really be installed in prefix/libexec/ssh/ or just > prefix/libexec/?The fix is correct. You are right about libexec. The new makefile uses whatever you specify as libexecdir, i.e. $(prefix)/libexec by default. -d> --- defines.h~ Tue Sep 5 07:13:07 2000 > +++ defines.h Tue Sep 5 14:36:24 2000 > @@ -143,9 +143,7 @@ > typedef uint8_t u_int8_t; > typedef uint16_t u_int16_t; > typedef uint32_t u_int32_t; > -/* > typedef uint64_t u_int64_t; > -*/ > # define HAVE_U_INTXX_T 1 > # else > # if (SIZEOF_CHAR == 1) > > >-- | ``The power of accurate observation is | Damien Miller <djm at mindrot.org> | commonly called cynicism by those who | @Work <djm at ibs.com.au> | have not got it'' - George Bernard Shaw | http://www.mindrot.org
On Tue, 5 Sep 2000, Kevin Steves wrote:> Needed to do the following to get sftp-server to compile on HP-UX 11. > Not sure what the right "portable" fix might be. Also, should > sftp-server really be installed in prefix/libexec/ssh/ or just > prefix/libexec/?Quite right. I have changed the behaviour of the makefile so that it properly honours the $(libexec) path rather than appending junk to it. To get the old bechavour back, use --libexecdir=/usr/lib/libexec/ssh or similar. -d -- | ``The power of accurate observation is | Damien Miller <djm at mindrot.org> | commonly called cynicism by those who | @Work <djm at ibs.com.au> | have not got it'' - George Bernard Shaw | http://www.mindrot.org