Displaying 4 results from an estimated 4 matches for "ac_cv_have_int64_t".
2001 Aug 21
0
[patch] 64 bit types in bitypes.h
...s/bitypes.h, check it too.
+if (test -z "$have_int64_t" && \
+ test "x$ac_cv_header_sys_bitypes_h" = "xyes")
+then
+ AC_MSG_CHECKING([for int64_t in sys/bitypes.h])
+ AC_TRY_COMPILE(
+ [ #include <sys/bitypes.h> ],
+ [ int64_t a; a = 1;],
+ [ ac_cv_have_int64_t="yes" ],
+ [ ac_cv_have_int64_t="no" ]
+ )
+ if test "x$ac_cv_have_int64_t" = "xyes" ; then
+ AC_DEFINE(HAVE_INT64_T)
+ AC_MSG_RESULT([yes])
+ have_int64_t=1
+ else
+ AC_MSG_RESULT([no])
+ fi
+fi
+
+if (test -z "$have_u_int64_t" && \
+...
2003 Mar 17
3
nanosleep() replacement
...:16:43.000000000 -0800
+++ openssh/configure.ac 2003-03-16 15:38:28.520560008 -0800
@@ -1483,6 +1483,8 @@
have_struct_timeval=1
fi
+AC_CHECK_TYPES(struct timespec)
+
# If we don't have int64_t then we can't compile sftp-server. So don't
# even attempt to do it.
if test "x$ac_cv_have_int64_t" = "xno" -a \
--- openssh/openbsd-compat/bsd-misc.c.old 2003-01-19 19:21:01.000000000 -0800
+++ openssh/openbsd-compat/bsd-misc.c 2003-03-16 14:49:58.740480006 -0800
@@ -135,3 +135,34 @@
}
#endif
+#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_NSLEEP)
+int nanosleep(const...
2003 Mar 18
2
This release or next.
I think we need to revisit the whole 64bit integer support.
It has crept from sftp over to scp now. And I think we are at a point
where
[..]
# If we don't have int64_t then we can't compile sftp-server. So don't
# even attempt to do it.
if test "x$ac_cv_have_int64_t" = "xno" -a \
"x$ac_cv_sizeof_long_int" != "x8" -a \
"x$ac_cv_sizeof_long_long_int" = "x0" ; then
NO_SFTP='#'
else
should be changed to state 'Your platform is not supported with your
current compile.'...
2006 Apr 11
0
Problem building openssh-4.3p2 under cygwin and windows XP
...msghdr=no
ac_cv_have_clock_t=yes
ac_cv_have_control_in_msghdr=yes
ac_cv_have_decl_LLONG_MAX=yes
ac_cv_have_decl__getlong=no
ac_cv_have_decl__getshort=no
ac_cv_have_decl_getrusage=no
ac_cv_have_decl_h_errno=yes
ac_cv_have_decl_strsep=yes
ac_cv_have_decl_tcsendbreak=yes
ac_cv_have_getopt_optreset=yes
ac_cv_have_int64_t=yes
ac_cv_have_intxx_t=yes
ac_cv_have_mode_t=yes
ac_cv_have_pid_t=yes
ac_cv_have_pw_change_in_struct_passwd=no
ac_cv_have_pw_class_in_struct_passwd=no
ac_cv_have_pw_expire_in_struct_passwd=no
ac_cv_have_sa_family_t=yes
ac_cv_have_size_t=yes
ac_cv_have_ss_family_in_struct_ss=yes
ac_cv_have_ssize_t=y...