Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8DC21D436 for ; Mon, 10 Sep 2012 22:20:28 +0000 (UTC) Received: (qmail 44136 invoked by uid 500); 10 Sep 2012 22:20:28 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 44116 invoked by uid 500); 10 Sep 2012 22:20:28 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 44109 invoked by uid 99); 10 Sep 2012 22:20:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Sep 2012 22:20:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Mon, 10 Sep 2012 22:20:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 880D523888E3; Mon, 10 Sep 2012 22:19:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1383135 - /subversion/trunk/subversion/include/svn_version.h Date: Mon, 10 Sep 2012 22:19:44 -0000 To: commits@subversion.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120910221944.880D523888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brane Date: Mon Sep 10 22:19:44 2012 New Revision: 1383135 URL: http://svn.apache.org/viewvc?rev=1383135&view=rev Log: * subversion/include/svn_version.h: Update docstrings. Modified: subversion/trunk/subversion/include/svn_version.h Modified: subversion/trunk/subversion/include/svn_version.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_version.h?rev=1383135&r1=1383134&r2=1383135&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_version.h (original) +++ subversion/trunk/subversion/include/svn_version.h Mon Sep 10 22:19:44 2012 @@ -274,18 +274,23 @@ typedef struct svn_version_extended_t const char *runtime_osname; /**< Running OS release name */ /** - * Array svn_version_linked_lib_t describing dependent libraries. + * Array of svn_version_linked_lib_t describing dependent libraries. */ const apr_array_header_t *linked_libs; /** * Array of svn_version_loaded_lib_t describing loaded shared libraries. + * + * On Mac OS X, the loaded frameworks, private frameworks and + * system libraries will not be listed here. */ const apr_array_header_t *loaded_libs; } svn_version_extended_t; /** * Dependent library information. + * Describes the name and versions of * known dependencies + * used by libsvn_subr. * * @since New in 1.8. */ @@ -298,6 +303,8 @@ typedef struct svn_version_linked_lib_t /** * Loaded shared library information. + * Describes the name and, where available, version of the shared libraries + * loaded by the running program. * * @since New in 1.8. */