search for: have_u_intxx_t

Displaying 20 results from an estimated 21 matches for "have_u_intxx_t".

2000 Jan 07
2
problems with compiling on SPARC solaris 2.7
ssh won't compile on this platform log: gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c atomicio.c -o atomicio.o In file included from config.h:294, from bsd-misc.h:39, from includes.h:91,
1999 Dec 30
1
more problems with solaris 7?
configure appears to be setting things right: dragon:/var/src/openssh-1.2.1pre23> grep INTXX config.h #define HAVE_INTXX_T 1 /* #undef HAVE_U_INTXX_T */ #define HAVE_UINTXX_T 1 Marc G. Fournier marc.fournier at acadiau.ca Senior Systems Administrator Acadia University "These are my opinions, which are not necessarily shared by my employer" ---------- Forwarded message --...
2000 Jan 20
1
Patch to make openssh-1.2.1pre27 compile on a sparc solaris7 syst em
Hack: diff -c defines.h.orig defines.h *** defines.h.orig Thu Jan 20 18:07:40 2000 --- defines.h Thu Jan 20 18:08:05 2000 *************** *** 78,83 **** --- 78,84 ---- /* If sys/types.h does not supply u_intXX_t, supply them ourselves */ #ifndef HAVE_U_INTXX_T # ifdef HAVE_UINTXX_T + typedef uint8_t u_int8_t; typedef uint16_t u_int16_t; typedef uint32_t u_int32_t; typedef uint64_t u_int64_t; Hack: uname -a SunOS sol 5.7 Generic_106541-08 sun4u sparc SUNW,Ultra-250 -- JF
2000 Sep 05
2
sftp-server and latest snapshot
...eally 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)
2001 Mar 01
0
Ack...OpenSSH no longer compatible with SSH 1.2.26 clients?
...2000, Damien Miller wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Mon, 3 Jan 2000, Marc G. Fournier wrote: > > > > > If you are referring to: > > > > /* If sys/types.h does not supply u_intXX_t, supply them ourselves */ > > #ifndef HAVE_U_INTXX_T > > # ifdef HAVE_UINTXX_T > > # define u_int16_t uint16_t; > > # define u_int32_t uint32_t; > > # define u_int64_t uint64_t; > > # define HAVE_U_INTXX_T 1 > > # else > > The lines shouldn't have a semicolon at the end. D'oh ... Same problem t...
2000 Jan 17
1
pre27 compilation fails on Sol7 box
Something strange happens when I compile the pre27 SSH: ocal/ssh//include -DETCDIR=\"/usr/local/ssh//etc\" \ -DSSH_PROGRAM=\"/usr/local/ssh//bin/ssh\" \ -DSSH_ASKPASS_DEFAULT=\"/usr/local/ssh//libexec/ssh/ssh-askpass\" \ -DHAVE_CONFIG_H -c atomicio.c In file included from includes.h:106, from atomicio.c:26: fake-socket.h:30: parse error before
1999 Nov 19
1
[solaris 7 patch] resubmit and extended ...
Okay, everything as the first large one I sent today, with a few extra mods. _PATH_MAILDIR is only used in sshd.c, that I can see, so moved the #ifdef from config.h.in to there. several files had __progname defined in the middle of the code, as well as at the top of the code, so cleaned those out. all the fixes for u_int32_t -> uint32_t and u_int16_t -> uint16_t, plus added appropriate
1999 Dec 21
0
Problem with UTMP recording
...#define HAVE_DAEMON 1 /* Define if you want to allow MD5 passwords */ /* #undef HAVE_MD5_PASSWORDS */ /* Define if you have an old version of PAM which takes only one argument */ /* to pam_strerror */ #define HAVE_OLD_PAM 1 /* Data types */ /* #undef HAVE_QUAD_T */ #define HAVE_INTXX_T 1 #define HAVE_U_INTXX_T 1 #define HAVE_UINTXX_T 1 /* Define if you have /dev/ptmx */ /* #undef HAVE_DEV_PTMX */ /* Define if you have /dev/ptc */ /* #undef HAVE_DEV_PTS_AND_PTC */ /* Path to xauth binary */ #define XAUTH_PATH "/usr/X11R6/bin/xauth" /* The number of bytes in a int. */ #define SIZEOF_INT 4 /...
2000 Jan 07
0
troubles with ssh daemon
i've successfully compiled openssh on Sparc solaris2.7 (after #define HAVE_U_INTXX_T 1) and run sshd when i try to connect to SUN i have such error: "Disconnecting: Corrupted check bytes on input." - from linux (openssh client) and "decrypting packet: received/computed checksum error" from WinNT client (Secure CRT) but ssh localhost (on SUN) work just fine i...
2000 Jan 22
0
Solaris 2.5.1 patch
...)+((y)-1))/(y))*(y)) #endif static int pgsize; diff -ur old/openssh-1.2.1pre27/defines.h openssh-1.2.1pre27/defines.h --- old/openssh-1.2.1pre27/defines.h Sun Jan 16 16:59:41 2000 +++ openssh-1.2.1pre27/defines.h Sat Jan 22 10:17:02 2000 @@ -83,6 +83,7 @@ typedef uint64_t u_int64_t; # define HAVE_U_INTXX_T 1 # else +typedef unsigned char u_int8_t; # if (SIZEOF_SHORT_INT == 2) typedef unsigned short int u_int16_t; # else diff -ur old/openssh-1.2.1pre27/packet.c openssh-1.2.1pre27/packet.c --- old/openssh-1.2.1pre27/packet.c Thu Jan 13 22:45:50 2000 +++ openssh-1.2.1pre27/packet.c Sat Jan 22 10:3...
2001 Aug 21
0
[patch] 64 bit types in bitypes.h
...test "x$ac_cv_have_u_int64_t" = "xyes" ; then + AC_DEFINE(HAVE_U_INT64_T) + AC_MSG_RESULT([yes]) + have_u_int64_t=1 + else + AC_MSG_RESULT([no]) + fi +fi + +# should also explicitly check for inttypes.h, and the various intXX_T +# and u_intXX_t in there. + if test -z "$have_u_intxx_t" ; then AC_CACHE_CHECK([for uintXX_t types], ac_cv_have_uintxx_t, [ AC_TRY_COMPILE(
2000 Jan 07
2
ANNOUNCE: openssh-1.2.1pre25
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 1.2.1pre25 is out. Please use a mirror: http://violet.ibs.com.au/openssh/files/MIRRORS.html The following mirrors already have it: ftp://ftp.localhost.ca/pub/openssh/files/ ftp://thermo.stat.ncsu.edu/pub/openssh/files/ http://www.firedrake.org/openssh/files/ Changes: - - "Corrupted check bytes on input" when using triple DES has been
2000 Jan 07
2
ANNOUNCE: openssh-1.2.1pre25
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 1.2.1pre25 is out. Please use a mirror: http://violet.ibs.com.au/openssh/files/MIRRORS.html The following mirrors already have it: ftp://ftp.localhost.ca/pub/openssh/files/ ftp://thermo.stat.ncsu.edu/pub/openssh/files/ http://www.firedrake.org/openssh/files/ Changes: - - "Corrupted check bytes on input" when using triple DES has been
2000 Jan 05
3
openssh-1.2.1pre24 on SCO
Yo All! Sorry if this is obvious but I am new to openssh. I have used the original ssh for a while and am familiar with it (and it's restrictive license). I am trying to port openssh-1.2.1pre24 on to SCO UnixWare 7.1.0. I will post the small patches when it is really running. Two problems, SCO has no /dev/random so I installed egd-0.6. It usually works but sometimes dies. I have sent
1999 Dec 30
3
ANNOUNCE: openssh-1.2.1pre24
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre24 is being uploaded to: http://violet.ibs.com.au/openssh/files/ This release fixes the silly bugs (almost all autoconf related) that crept into yesterday's release. 19991231 - Fix password support on systems with a mixture of shadowed and non-shadowed passwords (e.g. NIS). Report and fix from HARUYAMA Seigo
1999 Dec 30
3
ANNOUNCE: openssh-1.2.1pre24
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre24 is being uploaded to: http://violet.ibs.com.au/openssh/files/ This release fixes the silly bugs (almost all autoconf related) that crept into yesterday's release. 19991231 - Fix password support on systems with a mixture of shadowed and non-shadowed passwords (e.g. NIS). Report and fix from HARUYAMA Seigo
2001 Jan 23
11
cc & no 64bit int patches
...-# define HAVE_INTXX_T 1 +# define HAVE_INT64_T 1 # endif # endif #endif #ifndef HAVE_U_INT64_T # if (SIZEOF_LONG_INT == 8) typedef unsigned long int u_int64_t; +# define HAVE_U_INT64_T 1 # else # if (SIZEOF_LONG_LONG_INT == 8) typedef unsigned long long int u_int64_t; -# define HAVE_U_INTXX_T 1 +# define HAVE_U_INT64_T 1 # endif # endif #endif
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...X11R6/bin/xauth" /* #undef HAVE_MD5_PASSWORDS */ /* #undef DISABLE_SHADOW */ #define HAS_SHADOW_EXPIRE 1 /* #undef HAVE_OSF_SIA */ /* #undef HAVE_GETPWANAM */ /* #undef HAVE_OLD_PAM */ /* #undef PAM_SUN_CODEBASE */ /* #undef MAIL_DIRECTORY */ #define HAVE_U_INT 1 #define HAVE_INTXX_T 1 #define HAVE_U_INTXX_T 1 #define HAVE_UINTXX_T 1 #define HAVE_INT64_T 1 #define HAVE_U_INT64_T 1 #define HAVE_U_CHAR 1 #define HAVE_SIZE_T 1 #define HAVE_SSIZE_T 1 #define HAVE_CLOCK_T 1 #define HAVE_MODE_T 1 #define HAVE_PID_T 1 #define HAVE_SA_FAMILY_T 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_STRUCT_ADDRIN...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...s ac_cv_have_ss_family_in_struct_ss=yes ac_cv_have_ssize_t=yes ac_cv_have_struct_addrinfo=no ac_cv_have_struct_in6_addr=no ac_cv_have_struct_sockaddr_in6=no ac_cv_have_struct_sockaddr_storage=yes ac_cv_have_struct_timeval=yes ac_cv_have_u_char=yes ac_cv_have_u_int=yes ac_cv_have_u_int64_t=yes ac_cv_have_u_intxx_t=yes ac_cv_have_va_copy=yes ac_cv_header_bstring_h=no ac_cv_header_crypt_h=yes ac_cv_header_dirent_h=yes ac_cv_header_endian_h=yes ac_cv_header_features_h=yes ac_cv_header_floatingpoint_h=no ac_cv_header_getopt_h=yes ac_cv_header_glob_h=yes ac_cv_header_ia_h=no ac_cv_header_iaf_h=no ac_cv_header_las...
2000 Aug 26
0
New chroot patch, for 2.1.1p4
...i echo $ac_n "checking for u_intXX_t types""... $ac_c" 1>&6 -echo "configure:3150: checking for u_intXX_t types" >&5 +echo "configure:3152: checking for u_intXX_t types" >&5 if eval "test \"`echo '$''{'ac_cv_have_u_intxx_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3156 "configure" +#line 3158 "configure" #include "confdefs.h" #include <sys/types.h> int main() { u_int8...