diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-03-14 17:24:28 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-03-14 17:24:28 +0000 |
| commit | 125e49d4df65142a89b69e7d367b34f01ea354a1 (patch) | |
| tree | 7b29e09d3a47570897109ef4f8195e1e852ce672 /qpid/cpp/src/Makefile.am | |
| parent | 7bddceb25095cd8002e03cbc2ffd312922ed1c53 (diff) | |
| download | qpid-python-125e49d4df65142a89b69e7d367b34f01ea354a1.tar.gz | |
QPID-4622: Implement 'LIKE' string matching operations in selector
- This implements <expression> [NOT] LIKE <string> [ESCAPE <character>]
- The implementation uses the posix regex library (in BRE mode) on
Unix systems
- It uses std::tr1::regex on Visual Studio (in std::tr1::regex::basic mode)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1456561 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/Makefile.am')
| -rw-r--r-- | qpid/cpp/src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am index 9ec883839e..1b2d0fcbb4 100644 --- a/qpid/cpp/src/Makefile.am +++ b/qpid/cpp/src/Makefile.am @@ -497,6 +497,7 @@ libqpidcommon_la_SOURCES += \ qpid/sys/PollableQueue.h \ qpid/sys/Poller.h \ qpid/sys/Probes.h \ + qpid/sys/regex.h \ qpid/sys/Runnable.cpp \ qpid/sys/ScopedIncrement.h \ qpid/sys/SecurityLayer.h \ |
