build+tests: Fixing c++11 mode compilation and correcting integrated test with faces

Change-Id: I32e34d6b2ee8cfd85ec83f62323dd7a51f2238d6
diff --git a/src/common.hpp b/src/common.hpp
index aa38241..ed2bf19 100644
--- a/src/common.hpp
+++ b/src/common.hpp
@@ -82,7 +82,18 @@
 
 using std::function;
 using std::bind;
-using std::placeholders; // _1, _2, ..
+using std::placeholders::_1;
+using std::placeholders::_2;
+using std::placeholders::_3;
+using std::placeholders::_4;
+using std::placeholders::_5;
+using std::placeholders::_6;
+using std::placeholders::_7;
+using std::placeholders::_8;
+using std::placeholders::_9;
+
+using std::ref;
+using std::cref;
 
 } // namespace ndn
 
@@ -114,6 +125,9 @@
 using boost::function;
 using boost::bind;
 
+using boost::ref;
+using boost::cref;
+
 } // namespace ndn
 
 #endif // NDN_CXX_HAVE_CXX11