Missing configure check for strerror function

Reviewed By: dreiss

Test Plan: Run configure script


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665324 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/compiler/cpp/configure.ac b/compiler/cpp/configure.ac
index 683133e..ba08e2f 100644
--- a/compiler/cpp/configure.ac
+++ b/compiler/cpp/configure.ac
@@ -20,6 +20,8 @@
 
 AC_CHECK_FUNCS([strdup])
 
+AC_CHECK_FUNCS([strerror])
+
 AC_FUNC_MALLOC
 
 AC_FUNC_REALLOC