1 Code obtained from 2 ------------------ 3 4 https://re2.googlecode.com/files/re2-20130115.tgz 5 6 Version 7 ------- 8 9 re2-20130115.tgz 10 11 Changes required to build using stlport on Android as follows (full diff) 12 ------------------------------------------------------------------------- 13 util/util.h: 14 15 44,53c44 16 < #if defined(ANDROID) 17 < 18 < #if defined(_STLPORT_VERSION) 19 < #include <unordered_set> // using stlport 20 < #else 21 < #include <tr1/unordered_set> // using gnustl 22 < #endif 23 < using std::tr1::unordered_set; 24 < 25 < #elif defined(__GNUC__) && !defined(USE_CXX0X) 26 --- 27 > #if defined(__GNUC__) && !defined(USE_CXX0X) 28 29