Author: rjung
Date: Sun May 24 15:39:50 2015
New Revision: 1681481

URL: http://svn.apache.org/r1681481
Log:
Add missing PrintPath script.
Copied over from the APR build directory.
Only used in pre release platform checking
(buildcheck.sh).

Added:
    tomcat/native/trunk/native/build/PrintPath   (with props)
Modified:
    tomcat/native/trunk/native/build/buildcheck.sh

Added: tomcat/native/trunk/native/build/PrintPath
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/native/build/PrintPath?rev=1681481&view=auto
==============================================================================
--- tomcat/native/trunk/native/build/PrintPath (added)
+++ tomcat/native/trunk/native/build/PrintPath Sun May 24 15:39:50 2015
@@ -0,0 +1,130 @@
+#!/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.
+#
+#
+# Look for program[s] somewhere in $PATH.
+#
+# Options:
+#  -s
+#    Do not print out full pathname. (silent)
+#  -pPATHNAME
+#    Look in PATHNAME instead of $PATH
+#
+# Usage:
+#  PrintPath [-s] [-pPATHNAME] program [program ...]
+#
+# Initially written by Jim Jagielski for the Apache configuration mechanism
+#  (with kudos to Kernighan/Pike)
+
+##
+# Some "constants"
+##
+pathname=$PATH
+echo="yes"
+
+##
+# Find out what OS we are running for later on
+##
+os=`(uname) 2>/dev/null`
+
+##
+# Parse command line
+##
+for args in $*
+do
+    case $args in
+       -s  ) echo="no" ;;
+       -p* ) pathname="`echo $args | sed 's/^..//'`" ;;
+       *   ) programs="$programs $args" ;;
+    esac
+done
+
+##
+# Now we make the adjustments required for OS/2 and everyone
+# else :)
+#
+# First of all, all OS/2 programs have the '.exe' extension.
+# Next, we adjust PATH (or what was given to us as PATH) to
+# be whitespace separated directories.
+# Finally, we try to determine the best flag to use for
+# test/[] to look for an executable file. OS/2 just has '-r'
+# but with other OSs, we do some funny stuff to check to see
+# if test/[] knows about -x, which is the prefered flag.
+##
+
+if [ "x$os" = "xOS/2" ]
+then
+    ext=".exe"
+    pathname=`echo -E $pathname |
+     sed 's/^;/.;/
+         s/;;/;.;/g
+         s/;$/;./
+         s/;/ /g
+         s/\\\\/\\//g' `
+    test_exec_flag="-r"
+else
+    ext=""     # No default extensions
+    pathname=`echo $pathname |
+     sed 's/^:/.:/
+         s/::/:.:/g
+         s/:$/:./
+         s/:/ /g' `
+    # Here is how we test to see if test/[] can handle -x
+    testfile="pp.t.$$"
+
+    cat > $testfile <<ENDTEST
+#!/bin/sh
+if [ -x / ] || [ -x /bin ] || [ -x /bin/ls ]; then
+    exit 0
+fi
+exit 1
+ENDTEST
+
+    if `/bin/sh $testfile 2>/dev/null`; then
+       test_exec_flag="-x"
+    else
+       test_exec_flag="-r"
+    fi
+    rm -f $testfile
+fi
+
+for program in $programs
+do
+    for path in $pathname
+    do
+       if [ $test_exec_flag $path/${program}${ext} ] && \
+          [ ! -d $path/${program}${ext} ]; then
+           if [ "x$echo" = "xyes" ]; then
+               echo $path/${program}${ext}
+           fi
+           exit 0
+       fi
+
+# Next try without extension (if one was used above)
+       if [ "x$ext" != "x" ]; then
+            if [ $test_exec_flag $path/${program} ] && \
+               [ ! -d $path/${program} ]; then
+                if [ "x$echo" = "xyes" ]; then
+                    echo $path/${program}
+                fi
+                exit 0
+            fi
+        fi
+    done
+done
+exit 1
+

Propchange: tomcat/native/trunk/native/build/PrintPath
------------------------------------------------------------------------------
    svn:executable = *

Modified: tomcat/native/trunk/native/build/buildcheck.sh
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/native/build/buildcheck.sh?rev=1681481&r1=1681480&r2=1681481&view=diff
==============================================================================
--- tomcat/native/trunk/native/build/buildcheck.sh (original)
+++ tomcat/native/trunk/native/build/buildcheck.sh Sun May 24 15:39:50 2015
@@ -19,7 +19,6 @@
 echo "buildconf: checking installation..."
 
 # any python
-# XXX WHAT IS PrintPath ???
 python=`build/PrintPath python`
 if test -z "$python"; then
 echo "buildconf: python not found."
@@ -55,7 +54,6 @@ fi
 # output is multiline from 1.5 onwards
 
 # Require libtool 1.4 or newer
-# XXX WHAT IS PrintPath ???
 libtool=`build/PrintPath glibtool libtool libtool15 libtool14`
 lt_pversion=`$libtool --version 2>/dev/null|sed -e 
's/([^)]*)//g;s/^[^0-9]*//;s/[- ].*//g;q'`
 if test -z "$lt_pversion"; then



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

Reply via email to