summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--acconfig.h1
-rw-r--r--configure.in11
-rw-r--r--defines.h7
4 files changed, 1 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index d3999875d..f68458ca2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@
12 <iretd@bigfoot.com> 12 <iretd@bigfoot.com>
13 - Really fix broken default path. Fix from Jim Knoble 13 - Really fix broken default path. Fix from Jim Knoble
14 <jmknoble@pobox.com> 14 <jmknoble@pobox.com>
15 - Remove test for quad_t. No longer needed.
15 16
1619991230 1719991230
17 - OpenBSD CVS updates: 18 - OpenBSD CVS updates:
diff --git a/acconfig.h b/acconfig.h
index d0feb370d..91eb43afa 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -117,7 +117,6 @@
117#undef MAIL_DIRECTORY 117#undef MAIL_DIRECTORY
118 118
119/* Data types */ 119/* Data types */
120#undef HAVE_QUAD_T
121#undef HAVE_INTXX_T 120#undef HAVE_INTXX_T
122#undef HAVE_U_INTXX_T 121#undef HAVE_U_INTXX_T
123#undef HAVE_UINTXX_T 122#undef HAVE_UINTXX_T
diff --git a/configure.in b/configure.in
index 79edfa396..8b3af35f8 100644
--- a/configure.in
+++ b/configure.in
@@ -138,17 +138,6 @@ AC_CHECK_SIZEOF(long int, 4)
138AC_CHECK_SIZEOF(long long int, 8) 138AC_CHECK_SIZEOF(long long int, 8)
139 139
140dnl More checks for data types 140dnl More checks for data types
141AC_MSG_CHECKING([for quad_t])
142AC_TRY_COMPILE(
143 [#include <sys/types.h>],
144 [quad_t a; a = 1235;],
145 [
146 AC_DEFINE(HAVE_QUAD_T)
147 AC_MSG_RESULT(yes)
148 ],
149 [AC_MSG_RESULT(no)]
150)
151
152AC_MSG_CHECKING([for intXX_t types]) 141AC_MSG_CHECKING([for intXX_t types])
153AC_TRY_COMPILE( 142AC_TRY_COMPILE(
154 [#include <sys/types.h>], 143 [#include <sys/types.h>],
diff --git a/defines.h b/defines.h
index fdd37bb88..2a2655953 100644
--- a/defines.h
+++ b/defines.h
@@ -98,13 +98,6 @@ typedef unsigned long long int u_int64_t;
98# endif 98# endif
99#endif 99#endif
100 100
101/* If quad_t is not supplied, then supply it now. We can rely on int64_t */
102/* being defined by the above */
103#ifndef HAVE_QUAD_T
104typedef int64_t quad_t;
105# define HAVE_QUAD_T
106#endif
107
108#ifndef HAVE_SOCKLEN_T 101#ifndef HAVE_SOCKLEN_T
109typedef unsigned int socklen_t; 102typedef unsigned int socklen_t;
110# define HAVE_SOCKLEN_T 103# define HAVE_SOCKLEN_T