diff --git a/config.htm b/config.htm index f41d9951..8939d351 100644 --- a/config.htm +++ b/config.htm @@ -96,13 +96,13 @@ export LDFLAGS="-DAportable" export LIBS="-lpthread" ./configure
However you run the configure script, when it finishes you will find a new - header - user.hpp - located in the <boost-root/libs/config/> - directory. Note that configure does not install this header into your boost - include path by default. This header contains all the options - generated by the configure script, plus a header-section that contains the user - settable options from the default version of - user.hpp (located under <boost-root>/boost/config/). There are two - ways you can use this header:
+ header - user.hpp - located in the <boost-root/libs/config/> directory. Note + that configure does not install this header into your boost include path by + default. This header contains all the options generated by the + configure script, plus a header-section that contains the user settable options + from the default version of user.hpp (located + under <boost-root>/boost/config/). There are two ways you can use this + header:Option 1: copy the header into <boost-root>/boost/config/ so that it replaces the default user.hpp provided by boost. This option allows only one configure-generated setup; boost @@ -384,6 +384,15 @@ export LIBS="-lpthread"
using boost::get_pointer;
prevents ADL from finding overloads of
+ get_pointer
in namespaces nested inside boost (but not elsewhere).
+ Probably Borland specific.