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