Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 27123 invoked from network); 3 Jun 2005 13:38:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Jun 2005 13:38:42 -0000 Received: (qmail 45177 invoked by uid 500); 3 Jun 2005 13:38:42 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 45082 invoked by uid 500); 3 Jun 2005 13:38:41 -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 45062 invoked by uid 99); 3 Jun 2005 13:38:41 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 03 Jun 2005 06:38:39 -0700 Received: (qmail 27053 invoked by uid 65534); 3 Jun 2005 13:38:23 -0000 Message-ID: <20050603133823.27052.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r179789 - /apr/apr/branches/0.9.x/build/apr_network.m4 Date: Fri, 03 Jun 2005 13:38:22 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Fri Jun 3 06:38:21 2005 New Revision: 179789 URL: http://svn.apache.org/viewcvs?rev=3D179789&view=3Drev Log: Merge r179786 from trunk: * build/apr_network.m4 (APR_CHECK_SCTP): Fix check for SCTP. PR: 35021 Submitted by: Lee Begg Modified: apr/apr/branches/0.9.x/build/apr_network.m4 Modified: apr/apr/branches/0.9.x/build/apr_network.m4 URL: http://svn.apache.org/viewcvs/apr/apr/branches/0.9.x/build/apr_network= .m4?rev=3D179789&r1=3D179788&r2=3D179789&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr/branches/0.9.x/build/apr_network.m4 (original) +++ apr/apr/branches/0.9.x/build/apr_network.m4 Fri Jun 3 06:38:21 2005 @@ -632,7 +632,8 @@ dnl dnl check for presence of SCTP protocol support dnl -AC_DEFUN(APR_CHECK_SCTP,[ +AC_DEFUN([APR_CHECK_SCTP], +[ AC_CACHE_CHECK([whether SCTP is supported], [apr_cv_sctp], [ AC_TRY_RUN([ #ifdef HAVE_SYS_TYPES_H @@ -643,6 +644,12 @@ #endif #ifdef HAVE_NETINET_IN_H #include +#endif +#ifdef HAVE_NETINET_SCTP_H +#include +#endif +#ifdef HAVE_NETINET_SCTP_UIO_H +#include #endif #include int main(void) {