1[/ 2 Copyright 2006-2007 John Maddock. 3 Distributed under the Boost Software License, Version 1.0. 4 (See accompanying file LICENSE_1_0.txt or copy at 5 http://www.boost.org/LICENSE_1_0.txt). 6] 7 8 9[section:redist Redistributables] 10 11If you are using Microsoft or Borland C++ and link to a dll version of the 12run time library, then you can choose to also link to a dll version of Boost.Regex 13by defining the symbol BOOST_REGEX_DYN_LINK when you compile your code. 14While these dll's are redistributable, there are no "standard" versions, 15so when installing on the users PC, you should place these in a 16directory private to your application, and not in the PC's directory path. 17Note that if you link to a static version of your run time library, then 18you will also link to a static version of Boost.Regex and no dll's will 19need to be distributed. The possible Boost.Regex dll and library names are 20computed according to the formula given in 21[@../../../../more/getting_started.html the getting started guide]. 22 23Note: you can disable automatic library selection by defining the 24symbol BOOST_REGEX_NO_LIB when compiling, this is useful if you want to 25build Boost.Regex yourself in your IDE, or if you need to debug Boost.Regex. 26 27[endsect] 28 29