Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 32233 invoked from network); 11 Jul 2007 18:42:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jul 2007 18:42:28 -0000 Received: (qmail 5648 invoked by uid 500); 11 Jul 2007 18:42:31 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 5617 invoked by uid 500); 11 Jul 2007 18:42:31 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 5608 invoked by uid 99); 11 Jul 2007 18:42:31 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jul 2007 11:42:31 -0700 X-ASF-Spam-Status: No, hits=-99.5 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; Wed, 11 Jul 2007 11:42:27 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 470FF1A981A; Wed, 11 Jul 2007 11:42:07 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r555363 - in /activemq/activemq-cpp/trunk/src/decaf: configure.ac decaf-config.in Date: Wed, 11 Jul 2007 18:42:06 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070711184207.470FF1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Wed Jul 11 11:42:05 2007 New Revision: 555363 URL: http://svn.apache.org/viewvc?view=rev&rev=555363 Log: http://issues.apache.org/activemq/browse/AMQCPP-103 Adding on more configuration tools for getting the decaf deps in place. Added: activemq/activemq-cpp/trunk/src/decaf/decaf-config.in Modified: activemq/activemq-cpp/trunk/src/decaf/configure.ac Modified: activemq/activemq-cpp/trunk/src/decaf/configure.ac URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/configure.ac?view=diff&rev=555363&r1=555362&r2=555363 ============================================================================== --- activemq/activemq-cpp/trunk/src/decaf/configure.ac (original) +++ activemq/activemq-cpp/trunk/src/decaf/configure.ac Wed Jul 11 11:42:05 2007 @@ -165,4 +165,4 @@ AC_CONFIG_FILES(src/test-benchmarks/Makefile) fi -AC_OUTPUT +AC_OUTPUT([decaf-config], [chmod a+x decaf-config]) Added: activemq/activemq-cpp/trunk/src/decaf/decaf-config.in URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/decaf/decaf-config.in?view=auto&rev=555363 ============================================================================== --- activemq/activemq-cpp/trunk/src/decaf/decaf-config.in (added) +++ activemq/activemq-cpp/trunk/src/decaf/decaf-config.in Wed Jul 11 11:42:05 2007 @@ -0,0 +1,115 @@ +#!/bin/sh + +# --------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# --------------------------------------------------------------------------- + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +exec_prefix_set=no +includedir=@includedir@ + +usage() +{ + cat <&2 +fi + +while test $# -gt 0; do + case "$1" in + -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) optarg= ;; + esac + + case $1 in + --prefix=*) + prefix=$optarg + if test $exec_prefix_set = no ; then + exec_prefix=$optarg + fi + ;; + --prefix) + echo_prefix=yes + ;; + --exec-prefix=*) + exec_prefix=$optarg + exec_prefix_set=yes + ;; + --exec-prefix) + echo_exec_prefix=yes + ;; + --version) + echo @DECAF_VERSION@ + ;; + --help) + usage 0 + ;; + --cflags) + echo_cflags=yes + ;; + --libs) + echo_libs=yes + ;; + *) + usage 1 1>&2 + ;; + esac + shift +done + +if test "$echo_prefix" = "yes"; then + echo $prefix +fi + +if test "$echo_exec_prefix" = "yes"; then + echo $exec_prefix +fi + +if test "$echo_cflags" = "yes"; then + if test "$includedir" != "/usr/include" ; then + echo -I$includedir + fi +fi + +if test "$echo_libs" = "yes"; then + if test @libdir@ != /usr/lib ; then + my_linker_flags="-L@libdir@" + fi + echo ${my_linker_flags} -ldecaf +fi + + + +