Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 90700 invoked by uid 500); 11 Jul 2003 12:20:40 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Delivered-To: moderator for cvs@httpd.apache.org Received: (qmail 29554 invoked by uid 500); 10 Jul 2003 19:29:26 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 10 Jul 2003 19:29:25 -0000 Message-ID: <20030710192925.7062.qmail@icarus.apache.org> From: jorton@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0 configure.in acinclude.m4 acconfig.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jorton 2003/07/10 12:29:24 Modified: . configure.in acinclude.m4 Removed: . acconfig.h Log: Use three-argument form of AC_DEFINE everywhere; remove acconfig.h and the warning message from autoconf 2.5x. Revision Changes Path 1.253 +1 -1 httpd-2.0/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/httpd-2.0/configure.in,v retrieving revision 1.252 retrieving revision 1.253 diff -u -u -r1.252 -r1.253 --- configure.in 19 May 2003 16:10:14 -0000 1.252 +++ configure.in 10 Jul 2003 19:29:24 -0000 1.253 @@ -313,7 +313,7 @@ #include ], [struct tm tm; tm.tm_gmtoff;], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) if test "$ac_cv_struct_tm_gmtoff" = "yes"; then - AC_DEFINE(HAVE_GMTOFF) + AC_DEFINE(HAVE_GMTOFF, 1, [Define if struct tm has a tm_gmtoff field]) fi dnl ## Set up any appropriate OS-specific environment variables for apachectl 1.145 +2 -2 httpd-2.0/acinclude.m4 Index: acinclude.m4 =================================================================== RCS file: /home/cvs/httpd-2.0/acinclude.m4,v retrieving revision 1.144 retrieving revision 1.145 diff -u -u -r1.144 -r1.145 --- acinclude.m4 30 May 2003 18:41:53 -0000 1.144 +++ acinclude.m4 10 Jul 2003 19:29:24 -0000 1.145 @@ -445,9 +445,9 @@ dnl Adjust apache's configuration based on what we found above. dnl (a) define preprocessor symbols if test "$ap_ssltk_type" = "openssl"; then - AC_DEFINE(HAVE_OPENSSL) + AC_DEFINE(HAVE_OPENSSL, 1, [Define if SSL is supported using OpenSSL]) else - AC_DEFINE(HAVE_SSLC) + AC_DEFINE(HAVE_SSLC, 1, [Define if SSL is supported using SSL-C]) fi dnl (b) hook up include paths if test "x$ap_ssltk_inc" != "x"; then