You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2003/11/05 10:14:29 UTC

cvs commit: jakarta-tomcat-connectors/jk/support jk_exec.m4 jk_pcre.m4 jk_ws.m4 jk_tchome.m4 jk_apr.m4 jk_apxs.m4 jk_apache_static.m4 jk_java.m4

hgomez      2003/11/05 01:14:29

  Modified:    jk/support jk_pcre.m4 jk_ws.m4 jk_tchome.m4 jk_apr.m4
                        jk_apxs.m4 jk_apache_static.m4 jk_java.m4
  Added:       jk/support jk_exec.m4
  Log:
  Fix apxs (broken by my Eclipse) and update copyright notice
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-tomcat-connectors/jk/support/jk_pcre.m4
  
  Index: jk_pcre.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_pcre.m4,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jk_pcre.m4	23 Oct 2002 07:58:46 -0000	1.2
  +++ jk_pcre.m4	5 Nov 2003 09:14:28 -0000	1.3
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.3       +2 -2      jakarta-tomcat-connectors/jk/support/jk_ws.m4
  
  Index: jk_ws.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_ws.m4,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jk_ws.m4	25 Sep 2003 15:23:56 -0000	1.2
  +++ jk_ws.m4	5 Nov 2003 09:14:28 -0000	1.3
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.3       +2 -2      jakarta-tomcat-connectors/jk/support/jk_tchome.m4
  
  Index: jk_tchome.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_tchome.m4,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jk_tchome.m4	25 Sep 2003 15:23:56 -0000	1.2
  +++ jk_tchome.m4	5 Nov 2003 09:14:28 -0000	1.3
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.7       +2 -2      jakarta-tomcat-connectors/jk/support/jk_apr.m4
  
  Index: jk_apr.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_apr.m4,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- jk_apr.m4	4 Nov 2003 12:48:05 -0000	1.6
  +++ jk_apr.m4	5 Nov 2003 09:14:28 -0000	1.7
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.8       +2 -130    jakarta-tomcat-connectors/jk/support/jk_apxs.m4
  
  Index: jk_apxs.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_apxs.m4,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- jk_apxs.m4	4 Nov 2003 12:48:05 -0000	1.7
  +++ jk_apxs.m4	5 Nov 2003 09:14:28 -0000	1.8
  @@ -1,5 +1,4 @@
   dnl  =========================================================================
  -dnl  =========================================================================
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  @@ -57,133 +56,6 @@
   dnl  =========================================================================
   
   dnl --------------------------------------------------------------------------
  -dnl Author Pier Fumagalli <pi...@betaversion.org>
  -dnl Version $Id$
  -dnl --------------------------------------------------------------------------
  -
  -dnl --------------------------------------------------------------------------
  -dnl JK_EXEC
  -dnl   Execute a program filtering its output (pretty printing).
  -dnl
  -dnl   Parameters:
  -dnl     $1 => name of the variable containing the return value (error code).
  -dnl     $2 => name of the binary/script to invoke
  -dnl     $3 => message used for pretty printing output
  -dnl     $4 => the directory where the command must be executed
  -dnl --------------------------------------------------------------------------
  -AC_DEFUN(
  -  [JK_EXEC],
  -  [
  -    jk_exec_curdir="`pwd`"
  -    if test -d "$4" ; then
  -      cd "$4"
  -    else
  -      AC_MSG_ERROR([can't switch to directory $4])
  -    fi
  -
  -    echo "  invoking \"$2\""
  -    echo "  in directory \"$4\""
  -    echo "-1" > retvalue.tmp
  -
  -    set $2
  -    jk_exec_file=[$]1
  -    if test ! -x "${jk_exec_file}" ; then
  -      cd "${jk_exec_curdir}"
  -      AC_MSG_ERROR([cannot find or execute \"${jk_exec_file}\" in \"$4\"])
  -      exit 1
  -    fi
  -    unset jk_exec_file
  -
  -    {
  -      $2
  -      echo "jk_exec_retvalue $?"
  -    } | {
  -      jk_exec_ret=0
  -      while true ; do
  -        read jk_exec_first jk_exec_line
  -        if test ! "$?" -eq "0" ; then
  -          break
  -        else
  -          if test "${jk_exec_first}" = "jk_exec_retvalue" ; then
  -            jk_exec_ret="${jk_exec_line}"
  -          else
  -            if test -n "${jk_exec_line}" ; then
  -             echo "    $3: ${jk_exec_first} ${jk_exec_line}"
  -            fi
  -          fi
  -        fi
  -      done
  -      echo "${jk_exec_ret}" > retvalue.tmp
  -      unset jk_exec_first
  -      unset jk_exec_line
  -      unset jk_exec_ret
  -    }
  -
  -    $1="`cat retvalue.tmp`"
  -    rm -f retvalue.tmp
  -    echo "  execution of \"$2\""
  -    echo "  returned with value \"${$1}\""
  -
  -    cd "${jk_exec_curdir}"
  -    unset jk_exec_curdir
  -  ])
  -dnl
  -dnl                  The Apache Software License,  Version 1.1
  -dnl
  -dnl           Copyright (c) 1   -2001 The Apache Software Foundation.
  -dnl                            All rights reserved.
  -dnl
  -dnl  =========================================================================
  -dnl
  -dnl  Redistribution and use in source and binary forms,  with or without modi-
  -dnl  fication, are permitted provided that the following conditions are met:
  -dnl
  -dnl  1. Redistributions of source code  must retain the above copyright notice
  -dnl     notice, this list of conditions and the following disclaimer.
  -dnl
  -dnl  2. Redistributions  in binary  form  must  reproduce the  above copyright
  -dnl     notice,  this list of conditions  and the following  disclaimer in the
  -dnl     documentation and/or other materials provided with the distribution.
  -dnl
  -dnl  3. The end-user documentation  included with the redistribution,  if any,
  -dnl     must include the following acknowlegement:
  -dnl
  -dnl        "This product includes  software developed  by the Apache  Software
  -dnl         Foundation <http://www.apache.org/>."
  -dnl
  -dnl     Alternately, this acknowlegement may appear in the software itself, if
  -dnl     and wherever such third-party acknowlegements normally appear.
  -dnl
  -dnl  4. The names "The Jakarta Project",  "Apache WebApp Module",  and "Apache
  -dnl     Software Foundation"  must not be used to endorse or promote  products
  -dnl     derived  from this  software  without  prior  written  permission. For
  -dnl     written permission, please contact <ap...@apache.org>.
  -dnl
  -dnl  5. Products derived from this software may not be called "Apache" nor may
  -dnl     "Apache" appear in their names without prior written permission of the
  -dnl     Apache Software Foundation.
  -dnl
  -dnl  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES
  -dnl  INCLUDING, BUT NOT LIMITED TO,  THE IMPLIED WARRANTIES OF MERCHANTABILITY
  -dnl  AND FITNESS FOR  A PARTICULAR PURPOSE  ARE DISCLAIMED.  IN NO EVENT SHALL
  -dnl  THE APACHE  SOFTWARE  FOUNDATION OR  ITS CONTRIBUTORS  BE LIABLE  FOR ANY
  -dnl  DIRECT,  INDIRECT,   INCIDENTAL,  SPECIAL,  EXEMPLARY,  OR  CONSEQUENTIAL
  -dnl  DAMAGES (INCLUDING,  BUT NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE GOODS
  -dnl  OR SERVICES;  LOSS OF USE,  DATA,  OR PROFITS;  OR BUSINESS INTERRUPTION)
  -dnl  HOWEVER CAUSED AND  ON ANY  THEORY  OF  LIABILITY,  WHETHER IN  CONTRACT,
  -dnl  STRICT LIABILITY, OR TORT  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  -dnl  ANY  WAY  OUT OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF  ADVISED  OF THE
  -dnl  POSSIBILITY OF SUCH DAMAGE.
  -dnl
  -dnl  =========================================================================
  -dnl
  -dnl  This software  consists of voluntary  contributions made  by many indivi-
  -dnl  duals on behalf of the  Apache Software Foundation.  For more information
  -dnl  on the Apache Software Foundation, please see <http://www.apache.org/>.
  -dnl
  -dnl  =========================================================================
  -
  -dnl --------------------------------------------------------------------------
   dnl Author Henri Gomez <hg...@apache.org>
   dnl
   dnl Inspired by Pier works on webapp m4 macros :)
  @@ -289,7 +161,7 @@
     AC_SUBST(APACHE$1_INCDIR)
     AC_SUBST(APACHE$1_INCL)
     AC_SUBST(APACHE$1_LIBEXEC)
  -  AC_SUBST(APACHE$1_CC)  
  +  AC_SUBST(APACHE$1_CC)
     AC_SUBST(APXS$1_LDFLAGS)
   
   ])
  
  
  
  1.3       +2 -2      jakarta-tomcat-connectors/jk/support/jk_apache_static.m4
  
  Index: jk_apache_static.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_apache_static.m4,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- jk_apache_static.m4	25 Sep 2003 15:23:56 -0000	1.2
  +++ jk_apache_static.m4	5 Nov 2003 09:14:28 -0000	1.3
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.5       +2 -2      jakarta-tomcat-connectors/jk/support/jk_java.m4
  
  Index: jk_java.m4
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/support/jk_java.m4,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- jk_java.m4	3 Nov 2003 09:49:58 -0000	1.4
  +++ jk_java.m4	5 Nov 2003 09:14:28 -0000	1.5
  @@ -2,7 +2,7 @@
   dnl
   dnl                  The Apache Software License,  Version 1.1
   dnl
  -dnl           Copyright (c) 1999-2001 The Apache Software Foundation.
  +dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
   dnl                            All rights reserved.
   dnl
   dnl  =========================================================================
  
  
  
  1.1                  jakarta-tomcat-connectors/jk/support/jk_exec.m4
  
  Index: jk_exec.m4
  ===================================================================
  dnl  =========================================================================
  dnl
  dnl                  The Apache Software License,  Version 1.1
  dnl
  dnl           Copyright (c) 1999-2003 The Apache Software Foundation.
  dnl                            All rights reserved.
  dnl
  dnl  =========================================================================
  dnl
  dnl  Redistribution and use in source and binary forms,  with or without modi-
  dnl  fication, are permitted provided that the following conditions are met:
  dnl
  dnl  1. Redistributions of source code  must retain the above copyright notice
  dnl     notice, this list of conditions and the following disclaimer.
  dnl
  dnl  2. Redistributions  in binary  form  must  reproduce the  above copyright
  dnl     notice,  this list of conditions  and the following  disclaimer in the
  dnl     documentation and/or other materials provided with the distribution.
  dnl
  dnl  3. The end-user documentation  included with the redistribution,  if any,
  dnl     must include the following acknowlegement:
  dnl
  dnl        "This product includes  software developed  by the Apache  Software
  dnl         Foundation <http://www.apache.org/>."
  dnl
  dnl     Alternately, this acknowlegement may appear in the software itself, if
  dnl     and wherever such third-party acknowlegements normally appear.
  dnl
  dnl  4. The names "The Jakarta Project",  "Apache WebApp Module",  and "Apache
  dnl     Software Foundation"  must not be used to endorse or promote  products
  dnl     derived  from this  software  without  prior  written  permission. For
  dnl     written permission, please contact <ap...@apache.org>.
  dnl
  dnl  5. Products derived from this software may not be called "Apache" nor may
  dnl     "Apache" appear in their names without prior written permission of the
  dnl     Apache Software Foundation.
  dnl
  dnl  THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES
  dnl  INCLUDING, BUT NOT LIMITED TO,  THE IMPLIED WARRANTIES OF MERCHANTABILITY
  dnl  AND FITNESS FOR  A PARTICULAR PURPOSE  ARE DISCLAIMED.  IN NO EVENT SHALL
  dnl  THE APACHE  SOFTWARE  FOUNDATION OR  ITS CONTRIBUTORS  BE LIABLE  FOR ANY
  dnl  DIRECT,  INDIRECT,   INCIDENTAL,  SPECIAL,  EXEMPLARY,  OR  CONSEQUENTIAL
  dnl  DAMAGES (INCLUDING,  BUT NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE GOODS
  dnl  OR SERVICES;  LOSS OF USE,  DATA,  OR PROFITS;  OR BUSINESS INTERRUPTION)
  dnl  HOWEVER CAUSED AND  ON ANY  THEORY  OF  LIABILITY,  WHETHER IN  CONTRACT,
  dnl  STRICT LIABILITY, OR TORT  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  dnl  ANY  WAY  OUT OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF  ADVISED  OF THE
  dnl  POSSIBILITY OF SUCH DAMAGE.
  dnl
  dnl  =========================================================================
  dnl
  dnl  This software  consists of voluntary  contributions made  by many indivi-
  dnl  duals on behalf of the  Apache Software Foundation.  For more information
  dnl  on the Apache Software Foundation, please see <http://www.apache.org/>.
  dnl
  dnl  =========================================================================
  
  dnl --------------------------------------------------------------------------
  dnl
  dnl Inspired by Pier works on webapp m4 macros :)
  dnl
  dnl Version $Id$
  dnl --------------------------------------------------------------------------
  
  dnl --------------------------------------------------------------------------
  dnl JK_EXEC
  dnl   Execute a program filtering its output (pretty printing).
  dnl
  dnl   Parameters:
  dnl     $1 => name of the variable containing the return value (error code).
  dnl     $2 => name of the binary/script to invoke
  dnl     $3 => message used for pretty printing output
  dnl     $4 => the directory where the command must be executed
  dnl --------------------------------------------------------------------------
  AC_DEFUN(
    [JK_EXEC],
    [
      jk_exec_curdir="`pwd`"
      if test -d "$4" ; then
        cd "$4"
      else
        AC_MSG_ERROR([can't switch to directory $4])
      fi
  
      echo "  invoking \"$2\""
      echo "  in directory \"$4\""
      echo "-1" > retvalue.tmp
  
      set $2
      jk_exec_file=[$]1
      if test ! -x "${jk_exec_file}" ; then
        cd "${jk_exec_curdir}"
        AC_MSG_ERROR([cannot find or execute \"${jk_exec_file}\" in \"$4\"])
        exit 1
      fi
      unset jk_exec_file
  
      {
        $2
        echo "jk_exec_retvalue $?"
      } | {
        jk_exec_ret=0
        while true ; do
          read jk_exec_first jk_exec_line
          if test ! "$?" -eq "0" ; then
            break
          else
            if test "${jk_exec_first}" = "jk_exec_retvalue" ; then
              jk_exec_ret="${jk_exec_line}"
            else
              if test -n "${jk_exec_line}" ; then
               echo "    $3: ${jk_exec_first} ${jk_exec_line}"
              fi
            fi
          fi
        done
        echo "${jk_exec_ret}" > retvalue.tmp
        unset jk_exec_first
        unset jk_exec_line
        unset jk_exec_ret
      }
  
      $1="`cat retvalue.tmp`"
      rm -f retvalue.tmp
      echo "  execution of \"$2\""
      echo "  returned with value \"${$1}\""
  
      cd "${jk_exec_curdir}"
      unset jk_exec_curdir
    ])
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org