Boost-users
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1997 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 28348 discussions
Hi
I installed and compiled boost for my project a long time ago, however now
I fail to repeat on this success on another computer.
I use only the serialization library, therefore the folder that my project
linker includes in order to work properly is:
C:\boost_1_47_0\boost_1_47_0\bin.v2\libs\serialization\build\msvc-10.0\release(or
debug...)\address-model-64\link-static\threading-multi
what is the corresponding cmd compilation command? I tried to specify all
the corresponding flags but for some reason it doesn't work,(for example-
despite using the flag --address-model=64, the folder "address-model-64"
wasn't constructed in my folders hierarchy tree, so I guess that this flag
was ignored)
Thanks in advance!
Ohad Barta
1
0
Hi,
We are using SSL for secure communication. In this both the parties verify
each other
(ctx.set_verify_mode(boost::asio::ssl::context::verify_peer|boost::asio::ssl::context::verify_fail_if_no_peer_cert);).
Both the communicating parties uses self signed certificates. Both client
and server loads the each others public key for peer verification, for that
we use the call ctx.load_verify_file().
At the client side when we call "load_verify_file()" only once with the
other parties public key it works perfectly. If we load one more public key
of some other application again using "load_verify_file()" the peer
authentication fails. So what I understood is "load_verify_file()" loads
only one latest certificate, but the documentation says it can be used for
loading one or more CA files.
To solve this, I also merged the two certificates into one file and tried
loading it. If the valid certificate is in the second position in the file
the verification is performed successfully. Otherwise it fails!!
What could be the reason, is there any method available for peer
authentication?
Thanks,
Lloyd
1
0
I have found this in bind.hpp:
#ifndef BOOST_BIND
#define BOOST_BIND bind
#endif
it causes minor problems with my codebase by confusing it with the windows
sockets api. Maybe it should be changed to something like
#ifndef BOOST_BIND
#define BOOST_BIND ::boost::bind
#endif
Regards,
Isaac Lascasas.
1
0
Dear friends,
Please tell me how to set the pkg-config in bjam. please
see,like this I am using while compiling the using gcc and
make
command
1) gcc -g - o `pkg-config --cflags glib-2.0 dbus-glib-1 --libs glib-2.0
dbus-glib-1` main main.c
but I don't know how to add this option in bajm and also I don't know
where to add this option in either jamfile or boost-build.jam, or
user-config.jam.
because you might get doubt why do you want use glib and dbus means I
using dbus api's in my program.
so how to and where to add is my big confusion , please if any one knows
could help me get out of this problem.
I had tried in the bellow ways but didn't worked so
using gcc : : : <cxxflags>-glib-2.0 -dbus-glib-1
: <libs>-glib-2.0 -dbus-glib-1
;
using gcc : : : <compileflags>-glib-2.0 -dbus-glib-1
: <libs>-glib-2.0 -dbus-glib-1
;
some time I thought, I am adding above options in wrong place meaning
different file , please any one can suggest.
Best Regards
BaBu
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
1
0
hello
I have a program like the last regex program in this link:
http://www.boost.org/doc/libs/1_49_0/libs/regex/doc/html/boost_regex/ref/re…
inside the while loop *i++ returns the url's found with regex:
while(i != j)
{
std::cout << *i++ << std::endl;
}
i need to pass *i++ to a function that "accepts" the url string/address/pointer
(the function is in different c++ file) as a string
(before it the function header was char** argv)
how do i pass *i++ to the function in order to make it accept the *i++ parameter?
1
0
I'm having problems with integer traits when passed an __int64 type data
type under Visual C++.
I run the following test:
boost::mpl::print<
boost::mpl::integral_c<
boost::intmax_t,
boost::integer_traits<boost::intmax_t>::const_min
>
> x13;
boost::mpl::print<
boost::mpl::integral_c<
boost::intmax_t,
boost::integer_traits<boost::intmax_t>::const_max
>
> x8;
What I expect to get for const_min is:
...
1> T=boost::mpl::integral_c<boost::intmax_t,0x8000000000000000>
...
What I get is:
1>test_fixed_type.cpp
1>c:\boostrelease\boost\mpl\print.hpp(51) : warning C4308: negative integral
constant converted to unsigned type
1> c:\projects\boost projects\safe_numerics\include\test_fixed_type.cpp(13)
: see reference to class template instantiation 'boost::mpl::print<T>' being
compiled
1> with
1> [
1> T=boost::mpl::integral_c<boost::intmax_t,0x800000000>
1> ]
1>c:\boostrelease\boost\mpl\print.hpp(51) : warning C4308: negative integral
constant converted to unsigned type
1> c:\projects\boost projects\safe_numerics\include\test_fixed_type.cpp(20)
: see reference to class template instantiation 'boost::mpl::print<T>' being
compiled
1> with
1> [
1> T=boost::mpl::integral_c<boost::intmax_t,0x7fffffffffffffff>
1> ]
That is the value for const_min is not correct !!. Note I've tried various
different types such as using __int64 and also changed the rendering of he
real vale to _I64_MIN. None of this seems to fix things.
I've also tried making my own specialzation of integral_c for this type:
template<boost::intmax_t C >
struct integral_c<boost::intmax_t, C>
{
BOOST_STATIC_CONSTANT(boost::intmax_t, value = C);
typedef integral_c_tag tag;
typedef integral_c type;
typedef boost::intmax_t value_type;
operator boost::intmax_t() const { return this->value; }
};
Hmmm now I'm wondering about BOOST_STATIC_CONSTANT. and looking at the
documenation of BOOST_STATIC_CONSTANT shows it's not really expected to work
on anything wider than an int.
What should one do in a case like this?
Robert Ramey
1
2
Problem to generate regex library (Solaris SunOS 5.9 and Forte Developer 7 Compiler C++)
by Gabriel Huerta Araujo 29 May '12
by Gabriel Huerta Araujo 29 May '12
29 May '12
Hi all:
I am trying to generate Boost regex library with b2 command as indicated:
b2 --build-dir=$BOOST_ROOT/lib --with-regex toolset=sun stage
Below is what this command generates:
Performing configuration checks
- has_icu builds : yes
Component configuration:
- chrono : not building
- date_time : not building
- exception : not building
- filesystem : not building
- graph : not building
- graph_parallel : not building
- iostreams : not building
- locale : not building
- math : not building
- mpi : not building
- program_options : not building
- python : not building
- random : not building
- regex : building
- serialization : not building
- signals : not building
- system : not building
- test : not building
- thread : not building
- timer : not building
- wave : not building
...patience...
...found 565 targets...
...updating 29 targets...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/cregex.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/cregex.o" "libs/regex/build/../src/cregex.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/cregex.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/icu.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/icu.o" "libs/regex/build/../src/icu.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/icu.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/instances.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/instances.o" "libs/regex/build/../src/instances.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/instances.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/posix_api.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/posix_api.o" "libs/regex/build/../src/posix_api.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/posix_api.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/regex.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/regex.o" "libs/regex/build/../src/regex.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/regex.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/wide_posix_api.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/wide_posix_api.o" "libs/regex/build/../src/wide_posix_api.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/wide_posix_api.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/winstances.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/functional/hash/hash.hpp", line 145: Warning (Anachronism): boost::hash_value(bool) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 150: Warning (Anachronism): boost::hash_value(char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 155: Warning (Anachronism): boost::hash_value(unsigned char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 160: Warning (Anachronism): boost::hash_value(signed char) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 165: Warning (Anachronism): boost::hash_value(short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 170: Warning (Anachronism): boost::hash_value(unsigned short) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 175: Warning (Anachronism): boost::hash_value(int) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 180: Warning (Anachronism): boost::hash_value(unsigned) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 185: Warning (Anachronism): boost::hash_value(long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 190: Warning (Anachronism): boost::hash_value(unsigned long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 196: Warning (Anachronism): boost::hash_value(wchar_t) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 203: Warning (Anachronism): boost::hash_value(long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 208: Warning (Anachronism): boost::hash_value(unsigned long long) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 328: Warning (Anachronism): boost::hash_value(float) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 333: Warning (Anachronism): boost::hash_value(double) was previously declared "extern", not "inline".
"./boost/functional/hash/hash.hpp", line 338: Warning (Anachronism): boost::hash_value(long double) was previously declared "extern", not "inline".
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Expression must have a constant value.
"./boost/regex/v4/basic_regex.hpp", line 92: Error: Badly formed expression.
2 Error(s) and 16 Warning(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/winstances.o" "libs/regex/build/../src/winstances.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi/winstances.o...
...skipped <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi>libboost_regex.a for lack of <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi>cregex.o...
...skipped <pstage/lib>libboost_regex.a for lack of <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/link-static/stdlib-sun-stlport/threading-multi>libboost_regex.a...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/c_regex_traits.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/c_regex_traits.hpp", line 54: Error: Use ";" to terminate declarations.
"./boost/regex/v4/c_regex_traits.hpp", line 55: Error: A declaration was expected instead of "{".
"./boost/regex/v4/c_regex_traits.hpp", line 56: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 56: Error: No direct declarator preceding "(".
"./boost/regex/v4/c_regex_traits.hpp", line 63: Error: ")" expected instead of "*".
"./boost/regex/v4/c_regex_traits.hpp", line 65: Error: p is not defined.
"./boost/regex/v4/c_regex_traits.hpp", line 69: Error: The function "boost::translate(char) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 73: Error: The function "boost::translate_nocase(char) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 89: Error: The function "boost::getloc() const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 91: Error: A declaration was expected instead of "private".
"./boost/regex/v4/c_regex_traits.hpp", line 93: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 93: Error: No direct declarator preceding "(".
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: boost::operator=(const int&) must be a member function.
"./boost/regex/v4/c_regex_traits.hpp", line 99: Error: Use ";" to terminate declarations.
"./boost/regex/v4/c_regex_traits.hpp", line 100: Error: A declaration was expected instead of "{".
"./boost/regex/v4/c_regex_traits.hpp", line 101: Error: "c_regex_traits()" is expected to return a value.
"./boost/regex/v4/c_regex_traits.hpp", line 114: Error: The function "translate(wchar_t) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 118: Error: The function "translate_nocase(wchar_t) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 134: Error: The function "getloc() const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 136: Error: A declaration was expected instead of "private".
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/c_regex_traits.o" "libs/regex/build/../src/c_regex_traits.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/c_regex_traits.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cpp_regex_traits.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cpp_regex_traits.o" "libs/regex/build/../src/cpp_regex_traits.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cpp_regex_traits.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cregex.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cregex.o" "libs/regex/build/../src/cregex.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/cregex.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/fileiter.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/fileiter.hpp", line 165: Error: The type "boost::re_detail::__global" is incomplete.
"./boost/regex/v4/fileiter.hpp", line 168: Error: The type "boost::re_detail::__global" is incomplete.
"./boost/regex/v4/fileiter.hpp", line 168: Error: "," expected instead of "{".
"./boost/regex/v4/fileiter.hpp", line 172: Error: "," expected instead of "*".
"./boost/regex/v4/fileiter.hpp", line 173: Error: Multiple declaration for pointer.
"./boost/regex/v4/fileiter.hpp", line 173: Error: "," expected instead of "*".
"./boost/regex/v4/fileiter.hpp", line 174: Error: Operand expected instead of ">".
"./boost/regex/v4/fileiter.hpp", line 179: Error: The type "void" is incomplete.
"./boost/regex/v4/fileiter.hpp", line 179: Error: node is not defined.
"./boost/regex/v4/fileiter.hpp", line 179: Error: "," expected instead of "const".
"./boost/regex/v4/fileiter.hpp", line 180: Error: The type "void" is incomplete.
"./boost/regex/v4/fileiter.hpp", line 180: Error: node is not defined.
"./boost/regex/v4/fileiter.hpp", line 180: Error: "," expected instead of "const".
"./boost/regex/v4/fileiter.hpp", line 181: Error: A declaration was expected instead of "public".
"./boost/regex/v4/fileiter.hpp", line 183: Error: mapfile_iterator is not defined.
"./boost/regex/v4/fileiter.hpp", line 185: Error: Multiple declaration for mapfile.
"./boost/regex/v4/fileiter.hpp", line 185: Error: _first is not defined.
"./boost/regex/v4/fileiter.hpp", line 185: Error: _last is not defined.
"./boost/regex/v4/fileiter.hpp", line 185: Error: "boost::re_detail::mapfile()" is expected to return a value.
"./boost/regex/v4/fileiter.hpp", line 186: Error: Multiple declaration for mapfile.
"./boost/regex/v4/fileiter.hpp", line 186: Error: _first is not defined.
"./boost/regex/v4/fileiter.hpp", line 186: Error: _last is not defined.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/fileiter.o" "libs/regex/build/../src/fileiter.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/fileiter.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/icu.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/icu.o" "libs/regex/build/../src/icu.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/icu.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/instances.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/instances.o" "libs/regex/build/../src/instances.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/instances.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/posix_api.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/posix_api.o" "libs/regex/build/../src/posix_api.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/posix_api.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex.o" "libs/regex/build/../src/regex.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_debug.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
3 Error(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_debug.o" "libs/regex/build/../src/regex_debug.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_debug.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_raw_buffer.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_raw_buffer.hpp", line 110: Error: The type "boost::re_detail::__global" is incomplete.
"./boost/regex/v4/regex_raw_buffer.hpp", line 110: Error: "," expected instead of "{".
"./boost/regex/v4/regex_raw_buffer.hpp", line 114: Error: A declaration was expected instead of "private".
"./boost/regex/v4/regex_raw_buffer.hpp", line 116: Error: A declaration was expected instead of "public".
"./boost/regex/v4/regex_raw_buffer.hpp", line 118: Error: Multiple declaration for raw_storage.
"./boost/regex/v4/regex_raw_buffer.hpp", line 119: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 121: Error: Type name expected instead of "raw_storage".
"./boost/regex/v4/regex_raw_buffer.hpp", line 122: Error: Illegal number of arguments for boost::re_detail::~re_detail().
"./boost/regex/v4/regex_raw_buffer.hpp", line 126: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 128: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 130: Error: n is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 130: Error: The function "size_type" must have a prototype.
"./boost/regex/v4/regex_raw_buffer.hpp", line 131: Error: n is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 133: Error: n is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 137: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 139: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 144: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 150: Error: The function "boost::re_detail::data() const" cannot be declared const.
"./boost/regex/v4/regex_raw_buffer.hpp", line 154: Error: size_type is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 169: Error: The type "void" is incomplete.
"./boost/regex/v4/regex_raw_buffer.hpp", line 169: Error: that is not defined.
"./boost/regex/v4/regex_raw_buffer.hpp", line 170: Error: "," expected instead of "{".
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_raw_buffer.o" "libs/regex/build/../src/regex_raw_buffer.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_raw_buffer.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_traits_defaults.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_traits_defaults.o" "libs/regex/build/../src/regex_traits_defaults.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/regex_traits_defaults.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/static_mutex.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/pending/static_mutex.hpp", line 39: Error: The type "boost::__global" is incomplete.
"./boost/regex/pending/static_mutex.hpp", line 44: Error: "," expected instead of "scoped_lock".
"./boost/regex/pending/static_mutex.hpp", line 45: Error: Use ";" to terminate declarations.
"./boost/regex/pending/static_mutex.hpp", line 51: Error: Multiple declaration for scoped_static_mutex_lock.
"./boost/regex/pending/static_mutex.hpp", line 51: Error: The type "boost::__global" is incomplete.
"./boost/regex/pending/static_mutex.hpp", line 51: Error: "," expected instead of "{".
"./boost/regex/pending/static_mutex.hpp", line 54: Error: Type name expected instead of "scoped_static_mutex_lock".
"./boost/regex/pending/static_mutex.hpp", line 54: Error: Illegal number of arguments for boost::~boost().
"./boost/regex/pending/static_mutex.hpp", line 56: Error: The function "boost::locked() const" cannot be declared const.
"./boost/regex/pending/static_mutex.hpp", line 57: Error: m_have_lock is not defined.
"./boost/regex/pending/static_mutex.hpp", line 60: Error: boost::operator const void*() const must be a member function.
"./boost/regex/pending/static_mutex.hpp", line 60: Error: The function "boost::operator const void*() const" cannot be declared const.
"./boost/regex/pending/static_mutex.hpp", line 61: Error: Can only use this within a non-static member function.
"./boost/regex/pending/static_mutex.hpp", line 65: Error: A declaration was expected instead of "private".
"./boost/regex/pending/static_mutex.hpp", line 66: Error: m_mutex must be initialized.
"./boost/regex/pending/static_mutex.hpp", line 71: Error: A declaration was expected instead of "}".
"libs/regex/build/../src/static_mutex.cpp", line 40: Error: scoped_static_mutex_lock is not defined.
"libs/regex/build/../src/static_mutex.cpp", line 40: Error: No direct declarator preceding "(".
"libs/regex/build/../src/static_mutex.cpp", line 47: Error: scoped_static_mutex_lock is not defined.
"libs/regex/build/../src/static_mutex.cpp", line 47: Error: Type name expected instead of "scoped_static_mutex_lock".
"libs/regex/build/../src/static_mutex.cpp", line 47: Error: constructor is not defined.
"libs/regex/build/../src/static_mutex.cpp", line 47: Error: No direct declarator preceding "(".
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/static_mutex.o" "libs/regex/build/../src/static_mutex.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/static_mutex.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/w32_regex_traits.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
3 Error(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/w32_regex_traits.o" "libs/regex/build/../src/w32_regex_traits.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/w32_regex_traits.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wc_regex_traits.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/c_regex_traits.hpp", line 54: Error: Use ";" to terminate declarations.
"./boost/regex/v4/c_regex_traits.hpp", line 55: Error: A declaration was expected instead of "{".
"./boost/regex/v4/c_regex_traits.hpp", line 56: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 56: Error: No direct declarator preceding "(".
"./boost/regex/v4/c_regex_traits.hpp", line 63: Error: ")" expected instead of "*".
"./boost/regex/v4/c_regex_traits.hpp", line 65: Error: p is not defined.
"./boost/regex/v4/c_regex_traits.hpp", line 69: Error: The function "boost::translate(char) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 73: Error: The function "boost::translate_nocase(char) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 89: Error: The function "boost::getloc() const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 91: Error: A declaration was expected instead of "private".
"./boost/regex/v4/c_regex_traits.hpp", line 93: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 93: Error: No direct declarator preceding "(".
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: No parameters provided for template.
"./boost/regex/v4/c_regex_traits.hpp", line 94: Error: boost::operator=(const int&) must be a member function.
"./boost/regex/v4/c_regex_traits.hpp", line 99: Error: Use ";" to terminate declarations.
"./boost/regex/v4/c_regex_traits.hpp", line 100: Error: A declaration was expected instead of "{".
"./boost/regex/v4/c_regex_traits.hpp", line 101: Error: "c_regex_traits()" is expected to return a value.
"./boost/regex/v4/c_regex_traits.hpp", line 114: Error: The function "translate(wchar_t) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 118: Error: The function "translate_nocase(wchar_t) const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 134: Error: The function "getloc() const" cannot be declared const.
"./boost/regex/v4/c_regex_traits.hpp", line 136: Error: A declaration was expected instead of "private".
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wc_regex_traits.o" "libs/regex/build/../src/wc_regex_traits.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wc_regex_traits.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wide_posix_api.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wide_posix_api.o" "libs/regex/build/../src/wide_posix_api.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/wide_posix_api.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/winstances.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 59: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 60: Error: "," expected instead of "const".
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: boost::regex_constants::syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 61: Error: "," expected instead of "get_default_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: boost::regex_constants::escape_syntax_type is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 62: Error: "," expected instead of "get_default_escape_syntax_type".
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 65: Error: "," expected instead of "bool".
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: __global is not defined.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: std::string is not a static data member.
"./boost/regex/v4/regex_traits_defaults.hpp", line 134: Error: "," expected instead of "lookup_default_collate_name".
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 251: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 252: Error: "," expected instead of "char".
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: Multiple declaration for __global.
"./boost/regex/v4/regex_traits_defaults.hpp", line 254: Error: "," expected instead of "wchar_t".
"./boost/regex/v4/regex_traits_defaults.hpp", line 255: Error: Multiple declaration for __global.
Compilation aborted, too many Error messages.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/winstances.o" "libs/regex/build/../src/winstances.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/winstances.o...
sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/usinstances.o
CC: Warning: Option -erroff=%none passed to ld, if ld is invoked, ignored otherwise
"./boost/regex/config.hpp", line 389: Error: "," expected instead of "void".
"./boost/regex/config.hpp", line 390: Error: Multiple declaration for __global.
"./boost/regex/config.hpp", line 390: Error: "," expected instead of "void".
3 Error(s) detected.
"CC" -library=stlport4 -xO4 -mt -erroff=%none -KPIC -DBOOST_ALL_NO_LIB=1 -DBOOST_HAS_ICU=1 -DBOOST_REGEX_DYN_LINK=1 -DNDEBUG -I"." -c -o "/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/usinstances.o" "libs/regex/build/../src/usinstances.cpp"
...failed sun.compile.c++ /home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi/usinstances.o...
...skipped <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi>libboost_regex.so.1.49.0 for lack of <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi>c_regex_traits.o...
...skipped <pstage/lib>libboost_regex.so.1.49.0 for lack of <p/home/boost/boost_1_49_0/lib/boost/bin.v2/libs/regex/build/sun/release/stdlib-sun-stlport/threading-multi>libboost_regex.so.1.49.0...
...skipped <pstage/lib>libboost_regex.so for lack of <pstage/lib>libboost_regex.so.1.49.0...
...failed updating 24 targets...
...skipped 5 targets...
How could I solve this issue?
Beforehand thanks for your valuable help.
2
3
Is Source avaialble as I cannot see it in the download page or SVN?
If yes, how can I access to do?
BNG
4
5
Hi All,
currently we do some research in how we can do implement the classical
Publisher/Subscriber pattern using ASIO. We had one thread that produces
some kind of a message and like to send it out to 1 to n subscribers via
TCP, where n is < 5. Message rate will be up to 800 Hz. My first idea is
that the producer thread puts the message in a blocking queue. On the other
end a consumer thread waits, takes the message and send it to the
subscribers via synchronous or asynchronous send. One requirement is, when
one connection blocks (because their client is buggy/hangs) it's ok to drop
messages for that connection, but we should deliver to the other
subscribers. It's also a one way communication from publisher to subscriber.
Can someone provide some hints for best practices / design patterns /
comments please?
If I show up with some other lib like ZeroMQ my colleagues will fry me, so
it's the easiest to use boost also for that task..
Best,
Ingo
3
2
I noticed: “ trait is_convertible in the C==0x standard.” where == should be ++
in libs/utility/doc/html/declval.html
Is anyone around who can simply fix that typo?
—John
2
1