]> andersk Git - openssh.git/commitdiff
move HAVE_LONG_LONG_INT where it works
authortim <tim>
Mon, 19 Mar 2001 02:27:26 +0000 (02:27 +0000)
committertim <tim>
Mon, 19 Mar 2001 02:27:26 +0000 (02:27 +0000)
ChangeLog
defines.h

index 8cd4c393c6e1384d886a509969c5dcaefb2210a7..154a0779872d808001ea10a7442e6d03eee88692 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,8 @@
      [auth-options.c]
      ignore permitopen="host:port" if AllowTcpForwarding==no
  - (djm) Make scp work on systems without 64-bit ints
+ - tim@mindrot.org 2001/03/18 18:28:39 [defines.h]
+   move HAVE_LONG_LONG_INT where it works
 
 20010318
  - (bal) Fixed scp type casing issue which causes "scp: protocol error: 
index 4202e61efb1a1fb25afff78bbaec139b36912666..0871d839009f143a03689816c1add5c6afdae49c 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -125,9 +125,6 @@ enum
 /* If sys/types.h does not supply intXX_t, supply them ourselves */
 /* (or die trying) */
 
-#ifdef SIZEOF_LONG_LONG_INT
-# define HAVE_LONG_LONG_INT
-#endif
 
 #ifndef HAVE_U_INT
 typedef unsigned int u_int;
@@ -202,6 +199,7 @@ typedef long int int64_t;
 #  if (SIZEOF_LONG_LONG_INT == 8)
 typedef long long int int64_t;
 #   define HAVE_INT64_T 1
+#   define HAVE_LONG_LONG_INT
 #  endif
 # endif
 #endif
This page took 0.572266 seconds and 5 git commands to generate.