Displaying 20 results from an estimated 36 matches for "u_intxx_t".
1999 Nov 19
0
Autoconf and u_intXX_t types
I am having a bad day with autoconf. It seems that
AC_CHECK_SIZEOF(uint32_t) won't work, because the macro does not
include sys/types.h before making the test.
Can anyone think of any way to test for the existance of these types
in autoconf? a #ifdef isn't good enough as the type may have been
created using typedef rather than #define.
Damien
--
| "Bombay is 250ms from New York in
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
2000 Nov 17
8
To Do list...
...ntation/ directory?
Clean up configure/makefiles:
- Clean up configure.in - There are a few double #defined variables
left to do. HAVE_LOGIN is one of them. Consider NOT looking for information
in wtmpx or utmpx or any of that stuff if it's not detected from the start
- Replace the whole u_intXX_t evilness in acconfig.h with something better???
- Move all "openbsd-compat" files to it's own directory. Consider doing the
same with libssh. I don't think we need to split ssh, sshd, etc into their
own directory.
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 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2000 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2000 Jun 14
1
OpenSSH 2.1.1p1 on SCO Unixware 7.1.0
...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 intXX_t and u_intXX_t types in sys/bitypes.h... yes
checking for uintXX_t types... yes
checking for socklen_t... no
checking for size_t... yes
checking for ssize_t... yes
checking for struct sockaddr_storage... no
checking for struct sockaddr_in6... yes
checking for struct...
1999 Dec 21
0
Problem with UTMP recording
...ne 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
/...
1999 Nov 23
2
Fixes for Solaris
...retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- acconfig.h 1999/11/22 03:27:24 1.16
+++ acconfig.h 1999/11/23 00:24:32 1.17
@@ -68,17 +68,25 @@
/* ******************* Shouldn't need to edit below this line ************** */
-# include <sys/types.h> /* For u_intXX_t */
-# include <sys/socket.h> /* For SHUT_XXXX */
+#include <sys/types.h> /* For u_intXX_t */
+#include <sys/socket.h> /* For SHUT_XXXX */
#ifdef HAVE_PATHS_H
# include <paths.h> /* For _PATH_XXX */
#endif
+#ifdef HAVE_UTMP_H
+# include <utmp.h> /* For _PATH_XXX...
2000 May 26
4
openssh-2.1.0p2 ans Solaris 8
I have some troubles with subj and proper utmpx/wtmpx functionality.
After successfull ssh connect to Solaris 8 box, I run
#w
11:59am up 13:45, 1 user, load average: 0.00, 0.01, 0.02
User tty login@ idle JCPU PCPU what
root console 11:43am 9 bash
#
Record about my pts/1 login is absent. Next command I run from Solaris 8
console
2001 Mar 01
0
Ack...OpenSSH no longer compatible with SSH 1.2.26 clients?
...ytes on input.
Thanks,
Brian Kuschak
On Tue, 4 Jan 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...
2001 Aug 21
0
[patch] 64 bit types in bitypes.h
...have_u_int64_t="no" ]
+ )
+ if 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(
2002 Jun 05
0
Build problems with 3.2.3p1 under Tru64 UNIX 4.0D
...es.h.orig Tue Jun 4 18:38:48 2002
+++ includes.h Tue Jun 4 18:39:02 2002
@@ -115,6 +115,9 @@
#ifdef HAVE_SYS_UN_H
# include <sys/un.h> /* For sockaddr_un */
#endif
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
#ifdef HAVE_SYS_BITYPES_H
# include <sys/bitypes.h> /* For u_intXX_t */
#endif
2000 Jan 18
1
Error when compiling for Solaris7
...(cached) no
checking for daemon... (cached) no
checking for daemon in -lbsd... (cached) no
checking size of short int... (cached) 2
checking size of int... (cached) 4
checking size of long int... (cached) 4
checking size of long long int... (cached) 8
checking for intXX_t types... yes
checking for u_intXX_t types... no
checking for uintXX_t types... yes
checking for socklen_t... yes
checking for size_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 dlopen in -ldl... (cached) yes...
2001 Oct 26
2
problems building on solaris 2.6
...int... 2
checking for int... yes
checking size of int... 4
checking for long int... yes
checking size of long int... 4
checking for long long int... yes
checking size of long long int... 8
checking for u_int type... yes
checking for intXX_t types... yes
checking for int64_t type... yes
checking for u_intXX_t types... no
checking for u_intXX_t types in sys/socket.h... no
checking for u_int64_t types... no
checking for uintXX_t types... yes
checking for uintXX_t types in stdint.h... no
checking for u_char... yes
checking for socklen_t... no
checking for socklen_t equivalent... int
checking for size_t......
1999 Dec 09
0
xauth location in openssh-1.2pre17
...1999
+++ config.h.in Thu Dec 9 13:11:24 1999
@@ -175,6 +175,9 @@
/* Define if you have the z library (-lz). */
#undef HAVE_LIBZ
+/* Path to xauth */
+#undef XAUTH_PATH
+
/* ******************* Shouldn't need to edit below this line
************** */
#include <sys/types.h> /* For u_intXX_t */
--- acconfig.h.orig Thu Dec 9 14:17:11 1999
+++ acconfig.h Thu Dec 9 12:46:14 1999
@@ -73,6 +73,9 @@
/* Define if you have /dev/ptc */
#undef HAVE_DEV_PTS_AND_PTC
+/* Path to xauth */
+#undef XAUTH_PATH
+
@BOTTOM@
/* ******************* Shouldn't need to edit below this line...
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
2000 Jan 16
0
ANNOUNCE: 1.2.1pre26
...th configure directive and explicit test for
/usr/openwin/bin/xauth for Solaris systems. Report from Anders
Nordby <anders at fix.no>
- Fix incorrect detection of /dev/ptmx on Linux systems that lack
openpty. Report from John Seifarth <john at waw.be>
- Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
sys/types.h. Fixes problems on SCO, report from Gary E. Miller
<gem at rellim.com>
- Use __snprintf and __vnsprintf if they are found where snprintf and
vnsprintf are lacking. Suggested by Ben Taylor <bent at shell.clark.net>
and others....
2000 Jan 16
0
ANNOUNCE: 1.2.1pre26
...th configure directive and explicit test for
/usr/openwin/bin/xauth for Solaris systems. Report from Anders
Nordby <anders at fix.no>
- Fix incorrect detection of /dev/ptmx on Linux systems that lack
openpty. Report from John Seifarth <john at waw.be>
- Look for intXX_t and u_intXX_t in sys/bitypes.h if they are not in
sys/types.h. Fixes problems on SCO, report from Gary E. Miller
<gem at rellim.com>
- Use __snprintf and __vnsprintf if they are found where snprintf and
vnsprintf are lacking. Suggested by Ben Taylor <bent at shell.clark.net>
and others....
2001 Apr 10
2
Compiling openssh 2.5.p1 on unixware 7.0.1
...1
checking size of short int... (cached) 2
checking size of int... (cached) 4
checking size of long int... (cached) 4
checking size of long long int... (cached) 8
checking for u_int type... (cached) yes
checking for intXX_t types... (cached) no
checking for int64_t type... (cached) no
checking for u_intXX_t types... (cached) no
checking for u_int64_t types... (cached) no
checking for intXX_t and u_intXX_t types in sys/bitypes.h... yes
checking for uintXX_t types... (cached) no
checking for socklen_t... (cached) no
checking for size_t... (cached) yes
checking for ssize_t... (cached) yes
checking for cl...