Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 86054 invoked by uid 500); 13 Jun 2000 16:26:42 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 85710 invoked by uid 500); 13 Jun 2000 16:26:34 -0000 Delivered-To: apmail-apache-2.0-cvs@apache.org Date: 13 Jun 2000 16:26:29 -0000 Message-ID: <20000613162629.85583.qmail@locus.apache.org> From: dreid@locus.apache.org To: apache-2.0-cvs@apache.org Subject: cvs commit: apache-2.0/src/lib/apr acconfig.h dreid 00/06/13 09:26:28 Modified: src/lib/apr acconfig.h Log: Next part of adding support for BONE. Basically this sets up defines that we can use to know what level of support BeOS has available. Revision Changes Path 1.31 +7 -0 apache-2.0/src/lib/apr/acconfig.h Index: acconfig.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/acconfig.h,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- acconfig.h 2000/06/13 15:57:28 1.30 +++ acconfig.h 2000/06/13 16:26:26 1.31 @@ -71,4 +71,11 @@ typedef int socklen_t; #endif +/* switch this on if we have a BeOS version below BONE */ +#if BEOS && !HAVE_BONE_VERSION +#define BEOS_R5 1 +#else +#define BEOS_BONE 1 +#endif + #endif /* APR_PRIVATE_H */