You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jc...@apache.org on 2017/01/26 19:24:58 UTC

svn commit: r1780441 - in /httpd/httpd/branches/trunk-buildconf-noapr: build/PrintPath buildconf

Author: jchampion
Date: Thu Jan 26 19:24:58 2017
New Revision: 1780441

URL: http://svn.apache.org/viewvc?rev=1780441&view=rev
Log:
buildconf: allow configuration without APR sources

Previously we required copying the APR (and APR-util) source code into
srclib or some other location on disk in order to build httpd directly
from source. This is annoying if you're on a distribution that already
has the required files in its APR dev packages.

Practically speaking, if you're not building an official distribution
tarball, you only need the following files:

1) config.guess
2) config.sub
3) find_apr.m4
4) find_apu.m4
5) PrintPath

1 and 2 come from automake. 3 and 4 are included in some distributions'
(e.g. Debian's) development packages for APR/-util. That leaves
PrintPath, which has not changed meaningfully in over a decade and is
checked in completely here.

Passing an apr-config executable to buildconf's --with-apr option will
now enable a mode in which the above files (minus PrintPath) are copied
from their respective homes, removing the need for APR sources on disk.
Otherwise, if a source tree is passed, the current behavior is retained
and all of the above files are copied from APR directly.

Added:
    httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath   (with props)
Modified:
    httpd/httpd/branches/trunk-buildconf-noapr/buildconf

Added: httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath?rev=1780441&view=auto
==============================================================================
--- httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath (added)
+++ httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath Thu Jan 26 19:24:58 2017
@@ -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: httpd/httpd/branches/trunk-buildconf-noapr/build/PrintPath
------------------------------------------------------------------------------
    svn:executable = *

Modified: httpd/httpd/branches/trunk-buildconf-noapr/buildconf
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/trunk-buildconf-noapr/buildconf?rev=1780441&r1=1780440&r2=1780441&view=diff
==============================================================================
--- httpd/httpd/branches/trunk-buildconf-noapr/buildconf (original)
+++ httpd/httpd/branches/trunk-buildconf-noapr/buildconf Thu Jan 26 19:24:58 2017
@@ -61,10 +61,12 @@ do
 done
 
 #
-# Check to be sure that we have the srclib dependencies checked-out
+# Check to be sure that we have the srclib dependencies checked-out, or that a
+# working apr-config installation has been specified.
 #
 
 should_exit=0
+apr_config=         # path to apr-config (empty if using a source directory)
 apr_found=0
 apu_found=0
 apr_major_version=2
@@ -76,6 +78,25 @@ do
         apr_src_dir=$dir
         apr_found=1
         break
+    elif which "${dir}" >/dev/null 2>&1; then
+        # We're using apr-config. Do a sanity check.
+        apr_config=`which "${dir}"`
+        echo "testing apr-config executable: ${apr_config}"
+
+        version=`"${apr_config}" --version`
+        version=`echo "${version}" | sed -n '/^[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*$/p'`
+
+        if [ -z "${version}" ]; then
+            echo "apr-config gave us an invalid --version"
+            apr_config=
+            continue
+        fi
+
+        echo "using apr-config version ${version}"
+        apr_major_version=${version} # we'll make a real "major version" later
+        apr_src_dir=`"${apr_config}" --installbuilddir`
+        apr_found=1
+        break
     fi
 done
 
@@ -86,12 +107,18 @@ if [ $apr_found -lt 1 ]; then
     echo "Please refer to the documentation on APR in the httpd INSTALL file."
     echo ""
     should_exit=1
+elif [ -n "${apr_config}" ]; then
+    apr_major_version=`echo "${apr_major_version}" | sed 's/\..*//'`
 else
     apr_major_version=`grep "#define APR_MAJOR_VERSION" \
                       $apr_src_dir/include/apr_version.h | sed 's/[^0-9]//g'`
 fi
 
-if [ $apr_major_version -lt 2 ] ; then
+# Find APR-util. Note: if we're using apr-config, we can completely skip this,
+# even if APR is version 1. That's because we only end up caring about
+# find_apu.m4, which is not actually installed in the standard APR-util
+# distribution to begin with.
+if [ -z "${apr_config}" -a $apr_major_version -lt 2 ] ; then
     if test -z "$apu_src_dir"; then
         apu_src_dir=`echo $apr_src_dir | sed -e 's#/apr#/apr-util#g;'`
         apu_src_dir="$apu_src_dir `echo $apr_src_dir | sed -e 's#/apr#/aprutil#;g'`"
@@ -171,23 +198,43 @@ if [ $apr_major_version -lt 2 ] ; then
 fi
 
 echo copying build files
-cp $apr_src_dir/build/config.guess $apr_src_dir/build/config.sub \
-   $apr_src_dir/build/PrintPath $apr_src_dir/build/apr_common.m4 \
-   $apr_src_dir/build/find_apr.m4 build
-if [ $apr_major_version -lt 2 ] ; then
-    cp $apu_src_dir/build/find_apu.m4 build
+if [ -n "${apr_config}" ]; then
+    # If we're using apr-config, we switch things up a little bit:
+    # - use automake's config.* scripts instead of APR's
+    # - use the included PrintPath instead of copying from APR
+    # - assume find_apu.m4 is also in APR's --installbuilddir
+
+    # Figure out where to copy config.* from.
+    automake=${AUTOMAKE:-automake}
+    am_libdir=`"${automake}" --print-libdir`
+    cp "${am_libdir}/config.guess" "${am_libdir}/config.sub" build
+
+    # Remember that in this case, $apr_src_dir points to the build directory.
+    cp "$apr_src_dir/apr_common.m4" "$apr_src_dir/find_apr.m4" build
+    if [ $apr_major_version -lt 2 ] ; then
+        cp "$apr_src_dir/find_apu.m4" build
+    fi
+else
+    cp $apr_src_dir/build/config.guess $apr_src_dir/build/config.sub \
+       $apr_src_dir/build/PrintPath $apr_src_dir/build/apr_common.m4 \
+       $apr_src_dir/build/find_apr.m4 build
+    if [ $apr_major_version -lt 2 ] ; then
+        cp $apu_src_dir/build/find_apu.m4 build
+    fi
 fi
 
 # Remove any libtool files so one can switch between libtool 1.3
 # and libtool 1.4 by simply rerunning the buildconf script.
 (cd build ; rm -f ltconfig ltmain.sh)
 
-# Optionally copy libtool-1.3.x files
-if [ -f $apr_src_dir/build/ltconfig ]; then
-    cp $apr_src_dir/build/ltconfig build
-fi
-if [ -f $apr_src_dir/build/ltmain.sh ]; then
-    cp $apr_src_dir/build/ltmain.sh build
+if [ -z "${apr_config}" ]; then
+    # Optionally copy libtool-1.3.x files
+    if [ -f $apr_src_dir/build/ltconfig ]; then
+        cp $apr_src_dir/build/ltconfig build
+    fi
+    if [ -f $apr_src_dir/build/ltmain.sh ]; then
+        cp $apr_src_dir/build/ltmain.sh build
+    fi
 fi
 
 echo rebuilding $config_h_in