Return-Path: Delivered-To: apmail-incubator-thrift-commits-archive@minotaur.apache.org Received: (qmail 7095 invoked from network); 2 Apr 2009 23:06:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Apr 2009 23:06:02 -0000 Received: (qmail 89641 invoked by uid 500); 2 Apr 2009 23:06:02 -0000 Delivered-To: apmail-incubator-thrift-commits-archive@incubator.apache.org Received: (qmail 89610 invoked by uid 500); 2 Apr 2009 23:06:02 -0000 Mailing-List: contact thrift-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: thrift-dev@incubator.apache.org Delivered-To: mailing list thrift-commits@incubator.apache.org Received: (qmail 89601 invoked by uid 99); 2 Apr 2009 23:06:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Apr 2009 23:06:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Apr 2009 23:06:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E79EA23889D0; Thu, 2 Apr 2009 23:05:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r761464 - in /incubator/thrift/trunk: compiler/cpp/src/parse/t_type.h lib/cpp/src/Thrift.h lib/cpp/src/concurrency/Thread.h lib/cpp/src/protocol/TBase64Utils.h Date: Thu, 02 Apr 2009 23:05:40 -0000 To: thrift-commits@incubator.apache.org From: dreiss@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090402230540.E79EA23889D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dreiss Date: Thu Apr 2 23:05:40 2009 New Revision: 761464 URL: http://svn.apache.org/viewvc?rev=761464&view=rev Log: cpp: Fix compiler and library compilation with newer glibc Modified: incubator/thrift/trunk/compiler/cpp/src/parse/t_type.h incubator/thrift/trunk/lib/cpp/src/Thrift.h incubator/thrift/trunk/lib/cpp/src/concurrency/Thread.h incubator/thrift/trunk/lib/cpp/src/protocol/TBase64Utils.h Modified: incubator/thrift/trunk/compiler/cpp/src/parse/t_type.h URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/compiler/cpp/src/parse/t_type.h?rev=761464&r1=761463&r2=761464&view=diff ============================================================================== --- incubator/thrift/trunk/compiler/cpp/src/parse/t_type.h (original) +++ incubator/thrift/trunk/compiler/cpp/src/parse/t_type.h Thu Apr 2 23:05:40 2009 @@ -23,6 +23,7 @@ #include #include #include +#include #include "t_doc.h" // What's worse? This, or making a src/parse/non_inlined.cc? Modified: incubator/thrift/trunk/lib/cpp/src/Thrift.h URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/Thrift.h?rev=761464&r1=761463&r2=761464&view=diff ============================================================================== --- incubator/thrift/trunk/lib/cpp/src/Thrift.h (original) +++ incubator/thrift/trunk/lib/cpp/src/Thrift.h Thu Apr 2 23:05:40 2009 @@ -23,6 +23,7 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include #include #ifdef HAVE_INTTYPES_H Modified: incubator/thrift/trunk/lib/cpp/src/concurrency/Thread.h URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/concurrency/Thread.h?rev=761464&r1=761463&r2=761464&view=diff ============================================================================== --- incubator/thrift/trunk/lib/cpp/src/concurrency/Thread.h (original) +++ incubator/thrift/trunk/lib/cpp/src/concurrency/Thread.h Thu Apr 2 23:05:40 2009 @@ -20,6 +20,7 @@ #ifndef _THRIFT_CONCURRENCY_THREAD_H_ #define _THRIFT_CONCURRENCY_THREAD_H_ 1 +#include #include #include Modified: incubator/thrift/trunk/lib/cpp/src/protocol/TBase64Utils.h URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/protocol/TBase64Utils.h?rev=761464&r1=761463&r2=761464&view=diff ============================================================================== --- incubator/thrift/trunk/lib/cpp/src/protocol/TBase64Utils.h (original) +++ incubator/thrift/trunk/lib/cpp/src/protocol/TBase64Utils.h Thu Apr 2 23:05:40 2009 @@ -20,6 +20,7 @@ #ifndef _THRIFT_PROTOCOL_TBASE64UTILS_H_ #define _THRIFT_PROTOCOL_TBASE64UTILS_H_ +#include #include namespace apache { namespace thrift { namespace protocol {