mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-19 23:36:54 +00:00
- Prevent typedefs from being compiled more than once. Report from
Marc G. Fournier <marc.fournier@acadiau.ca>
This commit is contained in:
parent
03783f0477
commit
b2532b3be4
@ -6,6 +6,8 @@
|
|||||||
Fournier <marc.fournier@acadiau.ca>
|
Fournier <marc.fournier@acadiau.ca>
|
||||||
- Fix occasional crash on LinuxPPC. Patch from Franz Sirl
|
- Fix occasional crash on LinuxPPC. Patch from Franz Sirl
|
||||||
<Franz.Sirl-kernel@lauterbach.com>
|
<Franz.Sirl-kernel@lauterbach.com>
|
||||||
|
- Prevent typedefs from being compiled more than once. Report from
|
||||||
|
Marc G. Fournier <marc.fournier@acadiau.ca>
|
||||||
|
|
||||||
19991230
|
19991230
|
||||||
- OpenBSD CVS updates:
|
- OpenBSD CVS updates:
|
||||||
|
@ -61,6 +61,7 @@ typedef long int int64_t;
|
|||||||
# else
|
# else
|
||||||
# if (SIZEOF_LONG_LONG_INT == 8)
|
# if (SIZEOF_LONG_LONG_INT == 8)
|
||||||
typedef long long int int64_t;
|
typedef long long int int64_t;
|
||||||
|
# define HAVE_INTXX_T
|
||||||
# else
|
# else
|
||||||
# error "64 bit int type not found."
|
# error "64 bit int type not found."
|
||||||
# endif
|
# endif
|
||||||
@ -89,6 +90,7 @@ typedef unsigned long int u_int64_t;
|
|||||||
# else
|
# else
|
||||||
# if (SIZEOF_LONG_LONG_INT == 8)
|
# if (SIZEOF_LONG_LONG_INT == 8)
|
||||||
typedef unsigned long long int u_int64_t;
|
typedef unsigned long long int u_int64_t;
|
||||||
|
# define HAVE_U_INTXX_T
|
||||||
# else
|
# else
|
||||||
# error "64 bit int type not found."
|
# error "64 bit int type not found."
|
||||||
# endif
|
# endif
|
||||||
@ -100,14 +102,17 @@ typedef unsigned long long int u_int64_t;
|
|||||||
/* being defined by the above */
|
/* being defined by the above */
|
||||||
#ifndef HAVE_QUAD_T
|
#ifndef HAVE_QUAD_T
|
||||||
typedef int64_t quad_t;
|
typedef int64_t quad_t;
|
||||||
|
# define HAVE_QUAD_T
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAVE_SOCKLEN_T
|
#ifndef HAVE_SOCKLEN_T
|
||||||
typedef unsigned int socklen_t;
|
typedef unsigned int socklen_t;
|
||||||
|
# define HAVE_SOCKLEN_T
|
||||||
#endif /* HAVE_SOCKLEN_T */
|
#endif /* HAVE_SOCKLEN_T */
|
||||||
|
|
||||||
#ifndef HAVE_SIZE_T
|
#ifndef HAVE_SIZE_T
|
||||||
typedef unsigned int size_t;
|
typedef unsigned int size_t;
|
||||||
|
# define HAVE_SIZE_T
|
||||||
#endif /* HAVE_SIZE_T */
|
#endif /* HAVE_SIZE_T */
|
||||||
|
|
||||||
/* Paths */
|
/* Paths */
|
||||||
|
Loading…
Reference in New Issue
Block a user