Changes between Version 3 and Version 4 of ReleasePractices/HotFixes
- Timestamp:
- Aug 25, 2008, 7:08:41 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleasePractices/HotFixes
v3 v4 8 8 9 9 || '''''Library''''' || '''''Changeset''''' || '''''Description''''' || '''''Directory''''' || 10 || Filesystem || [http://svn.boost.org/trac/boost/changeset/48192 48192] || Restore deprecated basic_directory_entry functions inadvertently removed from 1.36.0. || boost-root/boost/filesystem || 10 || Filesystem || [http://svn.boost.org/trac/boost/changeset/48192 48192] || Restore deprecated basic_directory_entry functions inadvertently omitted from 1.36.0. || boost-root/boost/filesystem || 11 || Filesystem || [http://svn.boost.org/trac/boost/changeset/48374 48374] || Restore deprecated functions has_branch_path and has_leaf, inadvertently omitted from 1.36.0 || boost-root/boost/filesystem || 12 || Filesystem || [http://svn.boost.org/trac/boost/changeset/48377 48377] || Revert ''remove'' changes inadvertently committed by 47006. Fully apply ticket !#1972 ''remove'' fixes. ''Only the first patch (operations.hpp) in this changeset is required. The others can safely be ignored.'' || boost-root/boost/filesystem || 11 13 12 14 == Instructions for applying patches == 15 16 Prerequisite: The [http://en.wikipedia.org/wiki/Patch_(Unix) patch] command line utility. '''''patch''''' is preinstalled on Mac OS X and most Linux and Unix systems. For Windows, obtain it from [http://www.cygwin.com/ Cygwin]. 13 17 14 18 * In the table, click the link for the desired Changeset. … … 18 22 * Open a command prompt window using your operating system. Enter these two commands, replacing ''directory'' with the path to ''directory'' from the table, ''download-path'' with the path to your download directory, and ''#'' with the changeset number: 19 23 24 {{{ 20 25 cd ''directory'' 26 patch <''download-path''/changeset_r''#''.diff 27 }}} 21 28 22 patch <''download-path''/changeset_r''#''.diff 23 24 Note the "<" before the location of the download-path. It is really important. 29 Note the "<" before the location of the download-path. If you forget it, ''patch'' will hang waiting for console input.