]> andersk Git - openssh.git/commitdiff
- Prevent typedefs from being compiled more than once. Report from
authordamien <damien>
Thu, 30 Dec 1999 22:18:12 +0000 (22:18 +0000)
committerdamien <damien>
Thu, 30 Dec 1999 22:18:12 +0000 (22:18 +0000)
   Marc G. Fournier <marc.fournier@acadiau.ca>

ChangeLog
defines.h

index 7dd5e869c373e6f8389e7f6ba69582025bb83158..d36fbc07976d4b07df04202952ff963fd4dc498e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@
    Fournier <marc.fournier@acadiau.ca>
  - Fix occasional crash on LinuxPPC. Patch from Franz Sirl
    <Franz.Sirl-kernel@lauterbach.com>
+ - Prevent typedefs from being compiled more than once. Report from 
+   Marc G. Fournier <marc.fournier@acadiau.ca>
 
 19991230
  - OpenBSD CVS updates:
index 10f72f478c73b6cd6508033e3ee5a714c4308f97..fdd37bb88a40235f793e132264685526cbbcedf4 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -61,6 +61,7 @@ typedef long int int64_t;
 # else
 #  if (SIZEOF_LONG_LONG_INT == 8)
 typedef long long int int64_t;
+#   define HAVE_INTXX_T
 #  else
 #   error "64 bit int type not found."
 #  endif
@@ -89,6 +90,7 @@ typedef unsigned long int u_int64_t;
 #  else
 #   if (SIZEOF_LONG_LONG_INT == 8)
 typedef unsigned long long int u_int64_t;
+#    define HAVE_U_INTXX_T
 #   else
 #    error "64 bit int type not found."
 #   endif
@@ -100,14 +102,17 @@ typedef unsigned long long int u_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
 #endif /* HAVE_SOCKLEN_T */
 
 #ifndef HAVE_SIZE_T
 typedef unsigned int size_t;
+# define HAVE_SIZE_T
 #endif /* HAVE_SIZE_T */
 
 /* Paths */
This page took 0.042464 seconds and 5 git commands to generate.