Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 79199 invoked by uid 500); 19 May 2001 23:35:30 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 79187 invoked by uid 1078); 19 May 2001 23:35:29 -0000 Date: 19 May 2001 23:35:29 -0000 Message-ID: <20010519233529.79186.qmail@apache.org> From: jim@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_portable.h jim 01/05/19 16:35:29 Modified: include apr_portable.h Log: Minor wrapper for functions which should only be defined if we support DSO. Revision Changes Path 1.53 +3 -0 apr/include/apr_portable.h Index: apr_portable.h =================================================================== RCS file: /home/cvs/apr/include/apr_portable.h,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- apr_portable.h 2001/04/25 05:26:39 1.52 +++ apr_portable.h 2001/05/19 23:35:29 1.53 @@ -396,6 +396,7 @@ #endif /* APR_HAS_THREADS */ +#if APR_HAS_DSO /** * convert the dso handle from os specific to apr * @param dso The apr handle we are converting to @@ -415,6 +416,8 @@ */ APR_DECLARE(apr_status_t) apr_os_dso_handle_get(apr_os_dso_handle_t *dso, apr_dso_handle_t *aprdso); + +#endif /* APR_HAS_DSO */ #ifdef __cplusplus }