123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #!/bin/sh
- #
- # Copyright 1999-2005 The Apache Software Foundation or its licensors, as
- # applicable.
- #
- # Licensed 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.
- #
- #
- # Default place to look for apr source. Can be overridden with
- # --with-apr=[directory]
- apr_src_dir=../apr
- while test $# -gt 0
- do
- # Normalize
- case "$1" in
- -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- *) optarg= ;;
- esac
- case "$1" in
- --with-apr=*)
- apr_src_dir=$optarg
- ;;
- esac
- shift
- done
- if [ -f "$apr_src_dir/build/apr_common.m4" ]; then
- apr_src_dir=`cd $apr_src_dir; pwd`
- echo ""
- echo "Looking for apr source in $apr_src_dir"
- else
- echo ""
- echo "Problem finding apr source in $apr_src_dir."
- echo "Use:"
- echo " --with-apr=[directory]"
- exit 1
- fi
- set -e
- # Remove some files, then copy them from apr source tree
- rm -f build/apr_common.m4 build/find_apr.m4 build/install.sh \
- build/config.guess build/config.sub build/get-version.sh
- cp -p $apr_src_dir/build/apr_common.m4 $apr_src_dir/build/find_apr.m4 \
- $apr_src_dir/build/install.sh $apr_src_dir/build/config.guess \
- $apr_src_dir/build/config.sub $apr_src_dir/build/get-version.sh \
- build/
- # Remove aclocal.m4 as it'll break some builds...
- rm -rf aclocal.m4 autom4te*.cache
- #
- # Generate the autoconf header (include/apu_config.h) and ./configure
- #
- echo "Creating include/private/apu_config.h ..."
- ${AUTOHEADER:-autoheader}
- echo "Creating configure ..."
- ### do some work to toss config.cache?
- if ${AUTOCONF:-autoconf}; then
- :
- else
- echo "autoconf failed"
- exit 1
- fi
- #
- # Generate build-outputs.mk for the build systme
- #
- echo "Generating 'make' outputs ..."
- #$apr_src_dir/build/gen-build.py make
- #
- # If Expat has been bundled, then go and configure the thing
- #
- if [ -f xml/expat/buildconf.sh ]; then
- echo "Invoking xml/expat/buildconf.sh ..."
- (cd xml/expat; ./buildconf.sh)
- fi
- # Remove autoconf cache again
- rm -rf autom4te*.cache
- # Create RPM Spec file
- if [ -f `which cut` ]; then
- echo rebuilding rpm spec file
- REVISION=`build/get-version.sh all include/apu_version.h APU`
- VERSION=`echo $REVISION | cut -d- -s -f1`
- RELEASE=`echo $REVISION | cut -d- -s -f2`
- if [ "x$VERSION" = "x" ]; then
- VERSION=$REVISION
- RELEASE=1
- fi
- sed -e "s/APU_VERSION/$VERSION/" -e "s/APU_RELEASE/$RELEASE/" \
- ./build/rpm/apr-util.spec.in > apr-util.spec
- fi
|