Changes between Version 4 and Version 5 of ReleasePractices/HotFixes
- Timestamp:
- Aug 25, 2008, 7:20:25 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleasePractices/HotFixes
v4 v5 4 4 5 5 Boost developers may occasionally make quick bug fixes available in the form of patches. 6 7 * Patches are specific to the indicated Boost release, and may not work correctly or at all for other releases. 8 * Patches assume that prior (lower numbered) changeset patches for the library have been applied. 9 * Patches are not been tested as rigorously as releases. It is safer to only apply patches if you actually need them. 6 10 7 11 === Release 1.36.0 === … … 14 18 == Instructions for applying patches == 15 19 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 itfrom [http://www.cygwin.com/ Cygwin].20 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, it may be obtained from [http://www.cygwin.com/ Cygwin]. 17 21 18 22 * In the table, click the link for the desired Changeset. … … 23 27 24 28 {{{ 25 cd ''directory''26 patch < ''download-path''/changeset_r''#''.diff29 cd directory 30 patch <download-path/changeset_r#.diff 27 31 }}} 28 32