blob: 4911c3c07e6630815948b945192f656ae6e37c4c [file] [log] [blame]
Alexander Gutkin0d4c5232013-02-28 13:47:27 +00001Code obtained from
2------------------
3
4https://re2.googlecode.com/files/re2-20130115.tgz
Ian Hodson2ee91b42012-05-14 12:29:36 +01005
6Version
7-------
8
Alexander Gutkin0d4c5232013-02-28 13:47:27 +00009re2-20130115.tgz
Ian Hodson2ee91b42012-05-14 12:29:36 +010010
11Changes required to build using stlport on Android as follows (full diff)
12-------------------------------------------------------------------------
Alexander Gutkin0d4c5232013-02-28 13:47:27 +000013util/util.h:
14
1544,53c44
Ian Hodson2ee91b42012-05-14 12:29:36 +010016< #if defined(ANDROID)
17<
Alexander Gutkin0d4c5232013-02-28 13:47:27 +000018< #if defined(_STLPORT_VERSION)
19< #include <unordered_set> // using stlport
20< #else
21< #include <tr1/unordered_set> // using gnustl
22< #endif
Ian Hodson2ee91b42012-05-14 12:29:36 +010023< using std::tr1::unordered_set;
Alexander Gutkin0d4c5232013-02-28 13:47:27 +000024<
Ian Hodson2ee91b42012-05-14 12:29:36 +010025< #elif defined(__GNUC__) && !defined(USE_CXX0X)
26---
27> #if defined(__GNUC__) && !defined(USE_CXX0X)
Alexander Gutkin0d4c5232013-02-28 13:47:27 +000028