Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 31665 invoked from network); 8 Sep 2006 16:43:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Sep 2006 16:43:23 -0000 Received: (qmail 72576 invoked by uid 500); 8 Sep 2006 16:43:22 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 72554 invoked by uid 500); 8 Sep 2006 16:43:22 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 72479 invoked by uid 99); 8 Sep 2006 16:43:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 09:43:21 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Sep 2006 09:43:20 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 712571A981D; Fri, 8 Sep 2006 09:43:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r441560 - in /apr/apr/branches/0.9.x: build/apr_common.m4 configure.in Date: Fri, 08 Sep 2006 16:43:00 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060908164300.712571A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: wrowe Date: Fri Sep 8 09:42:59 2006 New Revision: 441560 URL: http://svn.apache.org/viewvc?view=rev&rev=441560 Log: Some rare autoconf/m4 environments translitate differently and are dropping the 'e's of our symbol, resulting in ac_cv_file__dv_zro - which then fails all the way down the line for providing pthread mechanics. Noted this especially on Solaris 8.x. Depreciate APR_CHECK_FILE, which will be shot dead with APR 2.0, thus @deprecate symbol to designate the m4 method as dead. Backports: 441558 Modified: apr/apr/branches/0.9.x/build/apr_common.m4 apr/apr/branches/0.9.x/configure.in Modified: apr/apr/branches/0.9.x/build/apr_common.m4 URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/build/apr_common.m4?view=diff&rev=441560&r1=441559&r2=441560 ============================================================================== --- apr/apr/branches/0.9.x/build/apr_common.m4 (original) +++ apr/apr/branches/0.9.x/build/apr_common.m4 Fri Sep 8 09:42:59 2006 @@ -318,6 +318,7 @@ dnl APR_CHECK_FILE(filename); set ac_cv_file_filename to dnl "yes" if 'filename' is readable, else "no". +dnl @deprecated! - use AC_CHECK_FILE instead AC_DEFUN([APR_CHECK_FILE], [ dnl Pick a safe variable name define([apr_cvname], ac_cv_file_[]translit([$1], [./+-], [__p_])) Modified: apr/apr/branches/0.9.x/configure.in URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/configure.in?view=diff&rev=441560&r1=441559&r2=441560 ============================================================================== --- apr/apr/branches/0.9.x/configure.in (original) +++ apr/apr/branches/0.9.x/configure.in Fri Sep 8 09:42:59 2006 @@ -617,7 +617,7 @@ AC_CHECK_FUNCS([mmap munmap shm_open shm_unlink shmget shmat shmdt shmctl \ create_area]) APR_CHECK_DEFINE(MAP_ANON, sys/mman.h) -APR_CHECK_FILE(/dev/zero) +AC_CHECK_FILE(/dev/zero) # Not all systems can mmap /dev/zero (such as HP-UX). Check for that. if test "$ac_cv_func_mmap" = "yes" &&