From activemq-dev-return-3223-apmail-geronimo-activemq-dev-archive=geronimo.apache.org@geronimo.apache.org Thu Oct 05 18:40:23 2006 Return-Path: Delivered-To: apmail-geronimo-activemq-dev-archive@www.apache.org Received: (qmail 78359 invoked from network); 5 Oct 2006 18:40:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Oct 2006 18:40:23 -0000 Received: (qmail 22045 invoked by uid 500); 5 Oct 2006 18:40:07 -0000 Delivered-To: apmail-geronimo-activemq-dev-archive@geronimo.apache.org Received: (qmail 21969 invoked by uid 500); 5 Oct 2006 18:40:06 -0000 Mailing-List: contact activemq-dev-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-dev@geronimo.apache.org Received: (qmail 21858 invoked by uid 99); 5 Oct 2006 18:40:06 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Oct 2006 11:40:06 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=chirino@gmail.com; domainkeys=good X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [66.249.92.171] ([66.249.92.171:52923] helo=ug-out-1314.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 6F/57-04543-18155254 for ; Thu, 05 Oct 2006 11:40:01 -0700 Received: by ug-out-1314.google.com with SMTP id 29so262764ugc for ; Thu, 05 Oct 2006 11:39:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=YWs1nS7RGNr4SGdKi1Sdvn08bvZddJhl2V1tU06fX56KBk0bUp/P6C1FDe4QVHxlo53laTAUdHp+RQxvpXv/VuXm4js4RX8xvHzuT4UvOQTzTaIMDlLKNLO+Hr/0zv5ysBHTTwVmpW2c7Uvga1s9FNCE4FOLqllsEU75HF7Fo3o= Received: by 10.78.178.5 with SMTP id a5mr755180huf; Thu, 05 Oct 2006 11:39:58 -0700 (PDT) Received: by 10.78.142.5 with HTTP; Thu, 5 Oct 2006 11:39:58 -0700 (PDT) Message-ID: Date: Thu, 5 Oct 2006 14:39:58 -0400 From: "Hiram Chirino" Sender: chirino@gmail.com To: activemq-dev@geronimo.apache.org Subject: Re: [activemq-cpp] It now compiles under cygwin In-Reply-To: <5A211522579EBD4A83155ED7FA153063013B62BB@corpatsmail1.corp.sensis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <5A211522579EBD4A83155ED7FA153063013B62BB@corpatsmail1.corp.sensis.com> X-Google-Sender-Auth: 0b474c0044df0a0c X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Yep! You still need to generate the ./configure file in the base directory using ./autogen.sh but then do a: mkdr out cd out ../configure make On 10/5/06, Bish, Tim wrote: > Is there anyway that this build system can be modified to put the object > files and other build artifacts into someplace other than the root dir > of the code being built? This really clutter ups the workspace. > Previoulsy we had everything going into the out dir under the root > activemq folder. > > > -----Original Message----- > > From: chirino@gmail.com [mailto:chirino@gmail.com] On Behalf Of Hiram > > Chirino > > Sent: Tuesday, October 03, 2006 4:08 PM > > To: activemq-dev@geronimo.apache.org > > Subject: Re: [activemq-cpp] It now compiles under cygwin > > > > Ah.. I just did a source build of cppunit and I see what's happening. > > The default prefix for cppunit is /usr/local, so it m4 file got > > installed to /usr/local/share/aclocal which is not picked up > > automatically. If we configure cppunit with > > > > ./configure --prefix=/usr > > > > Then everything should work better out of the box. Including when we > > configure activemq-cpp as now I have to use: > > > > ./configure --with-cppunit-prefix=/usr/local > > > > To let it know where cppunit is at (that's if I want to run the unit > > tests). > > > > > > On 10/3/06, Bish, Tim wrote: > > > > > > > > > > > > > AC_DEFUN is line 17 > > > > > > > > > > dnl AM_PATH_LIBMCRYPT([MINIMUM-VERSION, [ACTION-IF-FOUND [, > > > > > ACTION-IF-NOT-FOUND ]]]) > > > > > dnl Test for libmcrypt, and define LIBMCRYPT_CFLAGS and > > > LIBMCRYPT_LIBS > > > > > dnl > > > > > AC_DEFUN(AM_PATH_LIBMCRYPT, > > > > > > > > Change this line to: > > > > AC_DEFUN([AM_PATH_LIBMCRYPT], > > > > > > > > > > K, that got rid of that warning. > > > > > > > > > > > doh.. I may need to look into this some more. Basically what you > > > > want to do is installed the cppunit.m4 file to either the > > > > activemq-cpp/m4 directory or the /usr/share/aclocal > > > > Once it's there it should get picked up and be good to go. But I > > > > would have thought that if you built cppunit from source it would > have > > > > installed the m4 file to the right place. > > > > > > > > We should look into seeing if that .m4 file can be redistributed > so > > > > that we can just check it into our m4 directory. I've got a > feeling > > > > that it can be redistributed since it just gets sourced into the > > > > configure script when you run autogen.sh > > > > > > > > > > I put cppunit.m4 in my activemq-cpp m4 folder and its building now. > I > > > may just move that over the /usr/shar/alcohol as it should be there > > > anyway. > > > > > > > > > > > > > > > -- > > Regards, > > Hiram > > > > Blog: http://hiramchirino.com > -- Regards, Hiram Blog: http://hiramchirino.com