Hi all,
I have a problem with an application build with the current debian/etch
libboost-regex lib.
I am not sure if the problem results from an intended behaviour change of
the regex lib
or if its a bug of either the regex lib or the debian package.
The following test app worked flawlessly with several older boost regex
versions
and I would like to understand why it doesn't work anymore using the lib
from debian/etch.
Do I have to adjust the invocation parameters of boost_merge for the
current version?
I do not unnecessarily want to force the users of my production apps
to have to update their match patterns over dozens of cfg files from
"(.*)" to "^(.*)$".
TIA for any hints,
Bruno
--
bruno.voigt@ic3s.de
// debian/etch: dpkg -l *boost*
// ii libboost-dev 1.33.1-10 Boost C++ Libraries
development files
// ii libboost-regex-dev 1.33.1-10 regular expression
library for C++
// ii libboost-regex1.33.1 1.33.1-10 regular expression
library for C++
// ii libboost-thread-dev 1.33.1-10 portable C++
multi-threading
// ii libboost-thread1.33.1 1.33.1-10 portable C++
multi-threading
//
// build: g++ -lboost_regex regex_merge_test.cpp
//
#include <cstdlib>
#include <string>
#include <iostream>
#include