Displaying 7 results from an estimated 7 matches for "sizeof_long_int".
1999 Dec 21
0
Problem with UTMP recording
.../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
/* The number of bytes in a long int. */
#define SIZEOF_LONG_INT 4
/* The number of bytes in a long long int. */
#define SIZEOF_LONG_LONG_INT 8
/* The number of bytes in a short int. */
#define SIZEOF_SHORT_INT 2
/* Define if you have the _getpty function. */
/* #undef HAVE__GETPTY */
/* Define if you have the arc4random function. */
/* #undef HAVE_ARC4R...
2001 Jan 23
11
cc & no 64bit int patches
..._T
void buffer_put_int64(Buffer *buffer, u_int64_t value);
+#endif
/* Returns a character from the buffer (0 - 255). */
int buffer_get_char(Buffer * buffer);
--- defines.h.old Mon Jan 22 18:40:32 2001
+++ defines.h Mon Jan 22 19:45:41 2001
@@ -171,20 +171,22 @@
#ifndef HAVE_INT64_T
# if (SIZEOF_LONG_INT == 8)
typedef long int int64_t;
+# define HAVE_INT64_T 1
# else
# if (SIZEOF_LONG_LONG_INT == 8)
typedef long long int int64_t;
-# 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_i...
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
2003 Dec 30
8
[Bug 651] SCO 3.2v4.2 and OpenSSH 3.7.1p1 --> connection hangs and does not close (ssh2 only)
http://bugzilla.mindrot.org/show_bug.cgi?id=651
------- Additional Comments From vikashb at comparexafrica.co.za 2003-12-30 16:39 -------
tried openssh-SNAP-20031223
does not compile:
(cd openbsd-compat && make)
gcc -g -O2 -Wall -Wpointer-arith -Wno-uninitialized -I. -I.. -I. -I./..
-I/usr/local/ssl/include -Dftruncate=chsize -I/usr/local/include
-DHAVE_CONFIG_H -c
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...h-unix-dev at mindrot.org"
#define PACKAGE_NAME "OpenSSH"
#define PACKAGE_STRING "OpenSSH Portable"
#define PACKAGE_TARNAME "openssh"
#define PACKAGE_VERSION "Portable"
/* #undef PASSWD_NEEDS_USERNAME */
#define SIZEOF_CHAR 1
#define SIZEOF_INT 4
#define SIZEOF_LONG_INT 4
#define SIZEOF_LONG_LONG_INT 8
#define SIZEOF_SHORT_INT 2
/* #undef SSH_AUDIT_EVENTS */
#define STDC_HEADERS 1
/* #undef UNIXWARE_LONG_PASSWORDS */
/* #undef USE_BSM_AUDIT */
#define USE_BTMP 1
/* #undef USE_LIBEDIT */
/* #undef WORDS_BIGENDIAN */
#define _FILE_OFFSET_BITS 64
/* #undef _LARGE_FIL...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...-E'
ac_cv_search_basename='none required'
ac_cv_search_dn_expand='none required'
ac_cv_search_getrrsetbyname=no
ac_cv_search_login='none required'
ac_cv_search_nanosleep='none required'
ac_cv_search_res_query=-lresolv
ac_cv_sizeof_char=1
ac_cv_sizeof_int=4
ac_cv_sizeof_long_int=4
ac_cv_sizeof_long_long_int=8
ac_cv_sizeof_short_int=2
ac_cv_sys_file_offset_bits=no
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_type_char=yes
ac_cv_type_in_addr_t=yes
ac_cv_type_int=yes
ac_cv_type_long_double=yes
ac_cv_type_long_int=yes
ac_cv_type_long_long=yes
ac_cv_type_long_long_i...
2001 Jul 16
0
No subject
...lz -lsecurity -ldb -lm -laud -lutil -lcrypto 1>&5
configure: failed program was:
#line 5577 "configure"
#include "confdefs.h"
#include <stdio.h>
#include <string.h>
#ifdef HAVE_SNPRINTF
main()
{
char buf[50];
char expected_out[50];
int mazsize = 50 ;
#if (SIZEOF_LONG_INT == 8)
long int num = 0x7fffffffffffffff;
#else
long long num = 0x7fffffffffffffff;
#endif
strcpy(expected_out, "9223372036854775807");
snprintf(buf, mazsize, "%lld", num);
if(strcmp(buf, expected_out) != 0)
exit(1);
exit(0);
}
#else
main() { exit(0); }
#endif
c...