Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 97226 invoked from network); 17 Nov 2006 12:30:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Nov 2006 12:30:26 -0000 Received: (qmail 17717 invoked by uid 500); 17 Nov 2006 12:30:36 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 17698 invoked by uid 500); 17 Nov 2006 12:30:36 -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 17689 invoked by uid 99); 17 Nov 2006 12:30:36 -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:30:36 -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:30:25 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id CB15E1A9846; Fri, 17 Nov 2006 04:29:53 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r476120 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Date: Fri, 17 Nov 2006 12:29:53 -0000 To: activemq-commits@geronimo.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061117122953.CB15E1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Fri Nov 17 04:29:52 2006 New Revision: 476120 URL: http://svn.apache.org/viewvc?view=rev&rev=476120 Log: Add checks for size of types char = 1 byte short = 2 bytes int = 4 bytes long long = 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=476120&r1=476119&r2=476120 ============================================================================== --- incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac (original) +++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/configure.ac Fri Nov 17 04:29:52 2006 @@ -63,6 +63,11 @@ AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) +AC_CHECK_SIZEOF(char, 1) +AC_CHECK_SIZEOF(short, 2) +AC_CHECK_SIZEOF(int, 4) +AC_CHECK_SIZEOF(long long, 8) + AC_CHECK_HEADERS([uuid.h]) AC_CHECK_HEADERS([uuid/uuid.h]) AC_CHECK_HEADERS([objbase.h])