summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorColm MacCarthaigh <colm@apache.org>2005-10-04 18:18:24 +0200
committerColm MacCarthaigh <colm@apache.org>2005-10-04 18:18:24 +0200
commit4674da2cc71a116b0277db071b069bf15342cfe8 (patch)
tree90dcd90e65da7eb9b1bd52bfbdc457ccfb80b3a3 /configure.in
parentInitialise a variable, to avoid a gcc warning. (diff)
downloadapache2-4674da2cc71a116b0277db071b069bf15342cfe8.tar.xz
apache2-4674da2cc71a116b0277db071b069bf15342cfe8.zip
One way or another, whether we leave the casts in or out, right now we are
using "void *" containers to store long integers; Add a configure-time check to ensure that it is valid to assume that a "void *" container is large enough to store a long int. See <200510031150.j93Boh700945@devsys.jaguNET.com> and ensuing discussion on httpd-dev. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@294809 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 902bb13317..63aff08123 100644
--- a/configure.in
+++ b/configure.in
@@ -32,6 +32,9 @@ APR_PARSE_ARGUMENTS
dnl export expanded and relative configure argument variables
APACHE_EXPORT_ARGUMENTS
+dnl confirm that a void pointer is large enough to store a long integer
+APACHE_CHECK_VOID_PTR_LEN
+
dnl Save user-defined environment settings for later restoration
dnl
APR_SAVE_THE_ENVIRONMENT(CPPFLAGS)