Thrift-1326:on some platforms, #include <stdint.h> is necessary to be included in Thrift.h
Client: contrib/fb303
Patch: Jake Farrell

Adding check for needed headers to fb303 configure.ac



git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1339969 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/contrib/fb303/configure.ac b/contrib/fb303/configure.ac
index 67cc110..c94e252 100644
--- a/contrib/fb303/configure.ac
+++ b/contrib/fb303/configure.ac
@@ -78,6 +78,10 @@
 # Change Makefile.am also to add subdirectly.
 AC_CONFIG_FILES(Makefile cpp/Makefile py/Makefile)
 
+# Check for headers
+AC_CHECK_HEADERS([inttypes.h])
+AC_CHECK_HEADERS([netinet/in.h])
+
 ############################################################################
 # DO NOT TOUCH.