Return-Path: Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Delivered-To: mailing list commits@apr.apache.org Received: (qmail 61817 invoked by uid 99); 10 Dec 2004 02:49:03 -0000 X-ASF-Spam-Status: No, hits=-9.9 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,UPPERCASE_25_50 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; Thu, 09 Dec 2004 18:49:03 -0800 Received: (qmail 58862 invoked by uid 65534); 10 Dec 2004 02:49:02 -0000 Date: 10 Dec 2004 02:49:02 -0000 Message-ID: <20041210024902.58857.qmail@minotaur.apache.org> From: stas@apache.org To: commits@apr.apache.org Subject: svn commit: r111457 - /apr/apr/trunk/CHANGES /apr/apr/trunk/include/apr_file_info.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked Author: stas Date: Thu Dec 9 18:49:00 2004 New Revision: 111457 URL: http://svn.apache.org/viewcvs?view=rev&rev=111457 Log: rename the apr_file_permissions defines (APR_UREAD, APR_FPROT_UWRITE, etc.) to have prefix APR_FPROT_ (keeping the old defines) Modified: apr/apr/trunk/CHANGES apr/apr/trunk/include/apr_file_info.h Modified: apr/apr/trunk/CHANGES Url: http://svn.apache.org/viewcvs/apr/apr/trunk/CHANGES?view=diff&rev=111457&p1=apr/apr/trunk/CHANGES&r1=111456&p2=apr/apr/trunk/CHANGES&r2=111457 ============================================================================== --- apr/apr/trunk/CHANGES (original) +++ apr/apr/trunk/CHANGES Thu Dec 9 18:49:00 2004 @@ -1,5 +1,9 @@ Changes for APR 1.1.0 + *( rename the apr_file_permissions defines (APR_UREAD, + APR_FPROT_UWRITE, etc.) to have prefix APR_FPROT_ (keeping the + old defines) [Stas] + *) Emit the run-time link path option in apr-config after installation if the user is linking with libtool. [Justin Erenkrantz] Modified: apr/apr/trunk/include/apr_file_info.h Url: http://svn.apache.org/viewcvs/apr/apr/trunk/include/apr_file_info.h?view=diff&rev=111457&p1=apr/apr/trunk/include/apr_file_info.h&r1=111456&p2=apr/apr/trunk/include/apr_file_info.h&r2=111457 ============================================================================== --- apr/apr/trunk/include/apr_file_info.h (original) +++ apr/apr/trunk/include/apr_file_info.h Thu Dec 9 18:49:00 2004 @@ -75,26 +75,42 @@ * @{ */ -#define APR_USETID 0x8000 /**< Set user id */ -#define APR_UREAD 0x0400 /**< Read by user */ -#define APR_UWRITE 0x0200 /**< Write by user */ -#define APR_UEXECUTE 0x0100 /**< Execute by user */ +#define APR_FPROT_USETID 0x8000 /**< Set user id */ +#define APR_FPROT_UREAD 0x0400 /**< Read by user */ +#define APR_FPROT_UWRITE 0x0200 /**< Write by user */ +#define APR_FPROT_UEXECUTE 0x0100 /**< Execute by user */ -#define APR_GSETID 0x4000 /**< Set group id */ -#define APR_GREAD 0x0040 /**< Read by group */ -#define APR_GWRITE 0x0020 /**< Write by group */ -#define APR_GEXECUTE 0x0010 /**< Execute by group */ +#define APR_FPROT_GSETID 0x4000 /**< Set group id */ +#define APR_FPROT_GREAD 0x0040 /**< Read by group */ +#define APR_FPROT_GWRITE 0x0020 /**< Write by group */ +#define APR_FPROT_GEXECUTE 0x0010 /**< Execute by group */ -#define APR_WSTICKY 0x2000 /**< Sticky bit */ -#define APR_WREAD 0x0004 /**< Read by others */ -#define APR_WWRITE 0x0002 /**< Write by others */ -#define APR_WEXECUTE 0x0001 /**< Execute by others */ +#define APR_FPROT_WSTICKY 0x2000 /**< Sticky bit */ +#define APR_FPROT_WREAD 0x0004 /**< Read by others */ +#define APR_FPROT_WWRITE 0x0002 /**< Write by others */ +#define APR_FPROT_WEXECUTE 0x0001 /**< Execute by others */ -#define APR_OS_DEFAULT 0x0FFF /**< use OS's default permissions */ +#define APR_FPROT_OS_DEFAULT 0x0FFF /**< use OS's default permissions */ /* additional permission flags for apr_file_copy and apr_file_append */ -#define APR_FILE_SOURCE_PERMS 0x1000 /**< Copy source file's permissions */ - +#define APR_FPROT_FILE_SOURCE_PERMS 0x1000 /**< Copy source file's permissions */ + +/* backcompat */ +#define APR_USETID APR_FPROT_USETID /**< @deprecated @see APR_FPROT_USETID */ +#define APR_UREAD APR_FPROT_UREAD /**< @deprecated @see APR_FPROT_UREAD */ +#define APR_UWRITE APR_FPROT_UWRITE /**< @deprecated @see APR_FPROT_UWRITE */ +#define APR_UEXECUTE APR_FPROT_UEXECUTE /**< @deprecated @see APR_FPROT_UEXECUTE */ +#define APR_GSETID APR_FPROT_GSETID /**< @deprecated @see APR_FPROT_GSETID */ +#define APR_GREAD APR_FPROT_GREAD /**< @deprecated @see APR_FPROT_GREAD */ +#define APR_GWRITE APR_FPROT_GWRITE /**< @deprecated @see APR_FPROT_GWRITE */ +#define APR_GEXECUTE APR_FPROT_GEXECUTE /**< @deprecated @see APR_FPROT_GEXECUTE */ +#define APR_WSTICKY APR_FPROT_WSTICKY /**< @deprecated @see APR_FPROT_WSTICKY */ +#define APR_WREAD APR_FPROT_WREAD /**< @deprecated @see APR_FPROT_WREAD */ +#define APR_WWRITE APR_FPROT_WWRITE /**< @deprecated @see APR_FPROT_WWRITE */ +#define APR_WEXECUTE APR_FPROT_WEXECUTE /**< @deprecated @see APR_FPROT_WEXECUTE */ +#define APR_OS_DEFAULT APR_FPROT_OS_DEFAULT /**< @deprecated @see APR_FPROT_OS_DEFAULT */ +#define APR_FILE_SOURCE_PERMS APR_FPROT_FILE_SOURCE_PERMS /**< @deprecated @see APR_FPROT_FILE_SOURCE_PERMS */ + /** @} */