gpgme-tool: Use membuf functions to build up strings.
[gpgme.git] / autogen.sh
1 #! /bin/sh
2 # Run this to generate all the initial makefiles, etc.
3 #
4 # Copyright (C) 2003 g10 Code GmbH
5 #
6 # This file is free software; as a special exception the author gives
7 # unlimited permission to copy and/or distribute it, with or without
8 # modifications, as long as this notice is preserved.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
12 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 configure_ac="configure.ac"
15
16 cvtver () {
17   awk 'NR==1 {split($NF,A,".");X=1000000*A[1]+1000*A[2]+A[3];print X;exit 0}'
18 }
19
20 check_version () {
21     if [ `("$1" --version || echo "0") | cvtver` -ge "$2" ]; then
22        return 0
23     fi
24     echo "**Error**: "\`$1\'" not installed or too old." >&2
25     echo '           Version '$3' or newer is required.' >&2
26     [ -n "$4" ] && echo '           Note that this is part of '\`$4\''.' >&2
27     DIE="yes"
28     return 1
29 }
30
31
32 DIE=no
33 FORCE=
34 if test x"$1" = x"--force"; then
35   FORCE=" --force"
36   shift
37 fi
38
39 # Begin list of optional variables sourced from ~/.gnupg-autogen.rc
40 w32_toolprefixes=
41 w32_extraoptions=
42 w32ce_toolprefixes=
43 w32ce_extraoptions=
44 amd64_toolprefixes=
45 # End list of optional variables sourced from ~/.gnupg-autogen.rc
46 # What follows are variables which are sourced but default to
47 # environment variables or lacking them hardcoded values.
48 #w32root=
49 #w32ce_root=
50 #amd64root=
51
52 if [ -f "$HOME/.gnupg-autogen.rc" ]; then
53     echo "sourcing extra definitions from $HOME/.gnupg-autogen.rc"
54     . "$HOME/.gnupg-autogen.rc"
55 fi
56
57 # Convenience option to use certain configure options for some hosts.
58 myhost=""
59 myhostsub=""
60 case "$1" in
61     --build-w32)
62         myhost="w32"
63         ;;
64     --build-w32ce)
65         myhost="w32"
66         myhostsub="ce"
67         ;;
68     --build-w64)
69         myhost="w32"
70         myhostsub="64"
71         ;;
72     --build-amd64)
73         myhost="amd64"
74         ;;
75     --build*)
76         echo "**Error**: invalid build option $1" >&2
77         exit 1
78         ;;
79     *)
80         ;;
81 esac
82
83
84 # ***** W32 build script *******
85 # Used to cross-compile for Windows.
86 if [ "$myhost" = "w32" ]; then
87     tmp=`dirname $0`
88     tsdir=`cd "$tmp"; pwd`
89     shift
90     if [ ! -f $tsdir/config.guess ]; then
91         echo "$tsdir/config.guess not found" >&2
92         exit 1
93     fi
94     build=`$tsdir/config.guess`
95
96     case $myhostsub in
97         ce)
98           w32root="$w32ce_root"
99           [ -z "$w32root" ] && w32root="$HOME/w32ce_root"
100           toolprefixes="arm-mingw32ce"
101           ;;
102         64)
103           w32root="$w64root"
104           [ -z "$w32root" ] && w32root="$HOME/w64root"
105           toolprefixes="i686-w64-mingw32 amd64-mingw32msvc"
106           ;;
107         *)
108           [ -z "$w32root" ] && w32root="$HOME/w32root"
109           toolprefixes="i686-w64-mingw32 i586-mingw32msvc i386-mingw32msvc"
110           ;;
111     esac
112     echo "Using $w32root as standard install directory" >&2
113
114     crossbindir=
115     for host in $toolprefixes; do
116         if ${host}-gcc --version >/dev/null 2>&1 ; then
117             crossbindir=/usr/${host}/bin
118             conf_CC="CC=${host}-gcc"
119             break;
120         fi
121     done
122     if [ -z "$crossbindir" ]; then
123         echo "Cross compiler kit not installed" >&2
124         if [ -z "$myhostsub" ]; then
125           echo "Under Debian GNU/Linux, you may install it using" >&2
126           echo "  apt-get install mingw32 mingw32-runtime mingw32-binutils" >&2
127         fi
128         echo "Stop." >&2
129         exit 1
130     fi
131
132     if [ -f "$tsdir/config.log" ]; then
133         if ! head $tsdir/config.log | grep "$host" >/dev/null; then
134             echo "Pease run a 'make distclean' first" >&2
135             exit 1
136         fi
137     fi
138
139     $tsdir/configure --enable-maintainer-mode  --prefix=${w32root}  \
140             --host=${host} --build=${build} \
141             --with-gpg-error-prefix=${w32root} \
142             --with-libassuan-prefix=${w32root} "$@"
143
144     exit $?
145 fi
146 # ***** end W32 build script *******
147
148
149 # ***** AMD64 cross build script *******
150 # Used to cross-compile for AMD64 (for testing)
151 if [ "$myhost" = "amd64" ]; then
152     tmp=`dirname $0`
153     tsdir=`cd "$tmp"; pwd`
154     shift
155     if [ ! -f $tsdir/config.guess ]; then
156         echo "$tsdir/config.guess not found" >&2
157         exit 1
158     fi
159     build=`$tsdir/config.guess`
160
161     [ -z "$amd64root" ] && amd64root="$HOME/amd64root"
162     echo "Using $amd64root as standard install directory" >&2
163
164     # Locate the cross compiler
165     crossbindir=
166     for host in x86_64-linux-gnu amd64-linux-gnu; do
167         if ${host}-gcc --version >/dev/null 2>&1 ; then
168             crossbindir=/usr/${host}/bin
169             conf_CC="CC=${host}-gcc"
170             break;
171         fi
172     done
173     if [ -z "$crossbindir" ]; then
174         echo "Cross compiler kit not installed" >&2
175         echo "Stop." >&2
176         exit 1
177     fi
178
179     if [ -f "$tsdir/config.log" ]; then
180         if ! head $tsdir/config.log | grep "$host" >/dev/null; then
181             echo "Please run a 'make distclean' first" >&2
182             exit 1
183         fi
184     fi
185
186     $tsdir/configure --enable-maintainer-mode --prefix=${amd64root}  \
187              --host=${host} --build=${build}
188     rc=$?
189     exit $rc
190 fi
191 # ***** end AMD64 cross build script *******
192
193
194
195 # Grep the required versions from configure.ac
196 autoconf_vers=`sed -n '/^AC_PREREQ(/ {
197 s/^.*(\(.*\))/\1/p
198 q
199 }' ${configure_ac}`
200 autoconf_vers_num=`echo "$autoconf_vers" | cvtver`
201
202 automake_vers=`sed -n '/^min_automake_version=/ {
203 s/^.*="\(.*\)"/\1/p
204 q
205 }' ${configure_ac}`
206 automake_vers_num=`echo "$automake_vers" | cvtver`
207
208 #gettext_vers=`sed -n '/^AM_GNU_GETTEXT_VERSION(/ {
209 #s/^.*(\(.*\))/\1/p
210 #q
211 #}' ${configure_ac}`
212 #gettext_vers_num=`echo "$gettext_vers" | cvtver`
213
214
215 if [ -z "$autoconf_vers" -o -z "$automake_vers" ]
216 then
217   echo "**Error**: version information not found in "\`${configure_ac}\'"." >&2
218   exit 1
219 fi
220
221 # Allow to override the default tool names
222 AUTOCONF=${AUTOCONF_PREFIX}${AUTOCONF:-autoconf}${AUTOCONF_SUFFIX}
223 AUTOHEADER=${AUTOCONF_PREFIX}${AUTOHEADER:-autoheader}${AUTOCONF_SUFFIX}
224
225 AUTOMAKE=${AUTOMAKE_PREFIX}${AUTOMAKE:-automake}${AUTOMAKE_SUFFIX}
226 ACLOCAL=${AUTOMAKE_PREFIX}${ACLOCAL:-aclocal}${AUTOMAKE_SUFFIX}
227
228 #GETTEXT=${GETTEXT_PREFIX}${GETTEXT:-gettext}${GETTEXT_SUFFIX}
229 #MSGMERGE=${GETTEXT_PREFIX}${MSGMERGE:-msgmerge}${GETTEXT_SUFFIX}
230
231
232 if check_version $AUTOCONF $autoconf_vers_num $autoconf_vers ; then
233     check_version $AUTOHEADER $autoconf_vers_num $autoconf_vers autoconf
234 fi
235 if check_version $AUTOMAKE $automake_vers_num $automake_vers; then
236   check_version $ACLOCAL $automake_vers_num $autoconf_vers automake
237 fi
238 #if check_version $GETTEXT $gettext_vers_num $gettext_vers; then
239 #  check_version $MSGMERGE $gettext_vers_num $gettext_vers gettext
240 #fi
241
242 if test "$DIE" = "yes"; then
243     cat <<EOF
244
245 Note that you may use alternative versions of the tools by setting
246 the corresponding environment variables; see README.GIT for details.
247
248 EOF
249     exit 1
250 fi
251
252
253 # Update the git setup.
254 if [ -d .git ]; then
255   if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
256     cat <<EOF >&2
257 *** Activating trailing whitespace git pre-commit hook. ***
258     For more information see this thread:
259       http://mail.gnome.org/archives/desktop-devel-list/2009-May/msg00084html
260     To deactivate this pre-commit hook again move .git/hooks/pre-commit
261     and .git/hooks/pre-commit.sample out of the way.
262 EOF
263       cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
264       chmod -c +x  .git/hooks/pre-commit
265   fi
266   if [ -f build-aux/git-hooks/commit-msg -a ! -f .git/hooks/commit-msg ] ; then
267     cat <<EOF >&2
268 *** Activating commit log message check hook. ***
269 EOF
270       cp -av build-aux/git-hooks/commit-msg .git/hooks/commit-msg
271       chmod -c +x  .git/hooks/commit-msg
272   fi
273 fi
274
275
276
277 echo "Running aclocal -I m4 ${ACLOCAL_FLAGS:+$ACLOCAL_FLAGS }..."
278 $ACLOCAL -I m4 $ACLOCAL_FLAGS
279 echo "Running autoheader..."
280 $AUTOHEADER
281 echo "Running automake --gnu ..."
282 $AUTOMAKE --gnu;
283 echo "Running autoconf${FORCE} ..."
284 $AUTOCONF${FORCE}
285
286 echo "You may now run
287   ./configure --enable-maintainer-mode && make
288 "