Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 23043 invoked from network); 3 Jan 2009 06:49:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Jan 2009 06:49:04 -0000 Received: (qmail 42997 invoked by uid 500); 3 Jan 2009 06:49:03 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 42948 invoked by uid 500); 3 Jan 2009 06:49:03 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 42938 invoked by uid 99); 3 Jan 2009 06:49:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jan 2009 22:49:03 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Jan 2009 06:49:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 273CA23889A0; Fri, 2 Jan 2009 22:48:41 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r730928 - /httpd/httpd/trunk/modules/proxy/config.m4 Date: Sat, 03 Jan 2009 06:48:40 -0000 To: cvs@httpd.apache.org From: jerenkrantz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090103064841.273CA23889A0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jerenkrantz Date: Fri Jan 2 22:48:40 2009 New Revision: 730928 URL: http://svn.apache.org/viewvc?rev=730928&view=rev Log: * modules/proxy/config.m4: Remove spurious notices from configure. Modified: httpd/httpd/trunk/modules/proxy/config.m4 Modified: httpd/httpd/trunk/modules/proxy/config.m4 URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/config.m4?rev=730928&r1=730927&r2=730928&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/config.m4 (original) +++ httpd/httpd/trunk/modules/proxy/config.m4 Fri Jan 2 22:48:40 2009 @@ -55,7 +55,6 @@ AC_DEFUN([CHECK_SERF], [ - AC_MSG_CHECKING(for serf) serf_found="no" AC_ARG_WITH(serf, APACHE_HELP_STRING([--with-serf=PREFIX], [Serf client library]), @@ -63,7 +62,6 @@ if test "$withval" = "yes" ; then AC_MSG_ERROR([--with-serf requires an argument.]) else - AC_MSG_NOTICE([serf library configuration]) serf_prefix=$withval save_cppflags="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $APR_INCLUDES $APU_INCLUDES -I$serf_prefix/include/serf-0" @@ -75,7 +73,7 @@ CPPFLAGS="$save_cppflags" fi ]) - + if test "$serf_found" = "yes"; then MOD_SERF_LDADD="-L$serf_prefix/lib -lserf-0" APR_ADDTO(INCLUDES, ["-I$serf_prefix/include/serf-0"])