Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 99609 invoked from network); 17 Nov 2006 12:38:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Nov 2006 12:38:51 -0000 Received: (qmail 37702 invoked by uid 500); 17 Nov 2006 12:39:02 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 37689 invoked by uid 500); 17 Nov 2006 12:39:02 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 37680 invoked by uid 99); 17 Nov 2006 12:39:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Nov 2006 04:39:01 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Nov 2006 04:38:51 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7840B1A9846; Fri, 17 Nov 2006 04:38:19 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r476122 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Date: Fri, 17 Nov 2006 12:38:19 -0000 To: activemq-commits@geronimo.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061117123819.7840B1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Fri Nov 17 04:38:18 2006 New Revision: 476122 URL: http://svn.apache.org/viewvc?view=rev&rev=476122 Log: Add checks for size of types char = 1 byte short = 2 bytes int = 4 bytes long long = 8 bytes float = 4 bytes double = 8 bytes Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac?view=diff&rev=476122&r1=476121&r2=476122 ============================================================================== --- incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac (original) +++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Fri Nov 17 04:38:18 2006 @@ -67,6 +67,8 @@ AC_CHECK_SIZEOF(short, 2) AC_CHECK_SIZEOF(int, 4) AC_CHECK_SIZEOF(long long, 8) +AC_CHECK_SIZEOF(float, 4) +AC_CHECK_SIZEOF(double, 8) AC_CHECK_HEADERS([uuid.h]) AC_CHECK_HEADERS([uuid/uuid.h])