mirror of git://anongit.mindrot.org/openssh.git
- Remove test for quad_t. No longer needed.
This commit is contained in:
parent
e7f626c8f1
commit
aa7b64d98a
|
@ -12,6 +12,7 @@
|
|||
<iretd@bigfoot.com>
|
||||
- Really fix broken default path. Fix from Jim Knoble
|
||||
<jmknoble@pobox.com>
|
||||
- Remove test for quad_t. No longer needed.
|
||||
|
||||
19991230
|
||||
- OpenBSD CVS updates:
|
||||
|
|
|
@ -117,7 +117,6 @@
|
|||
#undef MAIL_DIRECTORY
|
||||
|
||||
/* Data types */
|
||||
#undef HAVE_QUAD_T
|
||||
#undef HAVE_INTXX_T
|
||||
#undef HAVE_U_INTXX_T
|
||||
#undef HAVE_UINTXX_T
|
||||
|
|
11
configure.in
11
configure.in
|
@ -138,17 +138,6 @@ AC_CHECK_SIZEOF(long int, 4)
|
|||
AC_CHECK_SIZEOF(long long int, 8)
|
||||
|
||||
dnl More checks for data types
|
||||
AC_MSG_CHECKING([for quad_t])
|
||||
AC_TRY_COMPILE(
|
||||
[#include <sys/types.h>],
|
||||
[quad_t a; a = 1235;],
|
||||
[
|
||||
AC_DEFINE(HAVE_QUAD_T)
|
||||
AC_MSG_RESULT(yes)
|
||||
],
|
||||
[AC_MSG_RESULT(no)]
|
||||
)
|
||||
|
||||
AC_MSG_CHECKING([for intXX_t types])
|
||||
AC_TRY_COMPILE(
|
||||
[#include <sys/types.h>],
|
||||
|
|
|
@ -98,13 +98,6 @@ typedef unsigned long long int u_int64_t;
|
|||
# endif
|
||||
#endif
|
||||
|
||||
/* If quad_t is not supplied, then supply it now. We can rely on int64_t */
|
||||
/* being defined by the above */
|
||||
#ifndef HAVE_QUAD_T
|
||||
typedef int64_t quad_t;
|
||||
# define HAVE_QUAD_T
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_SOCKLEN_T
|
||||
typedef unsigned int socklen_t;
|
||||
# define HAVE_SOCKLEN_T
|
||||
|
|
Loading…
Reference in New Issue