]> granicus.if.org Git - apache/blob - buildconf
mod_log_config.c: Use iovecs to write the log line to eliminate a memcpy
[apache] / buildconf
1 #!/bin/sh
2 #
3 # Copyright 1999-2004 The Apache Software Foundation
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 #
18 # buildconf: Build the support scripts needed to compile from a
19 #            checked-out version of the source code.
20
21 # set a couple of defaults for where we should be looking for our support libs.
22 # can be overridden with --with-apr=[dir] and --with-apr-util=[dir]
23
24 apr_src_dir=srclib/apr
25 apu_src_dir=srclib/apr-util
26
27 while test $# -gt 0 
28 do
29   # Normalize
30   case "$1" in
31   -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
32   *) optarg= ;;
33   esac
34
35   case "$1" in
36   --with-apr=*)
37   apr_src_dir=$optarg
38   ;;
39   esac
40
41   case "$1" in
42   --with-apr-util=*)
43   apu_src_dir=$optarg
44   ;;
45   esac
46
47   shift
48 done
49
50 #
51 # Check to be sure that we have the srclib dependencies checked-out
52 #
53
54 should_exit=0
55
56 if [ ! -d "$apr_src_dir" -o ! -f "$apr_src_dir/build/apr_common.m4" ]; then
57     echo ""
58     echo "You don't have a copy of the apr source in $apr_src_dir. " 
59     echo "Please get the source using the following instructions," 
60     echo "or specify the location of the source with " 
61     echo "--with-apr=[path to apr] :"
62     echo ""
63     echo "   svn co http://svn.apache.org/repos/asf/apr/apr/trunk srclib/apr"
64     echo ""
65     should_exit=1
66 fi
67 if [ ! -d "$apu_src_dir" -o ! -f "$apu_src_dir/Makefile.in" ]; then
68     echo ""
69     echo "You don't have a copy of the apr-util source in $apu_src_dir. "
70     echo "Please get one the source using the following instructions, "
71     echo "or specify the location of the source with "
72     echo "--with-apr-util=[path to apr-util]:"
73     echo ""
74     echo "   svn co http://svn.apache.org/repos/asf/apr/apr-util/trunk srclib/apr-util"
75     echo ""
76     should_exit=1
77 fi
78
79 if [ $should_exit -gt 0 ]; then
80     exit 1
81 fi
82
83 # These are temporary until Roy finishes the other build changes
84 #
85 touch .deps
86 rm -f aclocal.m4
87 rm -f generated_lists
88 rm -f srclib/pcre/aclocal.m4
89
90 # Remove autoconf 2.5x cache directories
91 rm -rf autom4te*.cache srclib/pcre/autom4te*.cache
92
93 case "`uname`" in
94 *BSD/OS*)
95     ./build/bsd_makefile;;
96 esac
97 #
98 # end temporary stuff
99
100 apr_configure="$apr_src_dir/configure"
101 aprutil_configure="$apu_src_dir/configure"
102 pcre_configure="srclib/pcre/configure"
103 config_h_in="include/ap_config_auto.h.in"
104
105 cross_compile_warning="warning: AC_TRY_RUN called without default to allow cross compiling"
106
107 if [ -d srclib/apr ]; then
108     echo rebuilding $apr_configure
109     (cd srclib/apr && ./buildconf) || {
110         echo "./buildconf failed for apr"
111         exit 1
112     }
113 fi
114
115 if [ -d srclib/apr-util ]; then
116     echo rebuilding $aprutil_configure
117     (cd srclib/apr-util && ./buildconf) || {
118         echo "./buildconf failed for apr-util" 
119         exit 1
120     }
121 fi
122
123 echo copying build files
124 cp $apr_src_dir/build/config.guess $apr_src_dir/build/config.sub \
125    $apr_src_dir/build/PrintPath $apr_src_dir/build/apr_common.m4 \
126    $apr_src_dir/build/find_apr.m4 $apu_src_dir/build/find_apu.m4 build
127
128 # Remove any libtool files so one can switch between libtool 1.3
129 # and libtool 1.4 by simply rerunning the buildconf script.
130 (cd build ; rm -f ltconfig ltmain.sh)
131
132 # Optionally copy libtool-1.3.x files
133 if [ -f $apr_src_dir/build/ltconfig ]; then
134     cp $apr_src_dir/build/ltconfig build
135 fi
136 if [ -f $apr_src_dir/build/ltmain.sh ]; then
137     cp $apr_src_dir/build/ltmain.sh build
138 fi
139
140 echo rebuilding $pcre_configure
141 (cd srclib/pcre && ${AUTOCONF:-autoconf})
142
143 echo rebuilding $config_h_in
144 rm -f $config_h_in
145 ${AUTOHEADER:-autoheader} 2>&1 | grep -v "$cross_compile_warning"
146
147 echo rebuilding configure
148 rm -f config.cache
149 ${AUTOCONF:-autoconf} 2>&1 | grep -v "$cross_compile_warning"
150
151 # Remove autoconf 2.5x cache directories
152 rm -rf autom4te*.cache srclib/pcre/autom4te*.cache
153
154 if [ -f `which cut` ]; then
155   echo rebuilding rpm spec file
156   ( VMMN=`build/get-version.sh mmn include/ap_mmn.h MODULE_MAGIC_NUMBER`
157     REVISION=`build/get-version.sh all include/ap_release.h AP_SERVER`
158     VERSION=`echo $REVISION | cut -d- -s -f1`
159     RELEASE=`echo $REVISION | cut -d- -s -f2`
160     if [ "x$VERSION" = "x" ]; then
161       VERSION=$REVISION
162       RELEASE=1
163     fi
164     cat ./build/rpm/httpd.spec.in | \
165     sed -e "s/APACHE_VERSION/$VERSION/" \
166         -e "s/APACHE_RELEASE/$RELEASE/" \
167         -e "s/APACHE_MMN/$VMMN/" \
168     > httpd.spec )
169 fi
170
171 # ensure that the mod_ssl expression parser sources are never regenerated
172 # when running make
173 echo fixing timestamps for mod_ssl sources
174 cd modules/ssl
175 touch ssl_expr_parse.y
176 sleep 1
177 touch ssl_expr_parse.c ssl_expr_parse.h ssl_expr_scan.l
178 sleep 1
179 touch ssl_expr_scan.c
180 cd ../..
181
182 exit 0