Fix a signal cleanup problem.
[gnupg.git] / autogen.sh
bloba7e701550e904f057eb5923dea20fc592b332746
1 #! /bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 # Copyright (C) 2003 g10 Code GmbH
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.
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.
14 configure_ac="configure.ac"
16 cvtver () {
17 awk 'NR==1 {split($NF,A,".");X=1000000*A[1]+1000*A[2]+A[3];print X;exit 0}'
20 check_version () {
21 if [ `("$1" --version || echo "0") | cvtver` -ge "$2" ]; then
22 return 0
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
31 # Allow to override the default tool names
32 AUTOCONF=${AUTOCONF_PREFIX}${AUTOCONF:-autoconf}${AUTOCONF_SUFFIX}
33 AUTOHEADER=${AUTOCONF_PREFIX}${AUTOHEADER:-autoheader}${AUTOCONF_SUFFIX}
35 AUTOMAKE=${AUTOMAKE_PREFIX}${AUTOMAKE:-automake}${AUTOMAKE_SUFFIX}
36 ACLOCAL=${AUTOMAKE_PREFIX}${ACLOCAL:-aclocal}${AUTOMAKE_SUFFIX}
38 GETTEXT=${GETTEXT_PREFIX}${GETTEXT:-gettext}${GETTEXT_SUFFIX}
39 MSGMERGE=${GETTEXT_PREFIX}${MSGMERGE:-msgmerge}${GETTEXT_SUFFIX}
41 DIE=no
42 FORCE=
43 if test x"$1" = x"--force"; then
44 FORCE=" --force"
45 shift
48 # ***** W32 build script *******
49 # Used to cross-compile for Windows.
50 if test "$1" = "--build-w32"; then
51 tmp=`dirname $0`
52 tsdir=`cd "$tmp"; pwd`
53 shift
54 if [ ! -f $tsdir/scripts/config.guess ]; then
55 echo "$tsdir/scripts/config.guess not found" >&2
56 exit 1
58 build=`$tsdir/scripts/config.guess`
60 [ -z "$w32root" ] && w32root="$HOME/w32root"
61 echo "Using $w32root as standard install directory" >&2
63 # Locate the cross compiler
64 crossbindir=
65 for host in i586-mingw32msvc i386-mingw32msvc mingw32; do
66 if ${host}-gcc --version >/dev/null 2>&1 ; then
67 crossbindir=/usr/${host}/bin
68 conf_CC="CC=${host}-gcc"
69 break;
71 done
72 if [ -z "$crossbindir" ]; then
73 echo "Cross compiler kit not installed" >&2
74 echo "Under Debian GNU/Linux, you may install it using" >&2
75 echo " apt-get install mingw32 mingw32-runtime mingw32-binutils" >&2
76 echo "Stop." >&2
77 exit 1
80 if [ -f "$tsdir/config.log" ]; then
81 if ! head $tsdir/config.log | grep "$host" >/dev/null; then
82 echo "Please run a 'make distclean' first" >&2
83 exit 1
87 ./configure --enable-maintainer-mode --prefix=${w32root} \
88 --host=${host} --build=${build} \
89 --with-gpg-error-prefix=${w32root} \
90 --with-ksba-prefix=${w32root} \
91 --with-libgcrypt-prefix=${w32root} \
92 --with-libassuan-prefix=${w32root} \
93 --with-zlib=${w32root} \
94 --with-regex=${w32root} \
95 --with-pth-prefix=${w32root} \
96 --with-adns=${w32root} \
97 --without-included-gettext "$@"
98 rc=$?
99 exit $rc
101 # ***** end W32 build script *******
103 # ***** AMD64 cross build script *******
104 # Used to cross-compile for AMD64 (for testing)
105 if test "$1" = "--build-amd64"; then
106 tmp=`dirname $0`
107 tsdir=`cd "$tmp"; pwd`
108 shift
109 if [ ! -f $tsdir/scripts/config.guess ]; then
110 echo "$tsdir/scripts/config.guess not found" >&2
111 exit 1
113 build=`$tsdir/scripts/config.guess`
115 [ -z "$amd64root" ] && amd64root="$HOME/amd64root"
116 echo "Using $amd64root as standard install directory" >&2
118 # Locate the cross compiler
119 crossbindir=
120 for host in x86_64-linux-gnu amd64-linux-gnu; do
121 if ${host}-gcc --version >/dev/null 2>&1 ; then
122 crossbindir=/usr/${host}/bin
123 conf_CC="CC=${host}-gcc"
124 break;
126 done
127 if [ -z "$crossbindir" ]; then
128 echo "Cross compiler kit not installed" >&2
129 echo "Stop." >&2
130 exit 1
133 if [ -f "$tsdir/config.log" ]; then
134 if ! head $tsdir/config.log | grep "$host" >/dev/null; then
135 echo "Please run a 'make distclean' first" >&2
136 exit 1
140 $tsdir/configure --enable-maintainer-mode --prefix=${amd64root} \
141 --host=${host} --build=${build} \
142 --with-gpg-error-prefix=${amd64root} \
143 --with-ksba-prefix=${amd64root} \
144 --with-libgcrypt-prefix=${amd64root} \
145 --with-libassuan-prefix=${amd64root} \
146 --with-zlib=/usr/x86_64-linux-gnu/usr \
147 --with-pth-prefix=/usr/x86_64-linux-gnu/usr
148 rc=$?
149 exit $rc
151 # ***** end AMD64 cross build script *******
154 # Grep the required versions from configure.ac
155 autoconf_vers=`sed -n '/^AC_PREREQ(/ {
156 s/^.*(\(.*\))/\1/p
158 }' ${configure_ac}`
159 autoconf_vers_num=`echo "$autoconf_vers" | cvtver`
161 automake_vers=`sed -n '/^min_automake_version=/ {
162 s/^.*="\(.*\)"/\1/p
164 }' ${configure_ac}`
165 automake_vers_num=`echo "$automake_vers" | cvtver`
167 gettext_vers=`sed -n '/^AM_GNU_GETTEXT_VERSION(/ {
168 s/^.*\[\(.*\)])/\1/p
170 }' ${configure_ac}`
171 gettext_vers_num=`echo "$gettext_vers" | cvtver`
174 if [ -z "$autoconf_vers" -o -z "$automake_vers" -o -z "$gettext_vers" ]
175 then
176 echo "**Error**: version information not found in "\`${configure_ac}\'"." >&2
177 exit 1
181 if check_version $AUTOCONF $autoconf_vers_num $autoconf_vers ; then
182 check_version $AUTOHEADER $autoconf_vers_num $autoconf_vers autoconf
184 if check_version $AUTOMAKE $automake_vers_num $automake_vers; then
185 check_version $ACLOCAL $automake_vers_num $autoconf_vers automake
187 if check_version $GETTEXT $gettext_vers_num $gettext_vers; then
188 check_version $MSGMERGE $gettext_vers_num $gettext_vers gettext
191 if test "$DIE" = "yes"; then
192 cat <<EOF
194 Note that you may use alternative versions of the tools by setting
195 the corresponding environment variables; see README.CVS for details.
198 exit 1
202 echo "Running aclocal -I m4 -I gl/m4 ${ACLOCAL_FLAGS:+$ACLOCAL_FLAGS }..."
203 $ACLOCAL -I m4 -I gl/m4 $ACLOCAL_FLAGS
204 echo "Running autoheader..."
205 $AUTOHEADER
206 echo "Running automake --gnu ..."
207 $AUTOMAKE --gnu;
208 echo "Running autoconf${FORCE} ..."
209 $AUTOCONF${FORCE}
211 echo "You may now run:
212 ./configure --sysconfdir=/etc --enable-maintainer-mode --enable-symcryptrun --enable-mailto && make